Search:

Type: Posts; User: Brian2

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    15
    Views
    5,070

    My email address has changed.

    My email address has changed.
  2. Replies
    15
    Views
    5,070

    Re: Another Rules Addition

    I can't remember the password for my first account.
  3. Replies
    8
    Views
    11,227

    Don't forget to chmod 755 compile.sh

    Don't forget to


    chmod 755 compile.sh
  4. Replies
    7
    Views
    25,129

    All arguments passed will be character strings. ...

    All arguments passed will be character strings. So even if you called the function with:


    %foo 42


    argv[0] will point to "42", not 42.


    #include <stdlib.h>
  5. Thread: 2d gaming

    by Brian2
    Replies
    1
    Views
    1,502

    www.libsdl.org

    www.libsdl.org
  6. Replies
    6
    Views
    3,291

    Nah, it's definately up to your usual standard.

    Nah, it's definately up to your usual standard.
  7. Thread: Indian Music

    by Brian2
    Replies
    7
    Views
    3,372

    A sitar (http://en.wikipedia.org/wiki/Sitar)...

    A sitar perhaps?
  8. Replies
    7
    Views
    3,282

    ironic considering itunes is spyware

    ironic considering itunes is spyware
  9. Thread: Mandrake/NTFS

    by Brian2
    Replies
    28
    Views
    2,284

    AOL + Linux = disaster. AOL is windows-only and...

    AOL + Linux = disaster.
    AOL is windows-only and the hacks for linux are few and only work in a few countries (france i think). The best solution is to get a real ISP.
  10. Thread: Convert vb

    by Brian2
    Replies
    2
    Views
    1,290

    yes. manually.

    yes.

    manually.
  11. Thread: Mandrake/NTFS

    by Brian2
    Replies
    28
    Views
    2,284

    Linux can only read NTFS file systems.

    Linux can only read NTFS file systems.
  12. Replies
    10
    Views
    1,736

    heh printf("\b"); also works.

    heh printf("\b"); also works.
  13. Thread: entire file

    by Brian2
    Replies
    30
    Views
    3,772

    Wouldn't it be better to make nbytes a size_t?

    Wouldn't it be better to make nbytes a size_t?
  14. Thread: proxy

    by Brian2
    Replies
    2
    Views
    2,529

    Re: proxy

    If it's a HTTP proxy then:


    GET http://url.com/url/ HTTP/1.1
  15. Thread: Menu

    by Brian2
    Replies
    4
    Views
    1,809

    #include int menu(void); void...

    #include <stdio.h>

    int menu(void);
    void hellofunc(void);
    void goodbyefunc(void);

    int main(void)
    {
    int choice;
    while ((choice = menu()) != 3) {
  16. Replies
    18
    Views
    3,853

    while ((ch = getchar()) != '\n' && ch != EOF); ...

    while ((ch = getchar()) != '\n' && ch != EOF);


    flushy flushy

    http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1044873249&id=1043284392
  17. Replies
    8
    Views
    3,151

    gf 5200 sucks :(

    gf 5200 sucks :(
  18. Replies
    13
    Views
    3,318

    (defun stars (amt) (dotimes (cur amt) (dotimes...

    (defun stars (amt)
    (dotimes (cur amt) (dotimes (num (- amt cur)) (princ " "))
    (dotimes (num (1+ (* (1- cur) 2))) (princ "*")) (terpri)))


    HA! (oh and you didnt declare some of your...
  19. Replies
    13
    Views
    3,318

    > Did you run my code? Woah, that is cool. ...

    > Did you run my code?

    Woah, that is cool.

    > Anyway, what are you doing posting lisp on a C board? :rolleyes:

    I'm trying to learn it. :(
  20. Replies
    13
    Views
    3,318

    (defun pramt(c a) (unless (= a 0) (princ c)...

    (defun pramt(c a)
    (unless (= a 0)
    (princ c)
    (pramt c (- a 1))))

    (defun lines(amt max)
    (unless (= amt (+ max 1)) (pramt " " (- max amt))
    (pramt "*" (+ 1 (* (- amt 1) 2)))
    (terpri)...
  21. Replies
    6
    Views
    3,493

    All programmers so far have been killed in...

    All programmers so far have been killed in action. But even then it only serves to make them more powerful. Much like what happened with Obi Wan Kenobi.
  22. Replies
    37
    Views
    8,081

    What's your point? Internet Explorer has 99% of...

    What's your point? Internet Explorer has 99% of the market share. If you want more performance per pound/dollar, then AMD it is.
  23. Replies
    37
    Views
    8,081

    I have a thing against tomshardware. They are...

    I have a thing against tomshardware. They are soo biased to intel they only ever mention AMD in a negative light.
  24. Thread: XP Sucks

    by Brian2
    Replies
    26
    Views
    7,561

    2000 is XP minus the bloat. Perfect.

    2000 is XP minus the bloat.

    Perfect.
  25. Replies
    26
    Views
    8,307

    kwrite has it too.

    kwrite has it too.
Results 1 to 25 of 40
Page 1 of 2 1 2