Skip to content

Instantly share code, notes, and snippets.

@adenine
adenine / app.js
Created April 23, 2011 23:09
Node.js Hello World Web Server
var http = require('http');
var server = http.createServer(function(req, res) {
res.writeHead(200, {
'Content-type': 'text/plain'
});
res.end('Hello World');
});
server.listen(8000, "127.0.0.1");
// DOT EXERCISE
// THISNEWMEDIA.TUMBLR.COM
float yPos;
int myHeight = 800;
int myWidth = 400;
float speed = 0;
float gravity = 0.1;
void setup() {