Search:

Type: Posts; User: fungus_mungus

Search: Search took 0.00 seconds.

  1. Replies
    13
    Views
    5,625

    Well, these are the C macros. I would question...

    Well, these are the C macros. I would question their portability. I'll have to research that. I would much rather use and then &&!
  2. Replies
    13
    Views
    5,625

    Not really... setjmp() and longjmp() are really...

    Not really... setjmp() and longjmp() are really useful for jumping out of code like this:




    setjmp(env_buf);

    while (a > 9) {

    while (b < 8) {
  3. Replies
    13
    Views
    5,625

    New Site Up - Francois S. Lamini

    This is a site that I have already made but now I moved it to a server with no ads and I fixed the links. There is free software on this site and in source form. This shows you what I'm working on or...
  4. Replies
    13
    Views
    5,625

    Yep, there was a bug in one of the style sheets....

    Yep, there was a bug in one of the style sheets. I fixed it so now the links are readable. Have fun!
  5. Thread: TGA File

    by fungus_mungus
    Replies
    6
    Views
    1,474

    I decided to give up TGA and go with PCX because...

    I decided to give up TGA and go with PCX because I understand PCX better, however, I heard that both PCX and TGA are very similar. There is also no need for me to deal with anything
    higher than...
  6. Replies
    13
    Views
    5,625

    I take it you're using Firefox. I tested the web...

    I take it you're using Firefox. I tested the web site on Internet Explorer but it seems that Firebox didn't bold the links like I requested. I might just increase the font size. But then on Internet...
  7. Replies
    13
    Views
    5,625

    New Site Up - Francois S Lamini

    I just launched this new web site showcasing the projects that I'm currently working on. I though some people might be interested. I have completed one project so far. It's a TI-83 console based...
  8. Replies
    60
    Views
    241,041

    Sticky: That's totally tubular! I rely now only on free...

    That's totally tubular! I rely now only on free software because I don't feel like going out and buying programs. Costs too much.
  9. Replies
    39
    Views
    14,566

    0) where are you from ? : Planet Earth 1)...

    0) where are you from ? :

    Planet Earth

    1) How old are you? :

    23

    2) How old were you when you started learning a programming language? :
  10. Sometimes you can't kill processes on Windows....

    Sometimes you can't kill processes on Windows. Access is usually denied in such cases.
  11. Replies
    7
    Views
    2,684

    Operating systems are difficult to implement. I...

    Operating systems are difficult to implement. I have studied about them. You have to implement not only the file system but also handle interrupts and create an environment programs to run. I...
  12. Replies
    7
    Views
    4,354

    SDL or Allegro

    Which one do you think is better suited for game development? SDL appears to be able to support more graphics and audio formats than Allegro and its just as portable not to mention that it seems to...
  13. Thread: TGA File

    by fungus_mungus
    Replies
    6
    Views
    1,474

    TGA File

    How widely used is this type of file? I know I can port it to Windows, Linux, and the Mac via Allegro but are there any other game libraries that support TGA files?
  14. Replies
    39
    Views
    3,905

    I don't think C# will every compete with C++ for...

    I don't think C# will every compete with C++ for speed. C++ is still about 5 or 6 times faster than C#. I would never use bytecode compiled languages for game development. I doubt their portability....
  15. This is so true! Anyways, getting back to the...

    This is so true! Anyways, getting back to the main topic... Switching from 32 bit to 64 bit is good for someone who writes programs that need vast quantities of memory. Examples would be search...
  16. Replies
    2
    Views
    1,921

    Thanks for the tip. :)

    Thanks for the tip.
    :)
  17. Replies
    2
    Views
    1,921

    Linux SDK

    I just recently installed Linux (Debian) on my DELL but it's completely messed up in terms of the display. So naturally I was unable to develop software under it. If you don't already know (and you...
  18. Replies
    40
    Views
    8,116

    You should really try to avoid function pointers...

    You should really try to avoid function pointers when you're working with objects and just pass a pointer of the object containing the function itself. I used function pointers before and I found...
  19. Replies
    6
    Views
    1,570

    0 != desktop The desktop handle is not zero which...

    0 != desktop The desktop handle is not zero which would imply that it's NULL.
Results 1 to 19 of 19