View Poll Results: How many hours do you spend on this board per day.?

Voters
27. You may not vote on this poll
  • 1

    10 37.04%
  • 2

    10 37.04%
  • 3-5

    2 7.41%
  • 5-10

    0 0%
  • 10+

    1 3.70%
  • I live in this board.

    4 14.81%

Thread: How much time ... Do you Serve this Board.

  1. #16
    A Banana Yoshi's Avatar
    Join Date
    Oct 2001
    Posts
    859
    ~1 hour
    Yoshi

  2. #17
    Registered User zahid's Avatar
    Join Date
    Aug 2001
    Posts
    531
    0 - 4 hours.
    Sometimes (Even weeks) I remain busy.. So, cannot manage time.

    But I like to be here... This is the only group work with C. So this is the only reliable source of help for me. Some time I like to read long thread.. 0 to even 9+ pages. Average one hours.. I guess Webmaster can say more accurately.

    I will definitely miss the board if does not exist.
    [ Never code before desk work ]
    -------------------------------------:-->
    A man who fears Nothing is the man who Loves Nothing
    If you Love Nothing, what joy is there in your life.
    =------------------------------------------------------= - I may be wrong.

  3. #18
    Registered User
    Join Date
    Jan 2002
    Location
    Vancouver
    Posts
    2,212
    Code:
    #define REFRESH F5
    
    USR_RESPONSE PostWittyReply(void)
    {
     int i = rand() % 4;
     USR_RESPONSE response;
    
     switch(i)
     {
      case 0: response = PrintOneLiner(); break;
      case 1: response = PrintFlame(); break;
      case 2: response = PrintHumorousSourceCode(); break;
      case 3: response = BeHelpfulForOnce(); break;
      case 4: response = CurlUpAndDie(); break;
     }
    
     return response;
    }
     
    int main(void)
    {
     USR_RESPONSE res;
    
     srand(time(NULL));
    
     while(Alive)
     {
      while(Awake)
      {
       while(Posts == Lame)
        HitKey(REFRESH); 
    
       if(NewPost == Cool)
        res = PostWittyReply();
       if(res.angerLevel == 5)
        Awake = NULL;
      }
     }
     return EXIT_DEAD;
    }

  4. #19
    Registered User codingmaster's Avatar
    Join Date
    Sep 2002
    Posts
    309
    Too much.

    Cause I have not enough time for my projects!!!

    But this board is the best one, I know

    So the conditions aren't bad *g*

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Read and set\change system time
    By Hexxx in forum C++ Programming
    Replies: 9
    Last Post: 01-02-2006, 07:11 AM
  2. Killing someones grandparents
    By nickname_changed in forum A Brief History of Cprogramming.com
    Replies: 37
    Last Post: 09-07-2003, 07:56 AM
  3. The Timing is incorret
    By Drew in forum C++ Programming
    Replies: 5
    Last Post: 08-28-2003, 04:57 PM
  4. Pick a number....
    By Salem in forum A Brief History of Cprogramming.com
    Replies: 39
    Last Post: 01-19-2003, 07:27 AM