Search:

Type: Posts; User: loopy

Page 1 of 8 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    3,631

    I've seen breakdancing pirates, they were called...

    I've seen breakdancing pirates, they were called ARRRRRboys.
  2. Thread: hey

    by loopy
    Replies
    118
    Views
    20,832

    I hate alcohol, but I'll sip a virgin eggnog... ...

    I hate alcohol, but I'll sip a virgin eggnog...

    *sips*
  3. Replies
    17
    Views
    2,213

    int *fchar(char buf[], FILE *stream, size_t size)...

    int *fchar(char buf[], FILE *stream, size_t size)
    {
    int i = 0;
    while (i < size - 1)
    buf[i++] = fgetc(stream);
    while (buf[i--] != '\n' && i > 0)
    ;;
    buf[i+1] = '\0';
    return 0;
    }
  4. Replies
    17
    Views
    2,213

    Here is the FINAL version. ; ) int...

    Here is the FINAL version. ; )



    int *fchar(char buf[], FILE *stream, size_t size)
    {
    int i = 0;
    while ((buf[i++] = fgetc(stream)) != EOF && i < size -1)
    ;;
    while (buf[i--] != '\n')
  5. Thread: hey

    by loopy
    Replies
    118
    Views
    20,832

    We all feel that way sometimes, yoshi.

    We all feel that way sometimes, yoshi.
  6. Thread: make utility

    by loopy
    Replies
    2
    Views
    1,359

    Heres one: ...

    Heres one:

    http://vertigo.hsrl.rutgers.edu/ug/make_help.html
  7. Thread: hey

    by loopy
    Replies
    118
    Views
    20,832

    I could, but that would give it away. :cool:

    I could, but that would give it away. :cool:
  8. Replies
    17
    Views
    2,213

    Yes, always! : ) I'm still learning! : )

    Yes, always! : )

    I'm still learning! : )
  9. Replies
    17
    Views
    2,213

    I wrote my own function: char *fget(char...

    I wrote my own function:



    char *fget(char buf[], FILE *stream, size_t size)
    {
    int i = 0;
    while ((buf[i++] = fgetc(stream)) != EOF && i != size)
    ;;
    buf[i] = '\0';
  10. Replies
    47
    Views
    17,649

    I'm learning C, I have a ways to go yet. : )

    I'm learning C, I have a ways to go yet. : )
  11. Thread: hey

    by loopy
    Replies
    118
    Views
    20,832

    Hey, brian.

    Hey, brian.
  12. Thread: Word of the Day

    by loopy
    Replies
    11
    Views
    2,667

    I had read about the PDP-[8/11], I had heard of...

    I had read about the PDP-[8/11], I had heard of DEC, mostly along with tandy (my sisters friend used to own one...).

    I think that the PC market has already bloomed in that direction, mostly due to...
  13. Thread: Word of the Day

    by loopy
    Replies
    11
    Views
    2,667

    Are you saying you don't like sony???

    Are you saying you don't like sony???
  14. Thread: Word of the Day

    by loopy
    Replies
    11
    Views
    2,667

    Offtopic, but lately I've been liking the...

    Offtopic, but lately I've been liking the word..."ambivalence".
  15. Replies
    13
    Views
    2,120

    'Litestep', shutdown through a popup, plus more!...

    'Litestep', shutdown through a popup, plus more!

    www.shellfront.org
  16. Thread: Dreams

    by loopy
    Replies
    11
    Views
    3,313

    I was floating through a chess board, I became a...

    I was floating through a chess board, I became a peice, I believe it was a pawn, I made a move, was moved to the off the board, then, at that point, I saw a white light, I started moving tword it, I...
  17. Thread: I love Mozilla

    by loopy
    Replies
    27
    Views
    5,275

    I thought ePie had a few problems, bits of apple...

    I thought ePie had a few problems, bits of apple kept disappearing, it was the one of the new worms.
  18. Thread: I love Mozilla

    by loopy
    Replies
    27
    Views
    5,275

    Finger on the cake also leaves the cake looking...

    Finger on the cake also leaves the cake looking too "southside", and spooks on-looking guests.
  19. Thread: I love Mozilla

    by loopy
    Replies
    27
    Views
    5,275

    http://www.beigerecords.com/cory/pizza_party/

    http://www.beigerecords.com/cory/pizza_party/
  20. Replies
    1
    Views
    2,377

    http://sudhirmangla.i6networks.com/personal/Firewa...

    http://sudhirmangla.i6networks.com/personal/Firewall.htm

    Theres one. : )

    You can test your port status at:

    http://www.grc.com (take the "Sheildsup" test)
  21. Thread: I love Mozilla

    by loopy
    Replies
    27
    Views
    5,275

    I just had a ham sandwich with dill pickles,...

    I just had a ham sandwich with dill pickles, mayo, mustard. : O
  22. Replies
    7
    Views
    1,337

    No. But there is one called 'sizeof()'. : )

    No.

    But there is one called 'sizeof()'. : )
  23. Thread: Called to Serve

    by loopy
    Replies
    13
    Views
    3,420

    Congrats! : )

    Congrats! : )
  24. Replies
    10
    Views
    1,871

    Do you even NEED to clear an array? It seems to...

    Do you even NEED to clear an array? It seems to work to just write over it...
  25. Replies
    39
    Views
    8,156

    Good to know, but, ignorance seems to be a better...

    Good to know, but, ignorance seems to be a better word, it connotes as to unaware, which makes more sence, when stupidity is just to general for me.
Results 1 to 25 of 176
Page 1 of 8 1 2 3 4