I had the opporuntunity to read the first chapter of Java Network Programming by Elliotte Rusty Harold. The first chapter covers networking basics, and this...
In Eric Normand’s talk at Clojure/west he covers the benefits of generative testing. He specifically covers Clojure, although generative testing can be used for any...
My post a few weeks ago about implementing minimax in Clojure was written in a linear recursive way. Another way to write the same algothrim...
Hash functions can be particularly useful for searching through a database with a large amount of data. For example, lets say you have a very...
This week I spent most of my time implementing Minimax in Clojure. Upon first approaching the problem I thought my implementation would be similar to...