View readme_install_node
#Quick cp from http://sekati.com/etc/install-nodejs-on-debian-squeeze | |
# | |
#Needed to install TileMill from MapBox | |
# | |
#Installs node.js which has npm bundled | |
# | |
#Build Dependencies | |
sudo apt-get update && apt-get install git-core curl build-essential openssl libssl-dev |
View animatingSq
/* animateSq - Lia */ | |
Box [] boxes = new Box[2500]; | |
int numShiftBoxes; | |
int counter; | |
int totalRows; | |
void setup() { | |
size (500, 500); |
View Display
class Maple { | |
// just a single leaf | |
float xpos; | |
float ypos; | |
float a = random(2); | |
float yspeed; | |
Maple() { | |
xpos = random(width); |