See what we’ve written lately
How to Convert Latitude and Longitude into a String Using Geohash
I use Geohash all the time to store latitude and longitude inside a MySQL or SQLite database. If I'm using Postgres, Couch, or MongoDB, latitude, and...
On being a DJ
A few of my favorite quotes on being a DJ. Focus > Focusing on doing one thing 100%. Too many ideas confuse people. – DJ Nu-Mark (2004 [http://www....
Simple NodeJS TCP
This is the simplest NodeJS app you can make that uses TCP. var net = require('net'); var server = net.createServer( onServerHandler ); server.listen(8080, 'http:...
How to ask for money
I saw this excellent Kickstarter interview on Bleu, the entrepreneurial-style musician who earned $40k to start a record label [http://blog.kickstarter.com/post/1602573894/bleu-talks-to-kickstarter]. What I...
Streaming Mp3's using SoundManager2 + MediaElement
I've written about 8 or 9 streaming music players in the past six years, and considering how quickly client-side technology changes, I figure I'll...