Skip to content

Instantly share code, notes, and snippets.

View eglinetwork's full-sized avatar

Marco Egli eglinetwork

View GitHub Profile
@eglinetwork
eglinetwork / gist:840144
Created February 23, 2011 07:42
Eternal Love
// love is true at the beginning
var love = true;
// default break up after four seconds
var breakup = function(){
love = false;
};
setTimeout ( breakup, 4000 );
while(love){