November 2008
2 posts
First Clojure program
So, I watched a few of Rich’s videos on Clojure a couple months back, but I finally got an afternoon to spend trying it out. I skimmed through Ruby Quiz to find an interesting but simple problem, and I decide to write a Sokoban clone. My initial thought was to do it as a gui app, but I haven’t written any Java code since JDK 1.0-alpha in late 1995, and honestly, I didn’t really...
Nov 16th
Configuring Vim, some more
As an addendum to http://items.sjbach.com/319/configuring-vim-right Here’s a few more that I think are un-live-able-without: " ease of use keyboard mappings (why do I care about top/bottom of screen?) map H ^ map L $ " buffer switching/management, might as well use those keys for something useful map <Right> :bnext<CR> imap <Right> <ESC>:bnext<CR> map...
Nov 11th