Skip to content

Instantly share code, notes, and snippets.

@nathansmith
Created February 8, 2012 18:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nathansmith/1771854 to your computer and use it in GitHub Desktop.
Save nathansmith/1771854 to your computer and use it in GitHub Desktop.
Eating at Chipotle?
// I crack myself up.
// Typed this to coworkers in team chat:
person.eat(food, function() {
if (typeof food === 'chipotle') {
// Yum!
setTimeout(function() {
// Oh noes!
// http://www.hulu.com/watch/10304/saturday-night-live-colon-blow
return colon.blow();
}, 7200000); // 2 hrs.
}
});
@nathanlogan
Copy link

@nathansmith
Copy link
Author

Oops. I had done...

2 * 60 * 1000

Should've been...

2 * 60 * 60 * 1000

I've updated the gist. Thanks for debuggin' my code! :)

@nathanlogan
Copy link

Haha, any time!

@tbwiii
Copy link

tbwiii commented Feb 8, 2012

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