painting clouds with clojure

Over the 4th of July weekend I made this little program to generate images of clouds   (ns clouds.core (:gen-class) (:import [java.awt.image BufferedImage] [java.io File] [javax.imageio ImageIO] [javax.swing JPanel JFrame...

Getting average motorcycle price across all Craigslist cities

Today I’m going to look at a motorcycle that’s for sale on Craigslist. The asking price for the bike seems fair, but I wanted to get a sense for what...

Resume

I just updated my resume – the latest version of it should be viewable here. For this iteration of resume-writing I decided to try out the open-source JSON Resume schema...

How to set SQL modes for MySQL in a CircleCI container

In circle.yml you can add comma-separated sql-modes to /etc/mysql/my.cnf and then restart the mysql service, e.g.: database: pre: - echo "[mysqld]" | sudo tee -a /etc/mysql/my.cnf - echo 'sql-mode="ALLOW_INVALID_DATES"' |...

OS X Setup Guide

Recently I got a new work laptop. Today I configured it and documented the process. If I make any changes to these instructions I’ll update them in this Gist. Update:...