• Enhancing Clojure's case to evaluate dispatch values (here, via @cemerick) -- Clojure's 'case' statement is a very fast switch on any compile-time literal. Very fast but with the downside that doesn't evaluate the dispatch values at runtime, and this prevents to use Java variables as dispatch values, even if they're static and final, or enums. Chas Emerick provides an enhanced case: 'case+' that handles said java values, still at compile time.
  • The latest in a series of micro-interviews focused on #Clojure: (take 5 (brenton-ashworth)) (here, via @fogus) -- An interview to the author of deview, sandbar and other goodies.
  • Clojure simple threaded web server performance test (here, via @wilig) -- This is a test of Clojure/compojure on jetty pulling data from a Postgres database. It turns out using a medium-sized connection pool gets the optimum performance.
  • Created a Scala RFE to replace the existing immutable.Vector implementation with my port from Clojure (here, via @djsipevak) -- More cross-pollination between Clojure and Scala, or should I just say 'pollination'? I am not aware of anything flowing from Scala to Clojure. Any tips on those?