>> Is that like a Simon-Emulator (aka SimCoupe) ?

Actually, the algorithm is closer to this:

public static void main(String[] args) {
   while (1) {
      for (int i=0;i<999;i++) {
          pretendToWork();
      }
      doWork();
   }
}
/**
 * Pretend to Work
 * @return no output
 */
public void pretendToWork() {
   WorldWideWeb.surf();
}

/**
 * Do Work - occasionally produces complete works of Shakespeare
 * Highly random though.
 */
public void doWork() {
   simulateAMonkey();
}   

______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com

Reply via email to