Clojure Archive
The code presented here is available on github . The obvious parts You’ll be aware of these if you’ve ever bothered writing macros: Both prevent evaluation of the subsequent expression: `(1 2 3) ;; => (1 2 3) '(1 2 3) ;; => (1 2 3) Backtick allows you to
The code presented here is available on github. I’ve been trying to get my head around (and develop an intuition for) Clojure’s Transducers. During that process, I’ve been playing around with them a bit. These are some of the examples that I’ve worked out. I hope this will
This is a basic introduction into the features that Clojure offers regarding Concurrency Programming. It is not meant to be an extensive reference, but aims to give you an idea of what options you have when you need to coordinate multiple threads and mutable state while programming in Clojure. I
There are plenty of posts around on how to run Clojure on Google App Engine. However, most of them are quite dated and as times (and Google libraries) change, I’d like to share my effort of trying to run Clojure on App Engine without losing the major
Due to my ambitions as an entrepreneur, I’ve recently been searching for some appealing infrastructure for hosting web based services / applications. There are several general requirements for me that need to be fulfilled: I don’t want to be forced into having to mess with infrastructural issues,