Skip to content

Instantly share code, notes, and snippets.

View dkavanagh's full-sized avatar

David Kavanagh dkavanagh

View GitHub Profile
@dkavanagh
dkavanagh / LifeInColor.pde
Created December 9, 2012 04:12
Conway's Game Of Life running on an Arduino, displaying on a string of RGB LEDs arranged in a matrix
/*
* Conway's "Life"
*
* Adapted from the Life example
* on the Processing.org site
*
* Written by David Kavanagh (dkavanagh@gmail.com).
*/
#include "SPI.h"
#include "Adafruit_WS2801.h"
@dkavanagh
dkavanagh / update_catalog.py
Created September 17, 2012 17:51
Tool for updating eustore catalog based on signature calculated from tarballs
#!/usr/bin/env python
import os
import sys
import urllib2
import json
import hashlib
import zlib
from optparse import OptionParser