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...
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...
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...
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:...
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...
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...