Search:

Type: Posts; User: Vicious

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    9,478

    Linux has "package management". Not to say there...

    Linux has "package management". Not to say there aren't any installers with linux, some programs do have installers. I'm not sure what type of distribution you're using, but I'll just take a wild...
  2. Replies
    14
    Views
    2,861

    Um, so, who's ready to see Renault step up at the...

    Um, so, who's ready to see Renault step up at the Spanish Gran Prix?

    Anyone like the show deadliest catch? Pretty neat huh? How about that episode of south park last night WOW.
  3. Replies
    9
    Views
    1,734

    The second while loop shouldn't be reached until...

    The second while loop shouldn't be reached until the first one has exited. The way it's set up, I am really not sure how that loop will ever execute unless you hit EOF in the first loop. As far as...
  4. Replies
    12
    Views
    38,135

    When I made my first game, it was tic-tac-toe. I...

    When I made my first game, it was tic-tac-toe. I did a really ugly way of doing it which was something like this:



    void drawGrid()
    {
    cout << grid[0][0] << "|" << grid[0][1] << "|" <<...
  5. Replies
    29
    Views
    4,509

    Is it just a random tile here and there or is...

    Is it just a random tile here and there or is there any consistency to it? Have you used this algorithm before? Granted I don't know much at all about 3d/Driect X, but I'm just wondering if perhaps...
  6. Replies
    5
    Views
    1,406

    Instead of using cout in your class return the...

    Instead of using cout in your class return the String.



    string Person:: displayName()
    {
    return PersonName;
    }

    .....
  7. Yes, I was just point out that the differences...

    Yes, I was just point out that the differences between the two may be leading to the difference of understanding between you and Elysia.
  8. Replies
    9
    Views
    1,734

    If I read it correctly, the first while loop is...

    If I read it correctly, the first while loop is going to need 2 consecutive newlines to get out of it. The pch variable keeps track of what the last character was, and both it and the current...
  9. Perhaps the MSVC++ compiler/linker takes care of...

    Perhaps the MSVC++ compiler/linker takes care of the extern stuff? There are many things you can do with microsoft's compiler that GCC will not let you do. Just thought I'd toss that in there:...
  10. Replies
    9
    Views
    2,497

    Ok, that's what I was thinking when I made my...

    Ok, that's what I was thinking when I made my original post. I was just making sure I wasn't totally off.
  11. Replies
    19
    Views
    7,820

    If it matters at all, my default konsole...

    If it matters at all, my default konsole background is the "transparent" you see behind some of the "#"
  12. Replies
    9
    Views
    2,497

    Just to be sure I even understand what I am...

    Just to be sure I even understand what I am talking about:

    If you need to declare a time_t variable in the header including the time header before the class header in your cpp file will work? I...
  13. Replies
    19
    Views
    7,820

    Okay, the first picture is the one you posted...

    Okay, the first picture is the one you posted first. The other picture is the last one you posted.

    .. on Mepis 7
  14. Replies
    9
    Views
    2,497

    If my class needs a certain header, I include...

    If my class needs a certain header, I include that header in the class's header file. It makes the code feel more complete.
  15. Replies
    19
    Views
    7,820

    It was my fault, I didn't remember to link...

    It was my fault, I didn't remember to link -lcurses. I'll try it again when I get home!

    I'll be using Mepis 7.0 64-bit.
  16. Replies
    19
    Views
    7,820

    Well, I was going to try it, but ...

    Well, I was going to try it, but

    /home/sac/c/src/c.c:6: undefined reference to `initscr'
    /home/sac/c/src/c.c:7: undefined reference to `start_color'
    /home/sac/c/src/c.c:10: undefined reference...
  17. Replies
    3
    Views
    8,903

    http://p2p.wrox.com/topic.asp?TOPIC_ID=38639 ...

    http://p2p.wrox.com/topic.asp?TOPIC_ID=38639

    The OP is using .NET, but I believe he's attempting calls out of a win32 api dll so it should be enough to send you in the right direction.
  18. Replies
    69
    Views
    13,791

    Well there's two stances you can take: 1) Rude...

    Well there's two stances you can take:

    1) Rude can be defined out of context
    2) Rude is a matter of interpretation unique to each individual

    Either way, this thread started out as suggesting...
  19. Thread: Compiler error

    by Vicious
    Replies
    11
    Views
    1,540

    This code you posted is for the Windows operating...

    This code you posted is for the Windows operating system. I am not familiar with GUIs in Linux but perhaps you could look into wxWidgets or QT or something like that. I am assuming you are using...
  20. Replies
    69
    Views
    13,791

    After 20 years of Microsoft (Goodbye and thank...

    After 20 years of Microsoft (Goodbye and thank you for all the fish), I moved to Linux. The culture shock I feared never happened. Be smart.


    (Goodbye and thank you for all the fish) <-- that has...
  21. Replies
    25
    Views
    6,201

    lol! That really adds some ambiguity to that...

    lol!

    That really adds some ambiguity to that phrase doesn't it?

    I <3 MICROSOFT for example. Do I?
  22. Replies
    69
    Views
    13,791

    See that's where the line is sort of flakey. If...

    See that's where the line is sort of flakey. If someone PMs me and says I GOT 4444 POSTS LAWL then I most likely would ignore it, unless it was someone I was familiar with on the board. Then the...
  23. Replies
    16
    Views
    2,167

    That makes sence. So one would simply check for...

    That makes sence. So one would simply check for the existance of the arguments and parse out a file name to open.
  24. Replies
    18
    Views
    4,420

    http://www.newegg.com/Product/Product.aspx?Item=N8...

    http://www.newegg.com/Product/Product.aspx?Item=N82E16832116411

    Is that what you're looking for?
  25. Replies
    16
    Views
    2,167

    I see what you're wanting to do, and I am not...

    I see what you're wanting to do, and I am not sure how to do it now that I think about it.

    For those who may know heres a rewording of what is trying to be done:

    Think about when you double...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4