Recent Posts

Setting up Emacs for OCaml Development

4 minute read

I’ve promised you articles about OCaml and here they come! The first order of business when learning a new programming language is to setup Emacs for effecti...

Learning OCaml

3 minute read

Live as if you were to die tomorrow. Learn as if you were to live forever. – Mahatma Gandhi

Clojure Tricks: Number to Digits

1 minute read

If you’re into programming puzzles you probably know that there’s a whole class of problems about doing something (e.g. some calculations) with the digits of...

Clojure Tricks: Zipping Things Together

1 minute read

Many programming languages have a function for combining the elements of multiple collections (e.g. arrays or lists) together. Typically this function is nam...

Clojure Tricks: Replace in String

1 minute read

Today I saw a clever bit of Clojure code involving clojure.string/replace, that reminded me how powerful the Clojure standard library is. I guess pretty much...