Search:

Type: Posts; User: Jiraiya_sama; Keyword(s):

Page 1 of 4 1 2 3 4

Search: Search took 0.10 seconds.

  1. Re: Looking to learn assembly, where should I start?

    I've looked at that before. It was some interesting info but I didn't feel it went into the detail I needed to learn how to code in assembly.

    I'll look at the other links later tonight or...
  2. Replies
    14
    Views
    3,553

    Re: best ubuntu software for php coding

    Vim or emacs.
  3. Re: Looking to learn assembly, where should I start?

    Do you know of an arm emulator I can code on? I don't yet have an arm device I can use to test this stuff.
  4. Looking to learn assembly, where should I start?

    I've done some research and it seems HLA is well liked. Do you guys have any other suggestions? I'm looking to learn assembly mainly for the x86, mmix, arm, and z80 architectures.
  5. Replies
    17
    Views
    1,181

    Re: Good C/C++ Tutorials

    I liked C++ primer 4th edition. It's put me ahead of the rest of my class by a lot within 3 months.
  6. Re: Look at this code for a Priority Queue please..

    That's not for me to decide. All I know is that I can't think of a reason why it would be a bad idea to copy the object.

    Also, something I forgot to mention earlier, but consider this code...
  7. Re: Look at this code for a Priority Queue please..

    Is it bad form to have copy control for a Priority Queue?:confused:
  8. Replies
    20
    Views
    1,426

    Re: Direct memory manipulation

    From what I've heard, GCC is better at generating optimized binaries than many assembly programmers.
  9. Look at this code for a Priority Queue please..

    Is it hard to read? Do I need to slim it down somewhere?



    #ifndef PRIORITY_QUEUE_H
    #define PRIORITY_QUEUE_H
    #include <string>
    #include <algorithm>
    #include <iostream>
  10. Replies
    6
    Views
    423

    Re: looking for a C++ study companion

    Nevermind, I see you have an email posted.

    Here's my email/xmpp: luftschwaffa@gmail.com
  11. Replies
    9
    Views
    368

    Re: Learning Multiple Languages

    I'm focusing on just one and I still have that problem.
  12. Re: What programming lanuages will be popular 5 years from now?

    Hopefully C++0x will be out by then.
  13. Replies
    19
    Views
    73,380

    Re: ho to install GNU C++ compiler?

    First of all, you are using system, which is not defined by stdio.h(you need stdlib.h for that). Second of all, you are using pause, which I understand is a windows only command. This is discussed in...
  14. Replies
    16
    Views
    1,021

    Poll: Re: What shell do you use?

    zsh.
  15. Replies
    6
    Views
    440

    Re: Need help with daemon programming.

    Thanks, that's very useful. However it seems to be much more suited for C than C++. DWhitney's idea of wrapping the loop in a class seems cleaner, since then I can have the compiler take care of...
  16. Replies
    6
    Views
    440

    Re: Need help with daemon programming.

    To spawn a child process that is independent of the shell or session that spawned it. Your idea looks good though, I'll work on it when I get home from work.
  17. Replies
    6
    Views
    440

    Re: Need help with daemon programming.

    Today I was thinking about using try/catch and throw to end the program cleanly. Is anyone here familiar with this though?
  18. Replies
    6
    Views
    440

    Need help with daemon programming.

    I'm learning to program daemons, and everywhere I read says to use exit() when I encounter sigterm. However, this is not a clean way to close in c++. If I have allocated data in a class, the...
  19. Replies
    4
    Views
    1,163

    Re: Code::Blocks, gtkD, and the D Language

    This is just a guess, but it seems the libraries for glibc aren't installed. Do you have build-essential installed?
  20. Replies
    47
    Views
    3,881

    Re: Beginner programming challenge #3

    Here's my entry:



    #include <ctime>
    #include <cstdlib>
    #include <cstring>
    #include <iostream>
    using namespace std;
  21. Replies
    46
    Views
    1,956

    Re: What was your first programming book?

    Ditto
  22. Replies
    19
    Views
    1,302

    Re: printing via command line?

    Every time I read this topic title I think of cout and printf.
  23. Replies
    5
    Views
    272

    Re: Variables!

    There's really no difference between structs and classes in C++ except that structs have the "public:" access label on by default, while the opposite is true for classes.
  24. Re: What's the best language to start with these days?

    With the c++0x standard coming out sometime this year or early next year, I really doubt C++ is anywhere near dead.
  25. Replies
    5
    Views
    272

    Re: Variables!

    Structs would do what you want to do.
Results 1 to 25 of 100
Page 1 of 4 1 2 3 4