Search:

Type: Posts; User: Rodaxoleaux

Page 1 of 9 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    49
    Views
    14,006

    This guy has absolutely no idea what he's doing...

    This guy has absolutely no idea what he's doing and hasn't explained why or shown anything that he's tried. I don't even think he knows what he's doing.
  2. You'd think that after a week of waiting, the guy...

    You'd think that after a week of waiting, the guy would have said something if he'd wanted more input or a thread bumped.
  3. Your rant is basically programming in a nutshell....

    Your rant is basically programming in a nutshell. Spend days trying to find a "complex" error. The problem was you forgot a semicolon. gg no re.
  4. I love how this is posted 3 times over 3 forums....

    I love how this is posted 3 times over 3 forums. "I hate my class. Let me get some code monkeys to do it for me." Bugger off.
  5. Replies
    10
    Views
    924

    The largest sum of successive numbers is indeed...

    The largest sum of successive numbers is indeed 10+20+50 (80) Now think about how you would do that in the code, now that you know how the idea itself works.
  6. Replies
    10
    Views
    924

    This is the first time in a while I've seen...

    This is the first time in a while I've seen someone tell another person to not think about a problem programmatically but to think about it logically instead. Going straight into the code has proved...
  7. Replies
    3
    Views
    832

    I don't think you want to have...

    I don't think you want to have "weeks_since_this_thread_was_active > 4"

    But I'm with the general rules of all forums that you shouldn't be gravedigging 'not' your own thread.
  8. If he can't even tell the difference between the...

    If he can't even tell the difference between the languages, I can't wait to see his final grade in the class.
  9. Replies
    90
    Views
    7,142

    Bee-youtiful.

    Bee-youtiful.
  10. Replies
    90
    Views
    7,142

    It took me a while to get it, and now I want to...

    It took me a while to get it, and now I want to off myself. The jokes are too strong.
  11. Replies
    11
    Views
    37,785

    I can't help it. It's encoded into my DNA. On...

    I can't help it. It's encoded into my DNA.

    On topic though: False positives run rampant with some basic, unoptimized code. I think I remember seeing a post somewhere about a hello world program...
  12. Replies
    16
    Views
    2,459

    Without a reference to your current code? Not as...

    Without a reference to your current code? Not as well as it would (unless it has not changed from your last post.)
  13. Replies
    3
    Views
    8,924

    Using gigantic, bold text will not make us pay...

    Using gigantic, bold text will not make us pay any more attention to your question as we would have in the first place.


    Sorry for not contributing to the question itself, but that annoyed me....
  14. Replies
    11
    Views
    37,785

    Not saying you do but, if you have Windows Vista,...

    Not saying you do but, if you have Windows Vista, it's not your program that has a virus. Your entire OS is an interactive virus.
  15. Maybe I'm misreading or I'm crazy but int...

    Maybe I'm misreading or I'm crazy but



    int combinations (int n, int k) {
    if (n == 1) {
    return 1;
    }
    else {
    return combinations(n + k + n + k...
  16. Reading that code makes my eyes water.

    Reading that code makes my eyes water.
  17. Replies
    4
    Views
    1,272

    At least in this post he didn't put his subject...

    At least in this post he didn't put his subject as "Max and min" and then put 'Thanks a lot' in the message body and assume we can read minds.
  18. Replies
    4
    Views
    2,156

    The way root is protected in unix, just getting...

    The way root is protected in unix, just getting in scares me. I feel like if I went to the wrong thing, a virus would transcend my computer, infect my central nervous system and take control of me
  19. Replies
    16
    Views
    2,459

    Why is your scrambling random? I thought it was...

    Why is your scrambling random? I thought it was supposed to be by rotating one character
  20. -lwinmm does link to winmm.lib, and he said that...

    -lwinmm does link to winmm.lib, and he said that solved his problem, however I'm pretty sure even while linked to that, if he deleted winmm.dll from his system32 directory (which I don't recommend,)...
  21. I agree 100%. It's still an option though if he's...

    I agree 100%. It's still an option though if he's uncomfortable with learning the logic behind containers inside of containers. I know that that was confusing for me when I started out.


    The more...
  22. I thought I knew what he meant by x and y too,...

    I thought I knew what he meant by x and y too, but then he turned my assumption into pudding.
  23. Thanks for what? This is the same thing you did...

    Thanks for what? This is the same thing you did in your last thread. We're not going to just do your work for you; at least, I'm not. What the heck is Cell? Why are you pushing copies of a vector...
  24. The name of the variable: 'board' gives me the...

    The name of the variable: 'board' gives me the idea that he's making a game board like he would in tic-tac-toe or something. In which case, if he wanted vectors, he could just use a single vector and...
  25. Isn't Google a gem? I wish everyone knew about...

    Isn't Google a gem? I wish everyone knew about it...
Results 1 to 25 of 203
Page 1 of 9 1 2 3 4