Introduction to Networking

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...

April 3, 2017

Brief Introduction to Generative Testing in Clojure

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...

April 3, 2017

Tail Recursive Minimax

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...

March 24, 2017

Database Query Optimization with Hashing

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...

March 7, 2017

Minimax

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...

March 3, 2017