Search:

Type: Posts; User: darksaidin

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    19
    Views
    4,900

    So much love floating through this topic.......

    So much love floating through this topic.... :rolleyes:
  2. Replies
    14
    Views
    3,131

    I don't know any userspace applications that need...

    I don't know any userspace applications that need to be specifically compiled for the current kernel. This only applies to kernel modules or applications that need to interface the kernel directly....
  3. Replies
    11
    Views
    36,842

    That pragma is not supported by GCC (unless it...

    That pragma is not supported by GCC (unless it changed recently). Since DevC++ uses gcc ("mingw") I would think that it won't work.
    Generally, stuff in a pragma is non standard and should be used...
  4. Replies
    11
    Views
    1,545

    You know that you know enough C++ basics if you...

    You know that you know enough C++ basics if you can get it to work without asking anybody for help. :)
  5. Replies
    7
    Views
    1,746

    Gamedev.net has a nice Tutorial...

    Gamedev.net has a nice Tutorial about binary trees. I don't remember if they went into details like balancing etc, but it was a good tutorial none the less. It wouldn't still be in my bookmarks...
  6. Poll: Actually you don't need WindowBlinds or any other...

    Actually you don't need WindowBlinds or any other lame shareware program. WindowsXP has inbuild theme support. All you need to do is either generate a valid checksum for your theme (so XP recognizes...
  7. Replies
    3
    Views
    1,648

    Re: DevCPP assignment question

    double d_x;
    int i_z, i_a;

    i_z = int(i_a * d_x);


    Typecast it ;)
  8. Replies
    17
    Views
    3,155

    Thats one of those stange bugs that indicates a...

    Thats one of those stange bugs that indicates a buffer overflow or uninitialized variables somewhere. I've once achieved something similar to this by using


    for (i; i<10; i++) {
    get some...
  9. Replies
    16
    Views
    2,627

    You could use a wrapper libarary to get the...

    You could use a wrapper libarary to get the windows interfacing out of your code and stay portable.
    Search for glut - I think thats the most common wrapper when you only want one window with GL...
  10. Replies
    6
    Views
    2,586

    When used from inside the class it could either...

    When used from inside the class it could either be a global variable, a parameter variable or a member variable.

    I don't use any prefix for members, but I can understand that it makes sense in...
  11. Replies
    35
    Views
    3,571

    You assign val1...3 the values of first...third...

    You assign val1...3 the values of first...third but never define a value for first...third.

    I think you wanted to assign val1..3 to first...third and not the other way around.

    i.e.


    first =...
  12. Thread: where is...

    by darksaidin
    Replies
    25
    Views
    6,415

    That code looks like our new god has already been...

    That code looks like our new god has already been deprecated. :D
  13. Replies
    18
    Views
    5,294

    I think it is a different issue here. It was...

    I think it is a different issue here. It was probably broken off during transport and not during the launch (how could it, it's still on the ground :p )
    Maybe they should already start to look for...
  14. Replies
    20
    Views
    5,425

    Some are faster than others. Some are also more...

    Some are faster than others. Some are also more picky about their working environment than others. I'm one of those who won't start working with a system until it's setup exactly they way they want...
  15. Replies
    20
    Views
    5,425

    I've converted my system to Gentoo Linux only -...

    I've converted my system to Gentoo Linux only - about half a year ago. Once you've setup everything to your liking it's a fine system. The only problem is that bringing the system into a usable shape...
  16. Replies
    18
    Views
    5,294

    Thanks ;) I didn't take his post seriously...

    Thanks ;)
    I didn't take his post seriously though, otherwise I would have startet a long reply about why his post sucks :D


    Anyway, I really hope they won't have to delay it past the 17. March...
  17. Replies
    18
    Views
    5,294

    A lot of the equippment used in American missions...

    A lot of the equippment used in American missions actually comes from Europe. I know because whenever NASA fires something into space, European news channels have to highlight time and again that...
  18. Replies
    9
    Views
    1,959

    I had something about long double in mind so the...

    I had something about long double in mind so the 10066 won't really matter as there are sufficient bits left for those 20 repeating bits. But then I also said float and talked about 23 bits so......
  19. Replies
    11
    Views
    17,373

    This is General Discussions. How can it be...

    This is General Discussions. How can it be inappropriate?



    As I said, he's not playing tricks on "god". The point about him standing above it was an additional argument.
    I for one honestly...
  20. Replies
    9
    Views
    1,959

    Well, the dilemma is that there is no binary...

    Well, the dilemma is that there is no binary equivalent of 0.52 (the 10066 doesn't matter for now). If you do the math by hand you'll you come up with



    0.52 x 2 = 1.04 => 1
    0.04 x 2 = 0.08 =>...
  21. Replies
    11
    Views
    17,373

    He's not actually mocking god but men. It's quite...

    He's not actually mocking god but men. It's quite obvious that their whole discussion about his(?) race is meaningless.

    Even if it were mockery, I'm pretty sure god would stand above it. Pun...
  22. Replies
    3
    Views
    1,287

    You could make a start by telling us what exactly...

    You could make a start by telling us what exactly is not working and what the code was supposed to do in the first place.
  23. Thread: Linux API

    by darksaidin
    Replies
    10
    Views
    3,595

    As your name is C++.prog.newbie I'd also like to...

    As your name is C++.prog.newbie I'd also like to point you to Gtkmm, which is Gtk's offical C++ language binding.

    I'm not sure if all of the main distros have it already included in their package...
  24. Replies
    6
    Views
    2,185

    IEEE floats are (basically) constructed by...

    IEEE floats are (basically) constructed by summing up a series of up to 23 times 1/2^n. If 1/2^n fits into the number, bit number n is set. As you can see, numbers like 0.50, 0.75, 0.25 ... have an...
  25. Thread: C++ vs Java

    by darksaidin
    Replies
    19
    Views
    2,714

    I think the game Chrome...

    I think the game Chrome is written in Java. At least it came with a java runtime engine and filled my HDD with several thousand small java files. It has the best and most importantly - fastests -...
Results 1 to 25 of 315
Page 1 of 13 1 2 3 4