Search:

Type: Posts; User: Dae

Page 1 of 20 1 2 3 4

Search: Search took 0.03 seconds.

  1. Thread: Functor errors

    by Dae
    Replies
    2
    Views
    1,282

    You're right. I don't think that original code is...

    You're right. I don't think that original code is incorrect now. I think I need to use a compiler flag. It's a little disorienting, using command-line compiler + some Python called waf-script. It's...
  2. Thread: Functor errors

    by Dae
    Replies
    2
    Views
    1,282

    Functor errors

    Would appreciate a pointer here (pun intended). :)

    It's been a long time since I've touched anything low-level. Apologies if this is simple. I didn't post this in GD because it's basic C, not game...
  3. Thread: Signing off.

    by Dae
    Replies
    10
    Views
    2,747

    What no scary goodbye photo? You can be bothered...

    What no scary goodbye photo? You can be bothered to pull it out and freak us out in every book thread though? :P



    In the help section.
  4. Replies
    6
    Views
    3,038

    Stop downloading with limewire, emule, or any of...

    Stop downloading with limewire, emule, or any of that other crap. Either buy your music (or cough* google... bandName discography site:thepiratebay.org and select the song from the list).
  5. Thread: Bittorrent

    by Dae
    Replies
    4
    Views
    1,860

    Yes, if hard == lot of work. Learning networking...

    Yes, if hard == lot of work. Learning networking and protocols is no small task. Once you're past that stage it's not all that complicated, but does involve a fair amount of work if you want all the...
  6. Thread: Are we the same?

    by Dae
    Replies
    4
    Views
    1,287

    You really shouldn't be sad and competitive over...

    You really shouldn't be sad and competitive over a few people smarter than you in class. There's thousands, if not millions, of people smarter than you in the world. I hope that makes you feel...
  7. Thread: IDE liking

    by Dae
    Replies
    51
    Views
    8,131

    People here probably know I'm no MS fan, Windows,...

    People here probably know I'm no MS fan, Windows, VS, MSN, or otherwise. But Sipher dude, those are some very mislead statements. VS with DX disabled? I'm confused, VS and the MS VC compiler are the...
  8. Replies
    49
    Views
    6,226

    Check your Administrator Tool's Event Viewer for...

    Check your Administrator Tool's Event Viewer for errors (usually driver errors, like graphics cards and network adapters).

    If there's nothing.. probably overheating, power supply or power adapter...
  9. Thread: Removal of gotos

    by Dae
    Replies
    14
    Views
    1,836

    Switch's have cases which use "break." That's all...

    Switch's have cases which use "break." That's all he meant.

    The main reason goto's are bad is because they produce spaghetti code. "break" and "continue" do not produce spaghetti code. They are...
  10. Thread: Classes

    by Dae
    Replies
    10
    Views
    1,607

    food = 4 // you can't instantiate static members...

    food = 4 // you can't instantiate static members inside the class definition. move it outside and make sure to qualify it as box::food and don't forget the data type again.
  11. Correct, so the answer is not "yes." He wants a...

    Correct, so the answer is not "yes." He wants a case where the subject is bigger than 5. Meaning, he wanted something like this.. case f > 5: break; Which would be an interesting shortcut, but does...
  12. No, but you could do switch(f) { case 4:...

    No, but you could do


    switch(f)
    {
    case 4:
    break;

    default:
    if(f > 5)
  13. Thread: GUI

    by Dae
    Replies
    8
    Views
    1,545

    Grab Qt Creator and you'll have a GUI vastly...

    Grab Qt Creator and you'll have a GUI vastly superior to the ancient theForgers, before the day ends.
  14. Replies
    11
    Views
    1,432

    It doesn't make it work. It helps you find the...

    It doesn't make it work. It helps you find the bug in your print function. const (constant) means the function can't change it. Given that, what do you think you're doing? You're changing it....
  15. Replies
    15
    Views
    2,688

    I listen on low/medium volume. On high volume it...

    I listen on low/medium volume. On high volume it can get disorienting. However new songs can be distracting. I listen to a favorite playlist with ~150 songs I know by heart. It serves to drown out...
  16. I think someone wants you to first take into...

    I think someone wants you to first take into consideration the suggestions and try them instead of expecting us to implement them for you. Either use poll(), select(), or threads, and come back if...
  17. Yeah, poll is more efficient, which allows for...

    Yeah, poll is more efficient, which allows for more sockets, but doesn't make much difference in low-resource applications (chat servers are not low-resource).

    You can add your own protocol on top...
  18. Replies
    13
    Views
    2,055

    6 hours is nothing bro, don't give up.

    6 hours is nothing bro, don't give up.
  19. Replies
    1
    Views
    4,567

    I'm not too fond of it, but there's #c++ on...

    I'm not too fond of it, but there's #c++ on Freenode. Make sure to register to speak.
  20. Replies
    36
    Views
    8,756

    I disagree. Perhaps it's a learning curve, but...

    I disagree. Perhaps it's a learning curve, but it's worth it. I find the way it's laid out is like a gift to technical people (and therefore programmers). Let me see, almost everything is...
  21. Replies
    36
    Views
    8,756

    Sigh, I believe in this case that's exactly what...

    Sigh, I believe in this case that's exactly what it means.



    Exactly. Did you not read his requirements? Let me refresh your memory. He wants to debug memory, and doesn't want to spend money....
  22. Replies
    36
    Views
    8,756

    Hahahaha, wow, leave it to a Windows fanatic to...

    Hahahaha, wow, leave it to a Windows fanatic to make a comparison like that.

    Virtual Windows (VirtualBox, VMWare) runs faster on Linux.

    I would at least try running virtual Linux, but it runs...
  23. Thread: WTF con't

    by Dae
    Replies
    8
    Views
    1,788

    Your first C++ program? Really? With the...

    Your first C++ program? Really? With the comparison statements you've made before?

    First of all, size_t is unsigned, hence the name (negative size?).

    Second what laserlight said, don't inherit...
  24. Replies
    13
    Views
    2,680

    OP, really not the best place to be asking....

    OP, really not the best place to be asking. Looking at your Speedtest it doesn't look like you have much options. I would find a forum Belize related or at least ISP dedicated.

    MK27, not funny at...
  25. Thread: Some Simple Code

    by Dae
    Replies
    6
    Views
    1,930

    Yes, he's a clever one.

    Yes, he's a clever one.
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4