Archive 24. November 2009

Amp | Version Control Revolution - Mercurial in Ruby, with a strong focus on extensibility via a Ruby DSL. If I think about how often I use a VCS as a basis for all sorts of things (e.g. automatic deployment of blog postings in one of my blogs), this could actually be pretty cool.

formsets and inline forms in Django - a similar problem came up at the company recently, so here's a blog post that might be the solution.

Implementing a DHT in Go, part 1 - for those who want to see more Go code, here is a rather interesting example: a distributed hash table (i.e. key/value pairs distributed across many nodes). The first part deals with the buckets and the routing table, the next part will then add the network protocol.

Understanding Haskell Monads - of all the tutorials I have seen on this topic so far, the most understandable for me.