Skip to content

Instantly share code, notes, and snippets.

View joshmarinacci's full-sized avatar
💭
energized

Josh Marinacci joshmarinacci

💭
energized
View GitHub Profile
pubnub.subscribe({channels: [channel]});
pubnub.addListener({
presence: function(m){
document.getElementById('occupancy').textContent = m.occupancy;
}
});