S E R V E R   S I D E
View current page
...more recent posts

High-res AT&T 3G coverage map.

Three days and counting...

- jim 7-08-2008 3:17 pm [link] [6 comments]

HTML 5 is so cool I'm sure it will never really get here. Check out this latest proposal: WebSocket, "a full-duplex communications channel that operates over a single socket."

JavaScript:

var conn = new WebSocket("ws://www.example.com/livedemo");
conn.onopen = function(evt) { alert("Conn opened"); }
conn.onread = function(evt) { alert("Read: " + evt.data); }
conn.onclose = function(evt) { alert("Conn closed"); }
conn.send("Hello World")
Nice!
- jim 7-08-2008 2:51 pm [link] [1 comment]

older posts...