1. Nov 1 2009
  2. I Wanna be Sedated in JavaScript

    var verse = function(whereGet, wherePut, wherePut2) {
    	var hoursToGo = new Date();
    	hoursToGo.setHours(24);
    
    	if (hoursToGo.getHours() == 24) {
    		I.wannaBe = 'sedated';
    	}
    
    	var toDo = toGo = null;
    	if (!toDo && !toGo) {
    		I.wannaBe = 'sedated';
    	}
    
    	if (!wherePut2) {
    		I.getTo(whereGet);
    		I.putOn(wherePut);
    	} else {
    		I.putOn(wherePut);
    		I.putOn(wherePut2);
    	}
    
    	var hurry = 0;
    	while (hurry <= 3) {
    		hurry++;
    
    		if (hurry == 3) {
    			I.goInsane();
    		}
    	}
    
    	I.controlFingers = false;
    	if (!whereGet == 'show') {
    		I.controlBrain = false;
    	} else {
    		I.controlToes = false;
    	}
    
    	return 'No, no, no, no, nooh';
    };
    
    var play = function () {
    	verse('airport', 'plane', null);
    
    	verse(null, 'wheelchair', 'plane');
    
    	verse('show', 'wheelchair', null);
    
    	verse('show', 'wheelchair', null);
    };
    
    // 4000 milliseconds = 1, 2, 3, 4... seconds
    var IWannaBeSedated = setTimeout(play, 4000);
    

  3. Oct 24 2009
  4. Sunday

    * thisisntlisa np:
    morrissey - everyday is like sunday
    [hielo5464]:
    yeah being with u it's like sunday
    [hielo5464]:
    i hate sunday
  5. Oct 6 2009
  6. [You can't see but an image goes here.]

    /!\ COLORIDO! _\|/_

  7. Sep 28 2009
  8. Puta merda!

  9. Sep 21 2009
  10. The "Long Live Rock N\'Roll" Code

    var longLive = function (a, b) {
    	var i = 0, result, rockIsAlive = true;
    	do {
    		if (i++ % 2 == 0) {
    			result += a;
    		} else {
    			result += b;
    		}
    	} while (rockIsAlive);
    }
    
    longLive("Rock"," N' Roll");