Skip to content

Instantly share code, notes, and snippets.

View srhyne's full-sized avatar
🏠
Working from home

Stephen Rhyne srhyne

🏠
Working from home
View GitHub Profile
@srhyne
srhyne / app.js
Created November 1, 2011 20:02 — forked from aaronksaunders/app.js
example app using appcelerator stackmob module
//
// APPCELERATOR - STACKMOB IOS MODULE
//
// aaron@clearlyinnovative.com
// blog.clearlyinnovative.com
//
// http://stackmob.com
//
var window = Ti.UI.createWindow({
backgroundColor: 'white'
@srhyne
srhyne / jquery.ba-tinypubsub.js
Created November 1, 2011 03:40 — forked from cowboy/HEY-YOU.md
jQuery Tiny Pub/Sub: A really, really, REALLY tiny pub/sub implementation for jQuery.
/* jQuery Tiny Pub/Sub - v0.7 - 10/27/2011
* http://benalman.com/
* Copyright (c) 2011 "Cowboy" Ben Alman; Licensed MIT, GPL */
(function($) {
var o = $({});
$.subscribe = function() {
o.on.apply(o, arguments);