User:Private meta

From Wikipedia, the free encyclopedia

About me[edit]

What to say? Not much, just contributing!

FAQ[edit]

When: Orwells year.
Who: It's private_meta.
What: I'd be glad if i knew.
Where: 127.0.0.1
Why: Free coupons.
Why²: To live forever.
Why³: To fight my fear.

Motto[edit]

 o                              \O_ Arrgh!!
<\==-   -   - -   -  -  - ---   /
/ \                            /\

Code[edit]

import org.life.Human;
import org.life.Geek;
import org.matrix.Pill;

public static void main(String[] argv) {
  Pill redPill = new Pill();
  redPill.setFree(true):
  redPill.addName("unplugged"):
  redPill.addDescription("Show me how deep the rabbithole goes");
  Pill bluePill = new Pill();
  bluePill.setFree(false);
  bluePill.addName("not free");
  bluePill.addDescription("Believe what you want to believe");

  Human geek = new Geek();
  System.out.println("red pill (0), blue pill (1): ");
  while(geek.size()==0) {
    switch(System.in.read()) {
        case 48: geek.add(redPill); break;
        case 49: geek.add(bluePill); break;
    }
  }
  Thread thread = new Thread("life");
  thread.start();
}