• De-chunkifying Sequences in Clojure (here, via @fogus) -- Clojure 1.1 introduced chunked sequences, which evaluate their elements in chunks of 32 at a time. Remember sequences are lazy, so if you ask for the first element of the sequence, for example, clojure will compute the first 32 elements, but then the next 31 calls would be instantaneous. The reason for this is performance when dealing with large chunks of data. But if you want the original one-element-at-a-time behavior of clojure 1.0, @fogus introduces us to 'seq1', a rough cut of the official tool to obtain one-element-at-a-time sequences.
  • Crazy smart discussion on #clojure IRC re extending transient/persistent semantics to POJOs (via @stuartsierra)
  • clojure channels (here, via @tebeka) -- This article is about a way to implement Go-style  channels in clojure
  • I feel like I could make a special Ruby superclass that makes all subclasses STM-strict a la Clojure. Useful? (via @headius) -- Charles Nutter (a.k.a. @headius) is a JRuby core developer, now looking at clojure for some nice inspiration.
    • And it's done, a JRuby extension that gives you transactional instance variables (a la Clojure STM) (here, via @headius)
  • For all the german #Clojure users: #clojure on Freenode. irc://irc.freenode.net/clojure.de It's small at the moment, but we will grow :) (via @The_Kenny)
  • I need a good (cheap) designer for a simple conference website for #clojure conj 2010 (plz) (via @dysinger) -- Clojure Conj 2010 conference is happening!
  • #clojure conference time and location being discussed. If you want to be heard, now is the time (here, via @wmacgyver) -- same as above... things are moving fast!
  • i love that the number one watched java project on github is another language, clojure. (here, via @binarydud) -- Wat!!?!
  • discovering Vijual, a graph layout engine conceptually similar to graphviz for clojure (here, via @rgaidot) -- the image below is self-explanatory...
An example of a tree drawn by Vijual
  • JVM languages communites on Stack Overflow compared (here, via @dcsobral) -- Interesting that the clojure community is larger than the Haskell and Erlang ones, and just a tad smaller than the Scala and Groovy ones....
  • Posted the slides for my talk about Ring, the Clojure web app library (here, via @mmcgrana)
  • Practical Clojure from @Apress to be released May 21st? I thought it was coming out in Feb. A tad dissappointed (via @looselytyped) -- So now we know when the clojure book from Apress is going to be released. Discount coupons anyone?
  • 10 reasons to learn Clojure (or any other Lisp) (here, via @jneira)