Skip to content

Instantly share code, notes, and snippets.

@nathansmith
Created February 8, 2012 18:10

Revisions

  1. nathansmith revised this gist Feb 8, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion chipotle_lunch.js
    Original file line number Diff line number Diff line change
    @@ -9,6 +9,6 @@ person.eat(food, function() {
    // Oh noes!
    // http://www.hulu.com/watch/10304/saturday-night-live-colon-blow
    return colon.blow();
    }, 120000); // 2 hrs.
    }, 7200000); // 2 hrs.
    }
    });
  2. nathansmith created this gist Feb 8, 2012.
    14 changes: 14 additions & 0 deletions chipotle_lunch.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    // 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();
    }, 120000); // 2 hrs.
    }
    });