This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hxd.snd.Data; | |
import hxd.res.Sound; | |
// This class should work like a Sound. Jsut create one and call play and a lo-fi generated tune should ring. | |
// You can check out a bit more about bytebeat there : http://countercomplex.blogspot.com/2011/10/algorithmic-symphonies-from-one-line-of.html | |
class CustomSound extends Sound { | |
public function new() { | |
super(null); | |
data = new SoundDataGenerator(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import BaseHTTPServer | |
import boto.s3 | |
from boto.s3.key import Key | |
PORT = 8123 |