Simple Socket.io Example
If you're ever working with real-time javascript, try Socket.io. <!DOCTYPE html> <html> <head> <title>My App<...
Ideas, findings, thoughts and discussion focused on the technology and how to make things work.
If you're ever working with real-time javascript, try Socket.io. <!DOCTYPE html> <html> <head> <title>My App<...
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...