• get 35% off on "clojure in action" and "joy of clojure" with the coupon code clojure35 (via @kevsmith) -- I don't know if there is any reader here that doesn't already own both books, but just in case: now it is a good time to buy them --> here
  • A possible addition to Clojure.future is "arbitrary functional destructuring", discussed at length (subject to change) (here, via @fogus) --Judging from the #clojure chat logs, clojure is about to get a new powerful way of destructuring.
  • My library for distributed apps in Clojure; Conduit. (here, via @jimduey) -- Distributed data streams processing, this is what it is about. The article describing this library links to more detailed articles, which elaborate on the theory behind this model. Very interesting read, but not for the faint of heart. I must admit it is definitely out of my league :(
  • Thrush in Clojure (redux) (here, via @fogus) -- It turns out -> is mostly a thrush combinator (yes, they're all named after birds, how cute!). Mostly because it doesn't work in all the cases, one of them being anonymous functions, as it takes the anonymous function definition for a list, not for a function. The fix is deceptively simple. A must read.
  • Dynamic mixins with clojure, an experiment (here, via @sbtourist)