[Thread of threads to be thread] is Eternal. It will never die.

Discussion in 'Forum Games' started by Uber_Corq, Aug 17, 2016.

?

How good is this thread?

Best 53 vote(s) 39.3%
Better 13 vote(s) 9.6%
Good 10 vote(s) 7.4%
Okay 7 vote(s) 5.2%
Bad 4 vote(s) 3.0%
Worse 4 vote(s) 3.0%
Worst 17 vote(s) 12.6%
It is the best of threads, it is the worst of threads 27 vote(s) 20.0%
  1. I jumped into a deep pond and became overwhelmed with all the squids. It became a massacre a lot of ink was spilled.
  2. Uh, where do I pick up the stuff I won?
  3. The Fungeon.
    Equinox_Boss and Uber_Corq like this.
  4. I thought that we all got green cookies after Corq rejoined the staff team?

    Unless he applied for that Mac job, I dunno ;)
    Equinox_Boss and Uber_Corq like this.
  5. Pretty sure that's a (gross) type of chips.
    Equinox_Boss and Uber_Corq like this.
  6. I think he means a "fun" dungeon
    Equinox_Boss, Uber_Corq and kaptrix like this.
  7. zzzzzzzzzz...
    *wakes up*

    huh? what? where? WHERE!? :D

    I couldn't think of anything useful to post, sorry =P
    Equinox_Boss, ShelLuser and Uber_Corq like this.
  8. Yesss, our goal has been revealed!

    So we need to participate even more for the staff to recognize the importance of this thread of importance (and self expression) so that it can be placed onto the front page where it will no doubt scare away any sane players we have left on the Empire :D

    So, an interesting topic.. Does anyone know why the villager crossed the road instead of buying some stuff from me?
  9. This is so important that i just found about it #roasted

    seems like an Interesting Topic, i must say, #Thread4Pres
    Equinox_Boss, ShelLuser and Uber_Corq like this.
  10. I am so very glad you found this Thread and enjoyed it just before myself...

    however the truth must be revealed, as that supposed minecraft miniature of New York is so obviously an actual aerial photograph of the city itself...
    Equinox_Boss and Uber_Corq like this.
  11. Oh cool this thread is back. Too bad Harambe can't be brought back as easily as this thread :(
    Equinox_Boss and Uber_Corq like this.
  12. You know when you start reading a book, you are in chapter 2, and then a friend spoils the ending, and you hate the book now...

    I feel the same about this thread, thanks! NOT
  13. Harambe Isnt Ded He Just Died
    Equinox_Boss and Uber_Corq like this.
  14. Tuq is fully right, we need a table of contents in here. Who is going to ask corq?
    Equinox_Boss, 607 and Uber_Corq like this.
  15. Ugh, I was about to go to sleep. Alright, here you go:

    TABLE O' CONTENTS

    p1. The Birth of a New Era
    p2. weeh makes the funniest post of the thread and some other stuff happens too maybe
    p3. We talk about fractions or some garbage
    p4. Title is ruined; Baradar says he's 49
    p5. Aikar & Chin get EXPOSED
    p6. The Search for the Lost Uber Pick
    p7. Thread collapses unto itself
    p8. POST
    p9. The Great Bidding War
    p10. I am owed an Original Dragon Egg and some cash
    p11. THREAD
    p12. Thread refuses to die gracefully
    p13. Tubes, tables, and oh god don't Google everything you read
    p14. Thread is finally locked, except somehow not
    p15. It came out of the... gifs?
    p16. Table of Contents
    p17. Nothing, if there is any hope left for the human race

    There, and it's in such a convenient location, too! :rolleyes:
  16. To be honest looks like a contents page for a Percy Jackson Page

    Looks kinda the same? Eh? The way they write it
  17. Even more threads :eek:

    Code:
    // StopJoin.cs
    using System;
    using System.Threading;
    
    public class Alpha
    {
    
       // This method that will be called when the thread is started
       public void Beta()
       {
          while (true)
          {
             Console.WriteLine("Alpha.Beta is running in its own thread.");
          }
       }
    };
    
    public class Simple
    {
       public static int Main()
       {
          Console.WriteLine("Thread Start/Stop/Join Sample");
          
          Alpha oAlpha = new Alpha();
    
          // Create the thread object, passing in the Alpha.Beta method
          // via a ThreadStart delegate. This does not start the thread.
          Thread oThread = new Thread(new ThreadStart(oAlpha.Beta));
    
          // Start the thread
          oThread.Start();
    
          // Spin for a while waiting for the started thread to become
          // alive:
          while (!oThread.IsAlive);
          
          // Put the Main thread to sleep for 1 millisecond to allow oThread
          // to do some work:
          Thread.Sleep(1);
          
          // Request that oThread be stopped
          oThread.Abort();
          
          // Wait until oThread finishes. Join also has overloads
          // that take a millisecond interval or a TimeSpan object.
          oThread.Join();
          
          Console.WriteLine();
          Console.WriteLine("Alpha.Beta has finished");
          
          try 
          {
             Console.WriteLine("Try to restart the Alpha.Beta thread");
             oThread.Start();
          }
          catch (ThreadStateException) 
          {
             Console.Write("ThreadStateException trying to restart Alpha.Beta. ");
             Console.WriteLine("Expected since aborted threads cannot be restarted.");
          }
          return 0;
       }
    }
    Source: MSDN
  18. Wow, that's quite a lot. :p I usually only put website's title, page's title, writer, and if easily accessible, date.
    We hardly use books anymore nowadays. ;)
    Equinox_Boss, Kytula and Uber_Corq like this.
  19. I love that 607 used a -> :p in their post and it's been fun to read most of the I <3's. :D
  20. Oh wow, I like how you made me remember that! That was quite fun indeed! :)
    Equinox_Boss, ShelLuser and Uber_Corq like this.