July 1, 2009
June 30, 2009
June 29, 2009
June 26, 2009
June 24, 2009
June 23, 2009
June 19, 2009
June 17, 2009
June 15, 2009
Clojure and Incanter
Start playing with clojure the other day and discover incanter which has some nice tools for analyzing data. It depends on a bunch of libraries that I already have on my debian box, but I just pull them off github. To get it working with emacs and slime, here’s a quick edit to the .emacs
(require 'swank-clojure-autoload)
(swank-clojure-config
(setq swank-clojure-jar-path "~/.clojure/clojure.jar")
(setq swank-clojure-extra-classpaths
(cons "~/incanter/incanter.jar"
(directory-files "~/incanter/lib" t ".jar$"))))