/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

robert.kra.hn
| | arenzana.org
1.7 parsecs away

Travel
| | Emacs > Visual Studio Code There's a good chance I'm a hater or that I don't know what I'm doing. After a couple of hours trying to set up VS Code for Rust development, I ended up frustrated not understanding how to simply call the compiler or the debugger from the interface. I looked for
| | zzamboni.org
2.8 parsecs away

Travel
| | I have enjoyed slowly converting my configuration files to literate programming style using org-mode in Emacs. It's now the turn of my Emacs configuration file.
| | hiepph.xyz
2.4 parsecs away

Travel
| | My ~/.emacs.d configuration used to be a mess. For example, here are 2 old configurations for IDO and sidebar neotree. ;; ### IDO ##### (require 'ido) ;; enable IDO (ido-mode 1) (ido-everywhere 1) (ido-ubiquitous-mode 1) (setq ido-enable-flex-matching t) (setq ido-use-filename-at-point nil) (setq ido-auto-merge-work-directories-length -1) (setq ido-use-virtual-buffers t) ;; Shows a list of buffers (global-set-key (kbd "C-x C-b") 'ibuffer) ;; #### Neo Tree ##### (require-package 'neotree) ;; Bind F8 to sh...
| | deniskyashif.com
22.4 parsecs away

Travel
| In this article, we'll define a basic regular expression language using a context-free grammar and learn how to parse its strings in linear time using the recursive descent method.