Search:

Type: Posts; User: joeprogrammer

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    8,998

    Hey what's up! Long time no see.

    Hey, not sure if anyone remembers me... I joined here many years ago when I was just a teenager. I had learned C++ from an old library book and thought I knew how to program computers. Haha.

    I...
  2. Just think about trying to break it down into...

    Just think about trying to break it down into smaller subproblems. What would you do it if your list had <= 5 elements? Right, you'd just print the list. What about 6 elements? You'd exclude a...
  3. Replies
    40
    Views
    12,432

    Sinkula: Obituary...

    Sinkula: Obituary

    May you rest in peace, now and forever.
  4. Replies
    40
    Views
    12,432

    Goodbye, Dave.

    As Dave Sinkula nears the end of his long battle with cancer, I thought it would be appropriate to wish him final goodbyes and thank him for all the work that he's done for the online programming...
  5. Replies
    14
    Views
    3,171

    Partitioning will be an interesting factor on...

    Partitioning will be an interesting factor on these huge disks, too. MBR-based partitions can't be larger than two terabytes, so a 4 terabyte drive would need at least two partitions. You can always...
  6. Replies
    7
    Views
    2,999

    Isn't CD copy protection only effective on...

    Isn't CD copy protection only effective on Windows? I've ripped many a copy protected CD (usually one of Sony's), and never had a problem on Mac or Linux. Other easy ways of circumventing media DRM...
  7. Replies
    28
    Views
    5,804

    Did you remember to escape backslashes in the...

    Did you remember to escape backslashes in the path?
  8. Replies
    28
    Views
    5,804

    >I also read elsewere on this forum that...

    >I also read elsewere on this forum that system(); isn't a good command to use.
    system() is a perfectly good function to use. It's bad when it's misused (for example, using it to call things like...
  9. Replies
    28
    Views
    5,804

    Correct me if I'm wrong, but I'm pretty sure...

    Correct me if I'm wrong, but I'm pretty sure that's what the system() call does... if you want a console application to open in a new window, you'll have to do something like pass cmd.exe the name of...
  10. Replies
    28
    Views
    5,804

    You mean like the system() call?

    You mean like the system() call?
  11. Replies
    2
    Views
    4,942

    Hmm... thanks for that, pianorain. It's good to...

    Hmm... thanks for that, pianorain. It's good to be reassured that because I'm learning stuff I'm not falling behind. :-) I think I will definitely try to learn another programming language. I've...
  12. Replies
    2
    Views
    4,942

    [Mod Note: Just because a thread is inactive...

    [Mod Note: Just because a thread is inactive doesn't mean you can hijack it for your own, slightly related question. Create a new thread, like everyone else.]

    If I want to become a professional...
  13. Replies
    29
    Views
    8,225

    Plague Maker...

    Plague Maker by Tim Downs. An evil scientist is trying to kill the world's population by using the bubonic plague. :)

    [edit] And poor Salem is going to have to choose from this ever-growing list....
  14. Replies
    25
    Views
    5,888

    Eck... and how would you type? With an onscreen...

    Eck... and how would you type? With an onscreen keyboard? No thanks.
  15. Replies
    25
    Views
    5,888

    I wonder what the blue screen of death looks like...

    I wonder what the blue screen of death looks like on this thing :p

    I've seen a prototype of something similar to this before. Can't remember what it was called. But it looks like a wonderful idea,...
  16. Replies
    22
    Views
    7,061

    Poll: Is it just me, or is it every time I visit...

    Is it just me, or is it every time I visit Cboard, Quaetrix has posted another idiotic thread? No, I don't think it's just me. Last visit was "Don't pump gas on May 15", the time before it was "Man...
  17. Thread: Koalas

    by joeprogrammer
    Replies
    8
    Views
    3,513

    I'm confused. What does board tracking have to do...

    I'm confused. What does board tracking have to do with Koalas?
  18. Arrgh, I was hoping you wouldn't bring that up...

    Arrgh, I was hoping you wouldn't bring that up...
  19. How does it feel to go skiing down an escalator?

    Now you know.
  20. Replies
    20
    Views
    6,662

    Coincidence. ;)

    Coincidence. ;)
  21. Replies
    20
    Views
    6,662

    #include #include #include...

    #include <iostream>
    #include <string>
    #include <cstring>
    using namespace std;

    const int BUF_SIZE = 512;
    const int MEM_INDEX = 3;

    class outputBuffer {
    public:
  22. Replies
    11
    Views
    1,303

    Just a suggestion, don't you think it would be...

    Just a suggestion, don't you think it would be easier to use a stringstream to split up the words rather than to use string::find and string::substr?

    Regarding the 2-dimensional vector, it's quite...
  23. Replies
    8
    Views
    3,904

    The voicing was actually quite good. Was it all...

    The voicing was actually quite good. Was it all done by the same person?
  24. Thread: Shutdown

    by joeprogrammer
    Replies
    21
    Views
    6,964

    Dump truck internet... ;)

    Dump truck internet... ;)
  25. Replies
    5
    Views
    1,601

    >However would this leave a big gaps in memory?...

    >However would this leave a big gaps in memory?
    No.

    >Is this the best way to store the information about my units?
    Yeah.
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4