Search:

Type: Posts; User: confuted

Page 1 of 20 1 2 3 4

Search: Search took 0.06 seconds.

  1. Thread: help

    by confuted
    Replies
    2
    Views
    1,202

    huh? Try this:...

    huh?

    Try this:
    http://www.catb.org/~esr/faqs/smart-questions.html
  2. Replies
    1
    Views
    2,095

    Moving Lapack++ dependent code to windows

    I've written some code that makes heavy use of Lapack++ to do computations. The code compiles and runs correctly on my linux machine using GCC 3.3.5. The code is probably not of interest to anyone...
  3. Replies
    6
    Views
    2,485

    I think what you're looking for is something...

    I think what you're looking for is something along the lines of the UDP protocol. TCP is a handshaking protocol by definition, and there is no way around that. UDP, however, is a "send it and forget...
  4. Replies
    2
    Views
    2,144

    Embedded microcontrollers?

    I'm working on a little project, and am looking for someone to recommend a microcontroller to fit my needs. Without getting into unnecessary details, the goal is basically a counter displayed across...
  5. Replies
    6
    Views
    2,643

    The function isn't defined at line 390; it's...

    The function isn't defined at line 390; it's simply used. The return value and variables passed are consistent with my declaration - returns an int, and is passed a char, char* and an int. I'll post...
  6. Replies
    6
    Views
    2,643

    There are no prototypes anywhere that I can find...

    There are no prototypes anywhere that I can find for most of the functions (all the ones without a return type listed), but there is the comment

    /***DECLARATIONS***/
    /* declare non-int functions...
  7. Replies
    6
    Views
    2,643

    Weird function declarations

    I've come across some code that was a real hack job, and was written by a real hacker. I'm not exactly sure what his function declarations are doing:


    docmd_w(cm,cmd,dr)
    char cm;
    char *cmd;...
  8. Replies
    17
    Views
    8,026

    You're unlikely to get the current you need with...

    You're unlikely to get the current you need with a single capacitor. You'll need to build a bank of them. I seriously suggest reading some of those links that I provided earlier - especially the...
  9. Replies
    17
    Views
    8,026

    B0bDole: I was waiting for someone to say that....

    B0bDole: I was waiting for someone to say that. If you convert your AC to DC, you're once again using DC, and not AC, just like I said. I don't care where you get the DC, but you need it. Regardless,...
  10. Replies
    11
    Views
    2,457

    Exactly. It returns EXIT_SUCCESS if successful,...

    Exactly. It returns EXIT_SUCCESS if successful, otherwise it returns EXIT_FAILURE. It matters to people like me, who like to type commands like
    ./configure && make && sudo make install
    on the...
  11. Replies
    7
    Views
    1,983

    $20 says you don't actually need all of that...

    $20 says you don't actually need all of that terrain in memory at any given time. Try only loading what you need, as (or right before) you need it. Also, scale down the texture sizes.
  12. Replies
    17
    Views
    8,026

    1) Absolutely not, unless your goal is to weld...

    1) Absolutely not, unless your goal is to weld the projectiles to the rail and blow the fuse. Rail guns rely on the Lorentz force to push the projectile along its merry way; to work, this push needs...
  13. Replies
    14
    Views
    26,081

    This guy (http://www.norvig.com/21-days.html) has...

    This guy has a suggested way to learn to program well, and I think that if you work at it hard enough, you could be decent at the end of his timescale. But it can't be rushed, and you have to work...
  14. Replies
    144
    Views
    82,815

    Naw, that's just to prove they can use Google to...

    Naw, that's just to prove they can use Google to find a picture of a girl. Nobody here really has a girlfriend :p
  15. Replies
    14
    Views
    5,847

    Now, save your files for the user (star office...

    Now, save your files for the user (star office documents, jpgs, etc) in the user's directory in /home. Don't put them elsewhere.
  16. Replies
    14
    Views
    5,847

    No. You want the user to have a directory in...

    No. You want the user to have a directory in /home. For example, if you wanted to make me a user with a directory:

    mkdir /home/confuted/
    adduser confuted
    passwd
    usermod -d /home/confuted...
  17. Replies
    5
    Views
    1,704

    I believe that he wants to use dialog boxes...

    I believe that he wants to use dialog boxes defined in a resource file to make an MDI.

    edit: See this thread: http://cboard.cprogramming.com/showthread.php?t=64071&highlight=child+window+dialog
  18. Replies
    13
    Views
    3,674

    No. Don't #include anything other than header...

    No. Don't #include anything other than header files. Check in the linker options ... it'll be buried in a menu somewhere.
  19. Replies
    16
    Views
    3,234

    I'd suggest not trying to be a ricer, and using...

    I'd suggest not trying to be a ricer, and using something other than Gentoo. If you really want to take days or weeks to compile your whole system, do a Linux from scratch. There's nothing special...
  20. Replies
    7
    Views
    2,006

    A note: You're painting each pixel several times....

    A note: You're painting each pixel several times. Work it out for yourself with a small case.
  21. Replies
    12
    Views
    7,542

    Aye, but if it compiled, there'd be no problem at...

    Aye, but if it compiled, there'd be no problem at all.
  22. Replies
    2
    Views
    4,867

    You can set Firefox to use a default CSS as well.

    You can set Firefox to use a default CSS as well.
  23. Replies
    38
    Views
    13,223

    What are you people TALKING about? The United...

    What are you people TALKING about? The United States uses only the metric system. All the other units you think you see on road signs and bottles (miles, quarts, etc) are legally definted portions...
  24. Replies
    2
    Views
    4,760

    You could try passing a function pointer that...

    You could try passing a function pointer that points at the desired message handling function for the dialog in the constructor for this class. That way, each dialog can have its own procedure, etc,...
  25. Replies
    12
    Views
    7,542

    I don't know what the contract terms were; the...

    I don't know what the contract terms were; the way things work around this place is that source code arrives from on high, and we are told to put it all together and make it work, and the expectation...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4