Slashdot Mirror


User: DeathFromSomewhere

DeathFromSomewhere's activity in the archive.

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

Comments · 459

  1. Re:Get over it already on Ask Slashdot: Life After Firefox 3.6.x? · · Score: 1

    So clearly the solution is to stay exposed to known exploits for weeks or months at a time. Let me know how that works out for you.

  2. Re:Get over it already on Ask Slashdot: Life After Firefox 3.6.x? · · Score: 1
    All I said is it's older then you seem to think it is. People are easily trolled I guess.

    Get off my lawn!

    Yawn.

  3. Re:Get over it already on Ask Slashdot: Life After Firefox 3.6.x? · · Score: 1

    A Q6600 is 5 years old. You do remember what industry this is right?

  4. Re:Get over it already on Ask Slashdot: Life After Firefox 3.6.x? · · Score: 4, Insightful

    The problem is your employers asinine update policy, not Firefox. Expecting to run the same version of any software with no security updates for a year is ridiculous.

  5. Re:Lovely and Intuitive? on Microsoft Launches Windows 8 Consumer Preview · · Score: 1

    I don't believe that you have been using windows for as long as you claim and you don't know the ctrl+b shortcut. Troll harder next time.

  6. Re:Lovely and Intuitive? on Microsoft Launches Windows 8 Consumer Preview · · Score: 1

    I wonder this myself. Looking at the comments on this site it's amazing how bad "power users" are at adapting to change compared to more typical users. Not just this site either, I know a few people that still insist on running XP with windows update turned off because they think it's going to eat all their RAM or something.

  7. Re:Lovely and Intuitive? on Microsoft Launches Windows 8 Consumer Preview · · Score: 3, Insightful

    I wouldn't doubt it. It's not something they show in the videos very often. It's not exactly new and there are so many other changes that the start menu search seems to get forgotten. That and it's nowhere near as discoverable as the search box is on windows 7.

  8. Re:Lovely and Intuitive? on Microsoft Launches Windows 8 Consumer Preview · · Score: 4, Informative

    Hit the windows key, type the first few letters and hit enter. Exactly the same as you would do before.

  9. Re:Hey, the pirates can help on Master Engineer: Apple's "Mastered For iTunes" No Better Than AAC-Encoded Music · · Score: -1, Offtopic

    How do you know that you aren't the one that's wrong? Things which seem obvious often are vastly more complicated. Reply and find out instead of trying to censor.

    Overrated is for a post that found it's way to +5 but really only deserves maybe a +2 or +3. Here is the slashdot mod faq. You should read it before the next time you mod.

  10. Re:Hey, the pirates can help on Master Engineer: Apple's "Mastered For iTunes" No Better Than AAC-Encoded Music · · Score: -1, Offtopic

    If someone is wrong then you should reply explaining why instead of moderating. The moderating system on slashdot isn't there to tell people what's right or wrong; it's to filter useful comments from trolls. -1, Wrong is intentionally missing.

  11. Re:Hey, the pirates can help on Master Engineer: Apple's "Mastered For iTunes" No Better Than AAC-Encoded Music · · Score: 0

    FLAC is not inherently CD quality.

  12. Re:In a country that drinks wine like water? on France's Bold Drunk-Driving Legislation - Every Car To Carry a Breathalyzer · · Score: 0

    Ethanol has been removed from mouthwash for years

    July 1985

  13. Re:who's paying for it? on France's Bold Drunk-Driving Legislation - Every Car To Carry a Breathalyzer · · Score: 1

    If you're not sure, gather additional information so you can make an informed decision. Wow that was hard.

  14. Re:who's paying for it? on France's Bold Drunk-Driving Legislation - Every Car To Carry a Breathalyzer · · Score: 1

    Just read the article (a terrible idea, I know) and it never said that people will be required to use the breathalyzer before driving. It said they will be required to have one in their cars so they can test themselves if they feel the need to.

  15. Re:In a country that drinks wine like water? on France's Bold Drunk-Driving Legislation - Every Car To Carry a Breathalyzer · · Score: -1, Flamebait

    Please stop perpetuating myths. Ethanol has been removed from mouthwash for years and it never had an effect on breathalyzer tests anyways. http://en.wikipedia.org/wiki/Breathalyzer#Breath_analyzer_myths

  16. Re:who's paying for it? on France's Bold Drunk-Driving Legislation - Every Car To Carry a Breathalyzer · · Score: 4, Insightful

    The point is so that people have the tools to test themselves before driving home instead of guessing how drunk they are. No crazy conspiracy theory needed.

  17. Re:Car Owners will rebell.... on France's Bold Drunk-Driving Legislation - Every Car To Carry a Breathalyzer · · Score: 1

    If $2 is a financial burden to you, you probably shouldn't be driving the car. RTFA...

  18. Re:who's paying for it? on France's Bold Drunk-Driving Legislation - Every Car To Carry a Breathalyzer · · Score: 0

    Huh? Which ass did you pull that number out of?

  19. Re:Truce on Push Email Suspended On iPhones In Germany · · Score: 1

    Enjoy your 1 hour battery life.

  20. Re:That's pretty presumpyuous. on Your Next TV Interface Will Be a Tablet · · Score: 2

    I don't have a tablet, nor will I until I can get one that's not tied to a phone contract.

    Today's your lucky day! Pretty well every tablet can be bought without a contract. The ones that can are the exception, not the rule.

  21. Re:In practice it's like a different language. on Stroustrup Reveals What's New In C++ 11 · · Score: 1

    Let me be a bit more descriptive. The code that I was referring to is a switch statement that branches on a hacky enum in order to cast a pointer down an inheritance hierarchy and perform the same calculation on a series of different types. The difference between the branches is literally what pointer type the base pointer gets casted to.

    class A
    {
    public:
    enum Type
    {
    TYPE_A, TYPE_B, TYPE_C
    } mType;
    void Foo ();
    };

    class B : public A
    {
    void Foo ();
    };

    class C : public A
    {
    void Foo ();
    };

    A * pA = GetA ();
    switch (pA->mType)
    {
    case A::TYPE_A:
    pA->Foo ();
    break;

    case A::TYPE_B:
    ((B*)pA)->Foo ();
    break;

    case A::TYPE_C:
    ((C*)pA)->Foo ();
    break;
    }


    Maybe I'm projecting my frustration and this type of horrible hack is nowhere near as common as I think it is.

  22. Re:In practice it's like a different language. on Stroustrup Reveals What's New In C++ 11 · · Score: 4, Insightful

    C with classes is a derogatory term used to describe programmers and code which wraps C-style code and various bad practices with classes. You end up with things like custom string and array classes, using memcpy instead of std::copy, printf instead of std::cout, FILE* instead of std::fstream, copy paste instead of inheritance and void* everywhere.

  23. Re:"Not a major overhaul"? on Stroustrup Reveals What's New In C++ 11 · · Score: 1

    Sometimes I get the feeling that my company is the only one left using VC++ 6. Our attempts at migrating get 10% completed and then abandoned when the next ultra critical super important demo/contract shows up.

  24. Re:I want auto! on Stroustrup Reveals What's New In C++ 11 · · Score: 2

    This is a C++ thread. We don't have the fancy refactoring tools that C# has.

  25. Re:Optional GC = Bad on Stroustrup Reveals What's New In C++ 11 · · Score: 2

    which is in the new standard

    No it's not. Vendors have always been allowed to tack on GC. None of the big ones do.