Slashdot Mirror


User: Old+Wolf

Old+Wolf's activity in the archive.

Stories
0
Comments
1,798
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,798

  1. Re:HOAX REVEALED! on "Time-Traveler" Busted For Insider Trading · · Score: 1

    This is CmdrTaco we're talking about here

  2. Re:Priorities on More Thoughts On How to Wire Senegal · · Score: 1

    Come on, to do the things you mention requires an improvement in the economy, and a computer is the perfect way to do that. As well as displaying language so they can practise reading, there are an endless amount of websites which teach information and skills.

    In first world countries, putting on your CV "I learned it on the internet" won't hold much water, but in Ghana where the average person is less science-savvy than your 6 year old kid, it will bring them forward in leaps and bounds.

    There are endless examples of this working in other countries. Unfortunately I am late for work so can't find links, but maybe someone else can... Nepal and Jordan come to mind quickly.

  3. BASIC Programming 101 on Internet via the Power Grid, Again · · Score: 1

    Yeah and what you gonna do when you need to add a line between 3 and 4 huh?

  4. Re:Ok, state machines on Practical Statecharts in C/C++ · · Score: 1

    This might be useful for game programming. Instead of creating dozens of event handlers for my gui-based state game, and having lots of enums and switch statements everywhere and really getting lost in spaghetti, I could make one of these statecharts and code a FSM for it.

    Is there a good visual representation of states that is more efficient than listing them out in words? (sort of like flowcharts are easier to look at than "IF (blah) GOTO (blah) ELSE (blah)")

  5. Re:What the heck? on Anger as a Software Design Philosophy · · Score: 1

    They're saving that for the version with support for internet toilet roll holder

  6. Re:A bit limited surely... on Anger as a Software Design Philosophy · · Score: 1

    As long as you don't create an email server -- they don't allow unprintable characters

  7. obligatory jokes etc. on Internet Enabled... Toilet Paper Dispenser · · Score: 2, Funny

    seriously, enough with the crap jokes. back to the crapflooding.

    aah i'm on a roll

  8. obligatory jokes etc. on Internet Enabled... Toilet Paper Dispenser · · Score: 2, Funny

    now we can cut out the middle man and feed CNN.com straight down the bowl!

  9. Informative post on Steam Heat to High Speed Internet · · Score: 1

    This is the same Wilkes-Barre as in the club who developed the Traxler variation in chess.

  10. pendantic ass on Microsoft Pirating Their Own Software? · · Score: 1

    an ass that hangs from your neck?

    is this an asshat you can take off and put on again later without losing it? Great idea!

  11. Re:Yes, Microsoft is pirating their own software. on Microsoft Pirating Their Own Software? · · Score: 1

    The name 'UNIX' is copyrighted by AT&T, or something.

  12. Re:Renewed faith? on A New Spin On Physical Phenomena · · Score: 1

    It seemed to me that they were saying that quantum spin may actually be a case of this spin they have discovered, rather than as some 'weird' phenomenon that has been observed but nobody really knows where it comes from.

  13. Re:Silly Scientists on A New Spin On Physical Phenomena · · Score: 1

    As the article says, if they had developed a pole as you suggest then there would have been some translational motion between the spheres (ie. they would have moved closer or further from each other). As this was not observed, the researchers eliminated this as a possibility.

  14. Re:sPIN on A New Spin On Physical Phenomena · · Score: 1

    Actually the spinning balls aren't electrocuted, they just have a potential (no circuit). This has probably happened to you but the force is so small you wouldn't have noticed

  15. Re:Equipment used on A New Spin On Physical Phenomena · · Score: 0, Troll

    And McReceiver labs? :D

  16. Re:Sponataneous Spinning? on A New Spin On Physical Phenomena · · Score: 1

    If there's only 1 input to the ball (ie. a wire) how can voltage be applied to it?
    or are there wires coming off the bottoms of the balls too?

  17. Re:Output? on A New Spin On Physical Phenomena · · Score: 1

    The article points to it being useful in gaining further understandings (eg. at the quantum level).

    BTW, if something is spinning then you can extract energy from it by applying friction

  18. Most successful hoaxes on Top 100 Hoaxes of All Time · · Score: 1

    has got to be Weekly World News. This fake news site seems to have its stories pop up on other non-fake sites, eg. Yahoo and Fark.

    I guess that, unlike the Onion, the stories are more designed for hoaxness than for humorous effect, so they might skip by someone not paying attention?

  19. Re:What is unchecked buffer size problem? on Security Expert Paul Kocher Answers, In Detail · · Score: 2, Informative

    gets() lets the user type as much as they like. But in your program you can only have allocated a set size for the password (eg 100 bytes). So if they type for long enough they can go past the end of the password space, and their typing will start overwriting other parts of memory. If they know what they are doing they can type the right control characters and give themself a root shell.

    It's a problem when you have programmers who don't understand buffers, using a language without buffer checking.

  20. Re:I'm so ashamed... on Security Expert Paul Kocher Answers, In Detail · · Score: 1

    Maybe you can answer my question for me then -- why on earth would you use memcmp(,,strlen()) instead of strcmp() ?

  21. Re:Aggghhhhh! on Security Expert Paul Kocher Answers, In Detail · · Score: 1

    I cannot think of a reason someone would use memcmp(,,strlen()) instead of strcmp() . It's inconceivable that they would have learned about mem functions but not string functions. Can you?

  22. Re:For the security-lingo disadvantaged... on Security Expert Paul Kocher Answers, In Detail · · Score: 1

    Ternary output :)

  23. Re:You cannot transcend the laws of nature on More on Lenses with a Negative Index of Refraction · · Score: 1

    Darwin beat you to it, dude

  24. Re:template versus derivation on C++ Templates: The Complete Guide · · Score: 1

    You seem to be complaining about documentation here .. if a function does anything possibly dangerous (eg. assuming \0) you should mention that in the documentation (or arrange that it's obvious from naming or style conventions). But surely this argument applies to both cases. At least with the template you have access to all the code, rather than the derived case where the original code may not even be given (just a header and a library).

  25. Re:Are templates always necessary? on C++ Templates: The Complete Guide · · Score: 1

    Well you're basically arguing that functional languages are better than C++ . Which is rubbish, each has its own place.

    BTW how often do I use casts in C++? (ignoring dynamic_cast which is an integral part of polymorphism) umm, once a month? If you design well, as you keep going on about, you won't need weird casts all over the place.