Programming: The New Rock 'N' Roll

In this post we will set up a super efficient programming environment - on a $10 computer, in just a few short lines of code! Step 1 - Install tmux , a terminal multiplexer. This will allow us to work in as many simultaneous terminal windows as we need to, just as if we are in a graphical desktop but all from a single text console: sudo apt install tmux Begin a session with the "tmux" command. Open a new window with Ctrl-b c and switch between them with Ctrl-b n. Step 2 - Install leiningen , vim and fireplace (formerly called "foreplay"). They work together with the Clojure programming language, which uses an extremely concise syntax to generate highly optimized Java and Javascript code: sudo apt install vim git clone https://github.com/ctford/vim-fireplace-easy.git .vim ln -s ~/.vim/vimrc.vim ~/.vimrc vim -c "helptags ~/.vim/bundle/vim-fireplace/doc" -c "q" (Paste the contents of this file into /bin/lein) sudo ...