• Downloading binary files with Clojure (here, via @allwebdev) -- Downloading text files is easy with clojure's slurp, but when it comes to binary files, it might get a tad more complicated.
  • Agent-Based Simulation in ~130 Lines of clojure (here, via @jccc_) -- This article describes an agent-based simulation built to test an economic theory explained by Paul Krugman (well worth a read). The full source for this agent can be found here.
  • Blog post with an over-the-shoulder view of what I'm thinking as I refine a #clojure function (here, via @alanmalloy) -- ... or what happens when you keep thinking about the same problem over and over, until you hit the hammock a la Rich Hickey.
  • Common Lisp, Clojure and Evolution (here, via @ycombinatornews) -- This article summarizes the experiences learned from trying to follow the book Land of Lisp in Clojure (and Eclipse+CounterClockWise) instead of Common Lisp.
  • Clojure for Android source now available. (here, via @deepbluelambda) -- Contains quite a bit of wisdom on how to port such a JVM language to the more constrained Android environment.
  • Embedding V8 in a Clojure SPARQL library (here, via @antoniogarrote) -- The article's title should have been "How embed native libraries in your Clojure code". It's a good guide on how to do so, and it also teaches you how to embed V8 into the JVM.