Development Blog
Software Development Articles and Opinions
Categories: Technical | 2 Comments

I’m currently working on a distributed application in Clojure that has a master/slave architecture. Being the lazy bastard I am, I wanted to use an existing library that would make this as easy as possible. I considered using a DHT library for Java, such as JDHT or Bamboo but finally decided on a P2P library [...]

Categories: Technical | 2 Comments
plot

3D support for Java is made particularly difficult because Java is cross platform and writing a library that abstracts away the differences of writing native 3D applications in Linux, OSX, Windows, etc. is not an easy task. One solution to this is JOGL, which uses Gluegen to generate JNI bindings for C libraries. In the [...]

Categories: Technical | Add a Comment

Overview of a simple image BGR to grayscale converter written in Clojure.