Humor

Getting things done algorithm

Written on September 4th, 2009
.
# Make sure all inboxes are empty.
def process (inboxes)
  inboxes.each { |inbox|
    inbox.each { |item|
      if item.requires_action? then
        if item.takes_epsilon_time? then
          item.do()
        elsif item.can_be_delegated? then
          item.delegate
          waiting_for.append(item)
        else
          deferred.append(item)
        end
      elsif item.is_needed_later? then
        filing_system.append(item)
      elsif item.maybe_wanted_later?
        someday_maybe.append(item)
      else
        trash.append(time)
      end
    }
  }
end

Taked from http://paste.ubuntu.com/263929/ and translated to Ruby language.

Real Wall-E

Written on December 20th, 2008
.

El conejo asesino

Written on September 2nd, 2007
.

De esos momentos WTF? de la red, y reconozco que tardé bastante en conocerlo el dramatic prairie dog es la sensación del momento, con sus diferentes versiones que me hicieron reir como no lo había echo en años, el suelo fue mi compañero.

Para ver mis adaptación favoritas pulsa en leer más que no tiene desperdicio.

Además si quereis compraros la camiseta, sí una camiseta, que la verdad no está nada mal aquí teneis la dirección en Busted Tees o si quereis ver más videos pasaros por You Tube o por un blog donde recoge los mejores videos dramaticprairiedog.com
Read the rest of this entry »

Un Chiste

Written on August 6th, 2007
.

¿ Cómo matarías a un elefante amarillo ?

void Elephant::Kill() {
	YellowElephantsExterminatorGun gun;
	if(color == YELLOW) {
		gun.shoot(this);
	} else if(color == GREEN) {
		paint(YELLOW);
		gun.shoot(this);
	}
	this->~Elephant();
}