Skip to content

Instantly share code, notes, and snippets.

View nobu666's full-sized avatar

Nobutoshi Ogata nobu666

View GitHub Profile
@ahomu
ahomu / client.js
Created April 17, 2011 15:07
nodeでTwitterのUser Streamを取得して,scoket.ioを通してwebkitNotificationsに渡す
uu.ready(function() {
var socket, notify, enable;
// デスクトップ通知をサポートしているかを判定しておく
if ( window.webkitNotifications ) {
notify = true;
uu("#detect").add('<p>READY: your browser is supported webkitNotifications.</p>');
} else {
notify = false;
uu("#detect").add('<p>ERROR: your browser does not support webkitNotifications.</p>');