See what we’ve written lately
Creating a Static Google Map
This mini experiment simply shows how to create a static Google Map with a Marker based on a user's Geo Location. This was designed specifically for...
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...
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:...
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...
jQuery: Common Browser Sniffing
There have been a few times where I've been forced to reduce myself to browser sniffing. In this example, I'm making an ad hoc...