Skip to content

Instantly share code, notes, and snippets.

@devdsp
devdsp / main.py
Last active December 17, 2015 08:39
#!/usr/bin/env python
import Image
width, height = 128,512
im = Image.new("RGB", (width,height) )
objective_influence = [[]]*width*height;
def main():
@devdsp
devdsp / gist:4029176
Created November 7, 2012 02:09
pedestrian.tv photography awards; vote sorting hack
jQuery.fn.sortElements = (function(){
var sort = [].sort;
return function(comparator, getSortable) {
getSortable = getSortable || function(){return this;};
var placements = this.map(function(){
#include <ht1632.h>
#include <MHV_io_ArduinoDuemilanove328p.h>
HT1632 matrix = HT1632( MHV_ARDUINO_PIN_4,MHV_ARDUINO_PIN_8,MHV_ARDUINO_PIN_10,MHV_ARDUINO_PIN_9, HT1632::pmos_8commons );
void setup() {
digitalWrite(4, HIGH);
Serial.begin(9600);
matrix.set_mode( HT1632::read_mode );
matrix.send_address( 0 );
@devdsp
devdsp / dmx.py
Last active August 29, 2015 14:09
simple ftdi-based DMX script in pthon
#!/usr/bin/python
import json
from ftdi import *
import math
import time
usleep = lambda x: time.sleep(x/1000000.0)
def start():