Skip to content

Instantly share code, notes, and snippets.

@junosuarez
Created March 13, 2012 22:20
Show Gist options
  • Save junosuarez/2032159 to your computer and use it in GitHub Desktop.
Save junosuarez/2032159 to your computer and use it in GitHub Desktop.
boisehackers.js
(function boiseHackers(you){
var meetup = {
when: new Date("Mar 14 2012 5:00 PM"),
where: "Java Downtown"
};
if(you.doing > you.talking)
{
alert("@BoiseHackers is meeting at " + meetup.where + " at " + meetup.when.toLocaleTimeString() + " on " + meetup.when.toLocaleDateString());
}
})( { doing: 9001, talking: 0} );
@junosuarez
Copy link
Author

$.extend(meetup, {
    bring: ['laptop', 'something to work on'],
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment