Skip to content

Instantly share code, notes, and snippets.

@llkats
Forked from baileylo/gist:1926710
Created February 27, 2012 21:34
Show Gist options
  • Save llkats/1927252 to your computer and use it in GitHub Desktop.
Save llkats/1927252 to your computer and use it in GitHub Desktop.
gdgt lunch decider
window.setTimeout(
function() {
(Math.floor(Math.random()*(100)) % 2 ) ? console.log('Chipotle') : console.log('Venue');
},
3600000 // deliberate for an hour before deciding
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment