• A Clojure mail lib (here, via @al3xandr3)
  • If you care about default num behavior in #clojure read this and give feedback. Pls read rich's post on overflow vs safety. (here, via @wmacgyver) -- So in order to make calling functions faster in Clojure, Rich proposed the possibility of having functions take primitive values as arguments. This presents a new kind of problems; should primitive numbers be promoted to BigInt/BigFloat? when? ... interesting read.
    • #clojure new primitive support revised (here, via @wmacgyver)
  • Denormalizing One million records with Clojure. (here, via @jneira) -- in 13 seconds.
  • Lazytest returns with new improved syntax! (here, via @stuartsierra)
  • Slides from my talk on metacircular evaluation at last night's CAPCLUG (here, via @fogus) --  Or how the magnificent 7 became the magnificent 3. Is there a video of this?
  • Actors in Clojure — Why Not? (here, via @dalnefre) -- This is a rebuttal to Rich's reasons not to implement Actors in Clojure (look for "Message Passing and Actors". The author provides detailed counterpoints to each of the arguments that Rich presents. Will we see actors in Clojure then?
  • Another design sketch for Clojure coverage tool (here, via @lshift) -- In a previous article, the author proposed a macro that would instrument functions by wrapping their definitions. In this article the author proposes similar functionality but without macros. Work in progress.
  • Executing A Command Line Program With Clojure (here, via @samnewman)