Search:

Type: Posts; User: Rashakil Fol

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    28
    Views
    6,041

    Mine did not teach waterfall anyway. They mocked...

    Mine did not teach waterfall anyway. They mocked waterfall because it's ........ing retarded. We did our project using the "iterative" process. It was a good class, partly because I lucked into a...
  2. Replies
    62
    Views
    13,114

    I brag for the following: - Being smarter than...

    I brag for the following:
    - Being smarter than xuftugulus

    Things I hate involving computers:

    Things I dislike involving computers:
    - The post above (since it spans over 80 columns)
    - The...
  3. Replies
    47
    Views
    9,250

    You need to take a sarcasm pill. Or you...

    You need to take a sarcasm pill.



    Or you could go by center of mass. Or some other measurement of center. And um, we are in fact at the center of the observable universe; it looks uniform to...
  4. Replies
    7
    Views
    2,283

    Ok, here's a list that you might want to learn....

    Ok, here's a list that you might want to learn. :-)

    Ruby
    Oz
    Factor
    Scheme
    Haskell
    Erlang
    D
  5. Replies
    7
    Views
    2,283

    Also, you might change your mind about wanting to...

    Also, you might change your mind about wanting to get a C++ programming job.
  6. Replies
    7
    Views
    2,283

    Why are you so intent on getting a C++...

    Why are you so intent on getting a C++ programming job?
  7. Replies
    3
    Views
    1,267

    You probably want to use some toolkit such as GTK...

    You probably want to use some toolkit such as GTK instead of writing X11 code directly.
  8. Replies
    3
    Views
    3,063

    You'd want to think about what kind of...

    You'd want to think about what kind of distribution you're using. One might construct an algorithm like the following:


    generateMathProblem(depth) {
    if (decideToContinue(depth)) {
    ...
  9. Replies
    5
    Views
    2,388

    Why anybody would want to make one of these in C...

    Why anybody would want to make one of these in C or C++ is beyond me.
  10. Replies
    136
    Views
    31,807

    Sorry, I don't understand: What's a "trivial"...

    Sorry, I don't understand: What's a "trivial" class?
  11. Replies
    136
    Views
    31,807

    Edit: never mind.

    Edit: never mind.
  12. Replies
    1
    Views
    2,610

    Which Lisp implementation are you running? Its...

    Which Lisp implementation are you running? Its manual or documentation is probably the best source of information you will get. I don't think the foreign function interface for Lisp is...
  13. Replies
    5
    Views
    3,348

    Contests are fun, and if you find them fun, do...

    Contests are fun, and if you find them fun, do them. Contests that last over several days might improve your programming ability. Being a winner in the IOI won't make you a better programmer --...
  14. Replies
    34
    Views
    16,449

    And here's C, while we're at it. #include...

    And here's C, while we're at it.


    #include <stdio.h>

    void foo(int x, int y) {

    if (EOF != scanf("&#37;d",&x)) {
    if (foo(0, x + y), 0) { }
    }
  15. Replies
    34
    Views
    16,449

    That takes out the fun! And why do we have to...

    That takes out the fun! And why do we have to use a semicolon?


    #include <iostream>

    void foo(int x, int y) {
    if (std::cin >> x) {
    if (foo(0, x + y), false) { }
    }
    else {
  16. Not really. People who think that being nice to...

    Not really. People who think that being nice to others is evil are the kind that wouldn't like free software.
  17. Replies
    9
    Views
    2,795

    I don't see why you perceive that as an attack on...

    I don't see why you perceive that as an attack on C++, when it's just an explanation of how Common Lisp doesn't suck. And CL is not an elegant language. It's a big, monstrous language.
  18. Replies
    9
    Views
    2,795

    Common Lisp is a fine language, and Scheme is ok...

    Common Lisp is a fine language, and Scheme is ok too. SBCL is a good free Common Lisp compiler. Lisp is a lot different than languages like C++, since everything that C++ adds to C is a lame...
  19. Replies
    6
    Views
    7,113

    Do you understand what each line of code does? ...

    Do you understand what each line of code does? Do you understand the way while loops work?
  20. Thread: gotos

    by Rashakil Fol
    Replies
    30
    Views
    7,256

    Oh yes. Never ever ever ever use gotos in C++. ...

    Oh yes. Never ever ever ever use gotos in C++. In fact, just don't use C++; it's like programming through a minefield.

    (Use D! ;->)
  21. Thread: gotos

    by Rashakil Fol
    Replies
    30
    Views
    7,256

    As a general principle, if you're going to have...

    As a general principle, if you're going to have gotos, have them jump downwards.
  22. You must not be comparing the same languages I've...

    You must not be comparing the same languages I've been comparing.
  23. Replies
    1
    Views
    888

    See how getline passes information back to the...

    See how getline passes information back to the caller by receiving an argument by reference: http://www.cppreference.com/cppstring/getline.

    That seems more convenient (to me) than receiving the...
  24. Replies
    16
    Views
    10,478

    O(n/2) is the same thing as O(n) and I don't see...

    O(n/2) is the same thing as O(n) and I don't see why people bother using big O notation if they're going to throw in spurious constants.

    And the cost of walking down a few if-then-elses isn't that...
  25. I'd guess MIPS would take the most, then C, then...

    I'd guess MIPS would take the most, then C, then Java. At first I thought Java might take more than C, because it takes up space with all its class declaration business. But then if you consider...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4