Slashdot Mirror


User: rjshields

rjshields's activity in the archive.

Stories
0
Comments
707
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 707

  1. Re:The game did it. on Why Do Computer Games Claim Lives? · · Score: 1

    We don't know this guy was "mentally retarded". He could have had serious trauma that made him want to escape reality in this way.

  2. Re:Also no mention of BBC Micro, etc. on 30 Years of Personal Computer Market Share · · Score: 1

    Yeah I remember the reverse gravity levels. It was fun to drift off into space. I think the balls were called "pods".

  3. Re:Also no mention of BBC Micro, etc. on 30 Years of Personal Computer Market Share · · Score: 1

    Of course it's American and they didn't have Amstrads or Speccies, poor buggers. These machines were hugely popular in Europe so should be included. I someone who had a C64. The styling looked very dated compared to a CPC or ZX Spectrum.

  4. Re:Also no mention of BBC Micro, etc. on 30 Years of Personal Computer Market Share · · Score: 1

    I have this game on the Amstrad CPC464, branded as "Thrust". A true classic and highly addictive! I recall the devastation felt when losing control on a never-before-reached level.

  5. Re:Sod Gnome & KDE on Torvalds Says 'Use KDE' · · Score: 1

    I tried to get E but people just kept looking at me like I was some kind of drug addict.

  6. Re:so.. on Coca-Cola's Coffee Soda · · Score: 1

    s/bug/beg/ ;) I knew I should have used the preview button.

  7. Re:so.. on Coca-Cola's Coffee Soda · · Score: 1
    Coffee is not a "bitter" flavor, any more than "wine tastes like Thunderbird". It's a perverse generalization.
    I bug to differ but caffeine is a very bitter substance. Oh, coffee contains caffeine. Isn't that cute?
  8. "prefect irritating sound" on Driving Away Teens With High Frequency Noise · · Score: 1

    I find school prefects irritating too, but I wouldn't go this far!

  9. Re:I can. on How To Write Unmaintainable Code · · Score: 1
    And of course if I want a charming and lovely wife, well, they tend to be attracted to people with money.
    You seem to be confusing the terms "charming and lovely" with the term "gold digger".
  10. Re:That's Friggin Brilliant... on RISK The Game On Google Maps · · Score: 5, Funny
    The good old set had counters made of *wood*, youngster.
    Wood? You had wood? When I was a lad our counters were fashioned from dried turd.
  11. Re:Books and Papers on Java Puzzlers · · Score: 1
    Well, the poster had said that nobody reads computer books.
    Sorry, I missed that. The nature of /. is that you don't always see the context of what of has been said, which is why I always include the relevant context as a quote. Sorry if my comment seemed harsh, I also spend a lot of time reading computer related material, but not quite as much as the GP.
  12. Re:Well its got the buzzwords on Morfik and Rapid Development of Modern Web Apps · · Score: 1
    Couldn't they just iterated the development of it on itself; they could have finished it in a few months.
    I hear their next app "Bullshit-Bingo Buzzword Content Generator for Marketdroids" is expected in the next few days.
  13. Re:Because characters aren't numbers. on Java Puzzlers · · Score: 1
    FYI, 'char' doesn't really count because it isn't actually a number
    You said primitive, not number. This is /. and if you post factually incorrect stuff, expect people to correct you.
  14. Re:Exactly my point on Java Puzzlers · · Score: 1
    Why can't Java just have an "unsigned" keyword like in C++ and let the developer do what he/she wants?
    Because some guy designed it that way back in 1994. So there.

    PS. I don't know what he was thinking either.
  15. Re:Books and Papers on Java Puzzlers · · Score: 1
    Interestingly, I own an assortment of books, spend most of my time that isn't in a lab in a library, and read about 6-7 hard-copy academic papers a week, in addition to an assortment of books.
    Interestingly? Do you really think people are interested to read you boast about how nerdy you are?

    *snore*

    Bring on the paint drying, I need some real entertainment.
  16. Re:Thats the whole point of the "puzzler" on Java Puzzlers · · Score: 1

    The biggest joke is that in Java byte is signed and char is not. Semantically speaking, neither are numerical types. Why do I need a sign on my byte?

  17. Re:Thats the whole point of the "puzzler" on Java Puzzlers · · Score: 1
    Conditional branches on comparisons between data of types boolean, byte, char, and short are performed using int comparison instructions (3.11.1) Note that no operations exist in the bytecode to do math on chars. Thus to get the results, the char is implicitly casted to an int, processed, then cast back to a char as necessary.
    And the GP said: "chars are treated just like numbers in Java", to which you said: "incorrect". So by your logic, shorts are not treated like numbers in Java either... Nice work, Einstein.
  18. Re:Because characters aren't numbers. on Java Puzzlers · · Score: 1

    I noticed your correction about the signed/unsigned bit, the point of my post was to point out that char is unsigned (you said all primitives are signed).

    Actually in UTF-8 some characters are single byte.

  19. Re:Lot's of nice words, but where is the software? on Morfik and Rapid Development of Modern Web Apps · · Score: 1

    Ah sorry, bad wording on my part. I actually meant the database engine and middleware crap that Morfik uses.

  20. Re:Languages & Morfik on Morfik and Rapid Development of Modern Web Apps · · Score: 1
    You can't be serious. The very worst thing about the AJAX phenomenon is that is has lended credibility to that godawful language.
    Ah yes, the world's most misunderstood programming language.

    You might find that most of your beef with Javascript lies with its common implementations in web browsers, an entirely different thing to the language itself, and something that people often get confused.
  21. Re:Lot's of nice words, but where is the software? on Morfik and Rapid Development of Modern Web Apps · · Score: 3, Insightful
    and it creates for you an executable that has Apache and Firebird embedded in it

    Good god.
    Welcome to the 100Mb calendar application.
  22. Re:Lot's of nice words, but where is the software? on Morfik and Rapid Development of Modern Web Apps · · Score: 1

    Not only Apache and Firebird, but a database engine and all the other middleware crap that it uses.

  23. Re:master of the obvious (SPOILER) on Java Puzzlers · · Score: 1

    It seems a bit odd that they made chars behave like integers if they didn't want people to use them as integers.

  24. Re:master of the obvious (SPOILER) on Java Puzzlers · · Score: 1
    Yeah, in practice this sort of thing is mainly irrelevant, because you wouldn't actually USE chars like that.
    On the contrary, people use chars like that all the time.
    Imagine you want to do:
    if (c >= 'a' && c <= 'z')
    Quite useful really.
  25. Re:Because characters aren't numbers. on Java Puzzlers · · Score: 1

    I hope there are no double byte characters in that text file.