Search:

Type: Posts; User: h_howee

Page 1 of 11 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    10
    Views
    120,161

    Sticky: The book through which I was introduced to...

    The book through which I was introduced to machine learning: Sutton & Barto Book: Reinforcement Learning: An Introduction
  2. Replies
    3
    Views
    2,739

    Useful Design Patterns?

    The only thing preventing me from making awesome MMORPGs right now seems to be the lack of experience with proper code structure (and time and people, but forum posts won't help fix those). Which...
  3. Replies
    2
    Views
    1,969

    cout...

    cout
    http://www.cprogramming.com/tutorial/lesson1.html
    http://www.cplusplus.com/doc/tutorial/program_structure.html
  4. Replies
    5
    Views
    3,877

    There are multiple ways to do this You can add...

    There are multiple ways to do this

    You can add a second argument to the function that tells you whether it's growing or shrinking
    or...
    Check the value of x and if it's greater than 4, draw x -...
  5. Replies
    3
    Views
    1,395

    topcoder (http://www.topcoder.com/)

    topcoder
  6. capitalize the first letter in the string loop...

    capitalize the first letter in the string
    loop through the string to find spaces
    capitalize the letter after each space
  7. Replies
    2
    Views
    3,635

    can't you just loop through all integers from 0...

    can't you just loop through all integers from 0 to 2^32-1 and perform the same test?
  8. Replies
    11
    Views
    1,751

    Your whole switch statement can be simplified...

    Your whole switch statement can be simplified into a single line:



    ++totals[num11[0]-'0'];
  9. Replies
    3
    Views
    1,218

    Show us what you have so far and we'll correct...

    Show us what you have so far and we'll correct you.

    This might come in handy:
    http://www.cplusplus.com/reference/iostream/manipulators/setw.html
  10. Replies
    2
    Views
    1,021

    annInt = amount * rate * 1; return amount...

    annInt = amount * rate * 1;



    return amount * rate * 1;


    the last multiplication is redundant.
  11. Replies
    1
    Views
    1,445

    for(xloop = -1; xloop

    for(xloop = -1; xloop<3; xloop++){
    glTranslatef(xloop, yloop, -3);
    glCallList(_displayListId);
    }

    Every time you call glTranslatef, the translation is added to the previous translation so...
  12. Replies
    15
    Views
    2,524

    I just asked my dad and he told me that nothing...

    I just asked my dad and he told me that nothing is grounded here
  13. Replies
    15
    Views
    2,524

    Ah.. thanks. The red light has been on for the...

    Ah.. thanks. The red light has been on for the last 2 years and I've never bothered to read the text it was labeled with. I'm surprised my comp was working properly all this time. Is this the cause...
  14. Replies
    15
    Views
    2,524

    Ok, I tried another outlet and it fixed the...

    Ok, I tried another outlet and it fixed the monitor problem. The "WIRING FAULT BUILDING" light on the power bar is on, what does this mean?
  15. Replies
    15
    Views
    2,524

    I don't have another machine available to test my...

    I don't have another machine available to test my HD with and my computer's graphics card is built into the mobo. Is there any other way to test it? Is there a possibility that this isn't hardware...
  16. Replies
    15
    Views
    2,524

    Another problem that arised at the same time: My...

    Another problem that arised at the same time: My monitor shuts off randomly. Windows XP was working fine until this started. The first time this happened, I was on XP and I thought the computer just...
  17. Replies
    15
    Views
    2,524

    pressing F8 and using last known good...

    pressing F8 and using last known good configuration doesn't work. How do i use a scandisk on it? I can only get on Ubuntu right now.
  18. Replies
    15
    Views
    2,524

    What's wrong with my XP partition?

    When booting Windows XP, it keeps rebooting b4 i can get to the desktop

    I originally thought it was a corrupt system file but then...
    When using Ubuntu, If I try to access the XP partition...
  19. Replies
    74
    Views
    13,228

    What company to bash..?

    For french class, we've been given an assignment where we have to write an argumentative text in the form of a letter to some company as a complaint. The problem is there aren't any companies that I...
  20. Thread: optimizing

    by h_howee
    Replies
    4
    Views
    1,469

    nvm, I think i can find it myself......

    nvm, I think i can find it myself... eventually...
    /*Those kinds of changes would only make minor improvements on it's performance, but thanks anyways. I'll keep those in mind for my next project.
    ...
  21. Thread: Full Screen

    by h_howee
    Replies
    1
    Views
    933

    press the "auto" button on your monitor

    press the "auto" button on your monitor
  22. That's an overkill for something this simple

    That's an overkill for something this simple
  23. Thread: optimizing

    by h_howee
    Replies
    4
    Views
    1,469

    asdf

    asdf
  24. Thread: optimizing

    by h_howee
    Replies
    4
    Views
    1,469

    optimizing

    I've recently made a new friend, recursion, and decided to try out some of topcoder's 1000-point problems. Right now, I'm stuck on this problem. I have a working solution but it goes beyond the 2...
  25. Thread: Math Problems?

    by h_howee
    Replies
    8
    Views
    1,112

    right, didn't see it's type. The condition will...

    right, didn't see it's type. The condition will always be true.
Results 1 to 25 of 268
Page 1 of 11 1 2 3 4