Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@moonmilk
moonmilk / novelty_record.txt
Created November 12, 2014 03:15
log of @hafaslegomenon's test run
I
MISS
HIM
HURRY
UP
THURSDAY
OR
FRIDAY
ITS
NOT
@moonmilk
moonmilk / cacophony.ino
Created February 12, 2015 04:41
instrument-a-day 2015, day 11: cacophony organ.
/* jeltone-style synth for arduino mega with a heap of LEDs crammed into the expansion port
* output 16 tones in accordion bass button layout for some reason
* See video at moonmilk.com or flickr.com/ranjit
*/
const int num = 16;
int increment = 15;
int pins[] = {52, 50, 48, 46, 44, 42, 40, 38, 36, 34, 32, 30, 28, 26, 24, 22};
@moonmilk
moonmilk / crash dump analysis.md
Last active August 29, 2015 14:17
tracking down crashes in Highsight arduino code
@moonmilk
moonmilk / babyforsale.py
Created April 14, 2015 03:32
For sale: baby Synset('clothing.n.01'), never worn.
from nltk.corpus import wordnet as wn
clothing = wn.synset('clothing.n.01')
hypo = lambda s: s.hyponyms()
clothes = list(clothing.closure(hypo))
for clo in clothes:
for n in [a.name() for a in clo.lemmas()]:
if not "_" in n:
@moonmilk
moonmilk / newpentagon.svg
Created August 11, 2015 16:15
new tiling pentagon
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@moonmilk
moonmilk / vowel formants.maxpat
Created February 13, 2016 01:41
instrument-a-day 2016, day 12: vowel explorer
{
"patcher" : {
"fileversion" : 1,
"appversion" : {
"major" : 6,
"minor" : 1,
"revision" : 10,
"architecture" : "x86"
}
,
@moonmilk
moonmilk / bottle_imp_1.ino
Created February 8, 2016 01:07
instrument-a-day 2016, day 7: Bottle Imp 1
// teensy 3.1 in USB MIDI mode
const int MIDI_CHANNEL = 1;
int NUM_THINGIES = 4;
const int TOUCH_PINS[] = {0, 1, 15, 16};
const int CONTROLLERS[] = {20, 21, 22, 23};
float touch[] = {0,0,0,0};
@moonmilk
moonmilk / whisperer2.ino
Created February 18, 2016 01:44
instrument-a-day 17: teensy whisperer
// whisperer2 for teensy 3.1/3.2 with teensy audio board
#include <Audio.h>
#include <Wire.h>
#include <SPI.h>
#include <SD.h>
#include <SerialFlash.h>
// GUItool: begin automatically generated code
AudioSynthWaveform waveform1; //xy=253,396
@moonmilk
moonmilk / ofxMSAWord2Vec playground.ipynb
Last active July 5, 2016 00:14
messing around with ofxMSAWord2Vec
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@moonmilk
moonmilk / lobsterbowl.ino
Created February 20, 2017 02:22
instrument-a-day 2017, day 18: lobster bowl
// Lobster Bowl arduino due touch glitch thing
// readCapacitivePin
// Arduino Due version, from http://playground.arduino.cc/Code/CapacitiveSensor
// Input: Arduino pin number
// Output: A number, from 0 to 17 expressing
// how much capacitance is on the pin
// When you touch the pin, or whatever you have
// attached to it, the number will get higher
uint8_t readCapacitivePin(int pinToMeasure) {