Changes to Cascade, and a cautionary tale about defrecord (via @yueliufeeds) -- This article is an update on cascade, which basically now it is using Ring/Compojure instead of providing similar functionality. The author also comments on one little known fact about records in clojure and name clashing.
Wow... Storm is the most watched Java, Scala, or Clojure project on GitHub (via @nathanmarz) -- At the time of this writing, this meant 1532 watchers.
Stunned again by the #clojure community: @ambrosebs will be traveling from AUS to USA for the 2011 Conj, thanks to you. Details coming soon. (via @cemerick) -- Woo hoo! Pats on the back all around :)
Once-only evaluation for Clojure macros (via @jneira) -- If you use the same parameter more than once in a macro definition, and when using this macro you pass as a parameter a function call, and if this function call has side effects, then your macro might have unexpected behavior, as the function will be called more than once. This article proposes one solution.