Search:

Type: Posts; User: Tonto

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    4,885

    Storing Passwords/Encryption

    I was making a program that stores login information from a user, just so that they don't have to enter it every time. I was just wondering what sort of security measures I should take in storing the...
  2. Thread: Visual Studio

    by Tonto
    Replies
    5
    Views
    2,018

    There's one add-on I just found that I thought...

    There's one add-on I just found that I thought was pretty cool.

    It updates VERSIONINFO structures in your resource files

    CodeGuru: Increment File and Product Version Number: Multiple IDE

    Now...
  3. Replies
    2
    Views
    3,455

    Hmmm -- I noticed that when it worked it just...

    Hmmm -- I noticed that when it worked it just worked -- like XInput recognized the device instantly -- I wonder if I could map like cell phone buttons to XInput parameters as a controller device :)
  4. Thread: tifftopnm

    by Tonto
    Replies
    6
    Views
    1,771

    The gibberish is the file! You redirect the...

    The gibberish is the file! You redirect the output from stdout to the filename that you want

    Using command redirection operators

    The -alphaout is if you want some other part, the alpha channel,...
  5. Replies
    5
    Views
    1,145

    Your third parameter 'numOfYears' to the function...

    Your third parameter 'numOfYears' to the function is supposed to be an int, but you pass it a double


    double investmentAmount, annualInterestRate, numOfYears, monthlyInterestRate, futureValue;
    ...
  6. Replies
    4
    Views
    11,382

    I'd be itnerested in where you have been learning...

    I'd be itnerested in where you have been learning the language, you've obviously learned some strange things --

    It is perfectly conventional to define/declare variables that are local to the a...
  7. Thread: Visual Studio

    by Tonto
    Replies
    5
    Views
    2,018

    cmake, premake, nmake -- obviously lots of...

    cmake, premake, nmake -- obviously lots of options lol. I don't think visual studio can even create makefiles to use for nmake so screw that, I think the build format is the project file

    I was...
  8. Replies
    2
    Views
    3,455

    Bluetooth Questions

    Hey all,

    I've been trying to use bluetooth for video game controllers

    I have the WIDCOMM drivers installed on my computer, and they are able to detect the controller as PLAYSTATION(R)3...
  9. Replies
    3
    Views
    7,451

    I knew I had this one link -- tons of stuff here...

    I knew I had this one link -- tons of stuff here

    I was typing in like cheapsunglasses.com -- inurl:cheapsunglasses -- inurl:sunglasses x86 --

    assemblylanguage.net - Assembly Language Resources
  10. Replies
    7
    Views
    14,520

    I like the xerces-c library for xml

    I like the xerces-c library for xml
  11. Replies
    6
    Views
    2,524

    I think my question here is similarly concerned...

    I think my question here is similarly concerned
    http://cboard.cprogramming.com/tech-board/115299-visual-studio.html

    I have most of my code, libraries, sdks, installed to c:\hell :)
    I've also...
  12. Replies
    9
    Views
    3,245

    Edit: I personally think that in terms of the...

    Edit:

    I personally think that in terms of the usability of your program using the small epsilon value comparison is appropriate. If the user is testing the program and wants to pass 0.2 to the...
  13. Thread: Visual Studio

    by Tonto
    Replies
    5
    Views
    2,018

    Visual Studio

    I like programming with Visual Studio but I also like to make my projects open source and available to share. Sometimes though I use third party libraries and I link to them through the project files...
  14. You should check if current > current_max, not...

    You should check if current > current_max, not current_max > current rfight?


    if (current > current_max)
    {
    current_max = current;
    count = 1;
    }
    else if (current ==...
  15. Thread: Tray windows

    by Tonto
    Replies
    5
    Views
    1,383

    This looks pretty good The Old New Thing : Which...

    This looks pretty good The Old New Thing : Which windows appear in the Alt+Tab list?



    ACtually that is what adeyblue's link is about.
  16. Yea, I have also ended up using ALINK to make...

    Yea, I have also ended up using ALINK to make win32 binaries -- using the 'extern' directive to specify externals. I suppose the import format you have is similar. I also found that gcc would link...
  17. Replies
    2
    Views
    1,381

    You have to use strcmp. Strings are pointers to...

    You have to use strcmp. Strings are pointers to arrays of characters (hence char *) so comparing the pointers is incorrect, you have to use a function
  18. Replies
    2
    Views
    13,802

    Yea I think so, the crashing sequence is so funny...

    Yea I think so, the crashing sequence is so funny it tumbles and then int overflow

    Barrel roll :]
  19. Replies
    6
    Views
    6,609

    I'm in college now, taking lots of computer...

    I'm in college now, taking lots of computer science and it is sort of sad. The C/C++ introductory courses are weak -- if you're gonna learn C/C++ you gotta learn it like you're going to be a person...
  20. Replies
    2
    Views
    13,802

    IOCCC Flight Simulator

    Do a barrel roll -- with the IOCCC flight simulator (banks 1998) I'm running it under cygwin and it's really entertaining


    #include <math.h>
    #include ...
  21. Thread: new standard

    by Tonto
    Replies
    23
    Views
    2,537

    I really wanted the for each style loops --

    I really wanted the for each style loops --
  22. Replies
    15
    Views
    11,315

    i have it compiling because i couldn't find any...

    i have it compiling because i couldn't find any binary distribution for cygwin. there's a binary distribution for mingw and msys though TDM's GCC/mingw32 Builds

    i've had it compiling for like 10...
  23. Replies
    15
    Views
    11,315

    I keep trying to build this under cygwin and then...

    I keep trying to build this under cygwin and then mfpr fails damnit
  24. Replies
    7
    Views
    1,884

    great game :] you should post it in the 'post...

    great game :] you should post it in the 'post your games thread', i've got one that looks like this in there

    it uses glfont2 http://students.cs.byu.edu/~bfish/glfont2.php -- it works alright but...
  25. Replies
    16
    Views
    11,039

    You're the best mad_guy. I just pushed out of the...

    You're the best mad_guy. I just pushed out of the way all of the midterms I was facing and now I'm thinking about which projects to work on. Hmmm ---

    Some of my faavorites are like Music Brainz,...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4