Slashdot Mirror


User: Wootery

Wootery's activity in the archive.

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

Comments · 1,701

  1. Re:Apps which require location? on Ars Takes an Early Look At the Privacy-Centric Blackphone · · Score: 1

    This is good enough to suspect that phone is backdoored

    Disgree. It's not enough.

    Nice touch about putting blackphone homepage in .ch domain

    Any idea why they did that? Just to try to distance themselves from America? Weird.

  2. Re:Apps which require location? on Ars Takes an Early Look At the Privacy-Centric Blackphone · · Score: 3, Insightful

    Yes. I know. Let's try that again: so you're just assuming the existence of backdoors in the Blackphone specifically which make the mic accessible to *.gov?

    Unless I missed something, we don't know for sure one way or the other whether the techniques the FBI have used to do that to other phones, will work on the Blackphone.

  3. Re:Apps which require location? on Ars Takes an Early Look At the Privacy-Centric Blackphone · · Score: -1, Troll

    You can run all the apps you want but your still walking around with a beacon that has a mic and other neat features to offer any interested city/state/federal/mil/.com

    So you're just assuming the existence of backdoors which make the mic accessible to *.gov?

  4. Re:Kernel bloat on Are the Hard-to-Exploit Bugs In LZO Compression Algorithm Just Hype? · · Score: 1

    It seems that leaving out a lot of that stuff would leave us with a leaner and nicer kernel. A lot of the compression stuff there is just because Linux has to have "everything".

    Look like those in charge disagree, and presumably they have their reasons. There are downsides to being lean-and-mean, of course.

    I doubt if you even know what kind of things it is used for.

    You're right.

  5. Re:Kernel bloat on Are the Hard-to-Exploit Bugs In LZO Compression Algorithm Just Hype? · · Score: 1

    Because it can.

    Serious. That's why.

    Do you actually know about this specific feature of the kernel, or are you just trying to appear cynical and wisened?

    One suspects it's there because it's actually used by something. One also suspects it's used for a reason.

  6. Re: Good. on Google Starts Removing Search Results After EU Ruling · · Score: 1

    I sincerely doubt it. Show me good numbers demonstrating that more people are killed by Muslims than Christians/atheists in the UK. If you cannot, we may assume you're just talking crap, and have no better basis for your views than religious prejudice.

    Actually, I'd settle for a demonstration of the proportional equivalent of the claim.

    You may not be aware, but thus offsetting the risks is not a subjective claim. It is a factual one. And I'm pretty damn sure it's bullshit.

  7. Re:Good. on Google Starts Removing Search Results After EU Ruling · · Score: 2

    On the otherhand, I do have a valid fear of that from muslims.

    Err, in which country, pray?

    Here in England I'm pretty sure I'm more likely to be harmed by a Christian or atheist than by a Muslim, just by virtue of the fact that there are more Christians and atheists than Muslims. My 'valid fear' doesn't really run across religious lines.

  8. Re:old news from decades ago on Overeager Compilers Can Open Security Holes In Your Code · · Score: 1

    I presume the compiler makes those checks whenever it can. The 'purity' scheme is really about helping the programmer, not the compiler, of course.

  9. Re:old news from decades ago on Overeager Compilers Can Open Security Holes In Your Code · · Score: 1

    That is a more restricted definition. You need a stricter definition to safely elide code.

    You're right. Now that I look at the 'concession to practicality' section, it's clear that purity and non-escaping arguments aren't enough to guarantee safe elision.

    It seems to check if the function can modify it's arguments (for example, by zeroing them).

    I don't get you. A pure function is allowed to perform mutation via reference-type (or pointer-type) arguments.

  10. Re:Not in USA on Supreme Court Rules Cell Phones Can't Be Searched Without a Warrant · · Score: 1

    Sure: finances.

  11. Re:Because I'm lazy on Why Software Builds Fail · · Score: 1

    Riiight... nothing to do with the fact that programming is hard.

  12. Re:What's the solution? on The Security Industry Is Failing Miserably At Fixing Underlying Dangers · · Score: 1

    And what about a bug in the sandboxing?

    Seems simple enough: the sandbox itself is critical.

  13. Re:Inflation of the word 'genius' on Match.com, Mensa Create Dating Site For Geniuses · · Score: 1

    +4 Insightful. Good start. Now get +5 Brilliance and you're set.

  14. Not the first time... on Trivial Bypass of PayPal Two-Factor Authentication On Mobile Devices · · Score: 1

    Not the first time this has happened. PayPal are clowns.

    In 2009 (ctrl-f for "bypass the use").

    In 2011 (ctrl-f for "don't have your football"), where they allowed use of common-knowledge as a fallback if you didn't have your 'football'.

  15. Re:Because I'm lazy on Why Software Builds Fail · · Score: 1

    So what you are saying is that you are better than the thousands of folks working on gcc?

    If compiler warnings were a 100% reliable way of indicating that something's awry, they'd be errors. They're necessarily broad generalisations. That's not to say they're useless, but saying no compiler-warning should ever be permitted is hardly self-evident.

    I've worked on a large codebase where we were required to build with no compiler-warnings, so it's certainly possible. (Well, I guess that depends on how pedantic your compiler is, really.)

  16. Re:IPE on Mozilla Introduces Browser-Based WebIDE · · Score: 1

    You could say that of any cross-platform GUI toolkit, but it doesn't mean they're useless.

  17. Re:old news from decades ago on Overeager Compilers Can Open Security Holes In Your Code · · Score: 1

    In D's definition of a pure function, that's still pure.

    Pure functions are functions which cannot access global or static, mutable state save through their arguments.

  18. Re:They are dumping... on UK Man Sentenced To 16 Months For Exporting 'E-Waste' Despite 91% Reuse · · Score: 1

    Which was my point. No-one is being put out of business.

    Also, the quote in your sig goes back way further than some slashdotter.

  19. Re:old news from decades ago on Overeager Compilers Can Open Security Holes In Your Code · · Score: 1

    Right, which is special treatment. The compiler 'knows' that memset is what D calls a 'pure function'. If memset were just an arbitrary function, about which nothing else was known, it would not be possible to elide the call, as this might eliminate side-effects.

    Perhaps though memset is an inline function and the compiler is able to figure out its 'purity' rather than having it listed specially.

  20. Re:old news from decades ago on Overeager Compilers Can Open Security Holes In Your Code · · Score: 1

    GCC is giving memset special treatment, right? If GCC didn't know whether memset would side-effect, it wouldn't elide the call. One could presumably work-around this problem by creating a static library defining memset_secure, which just called memset. When calling memset_secure, GCC wouldn't know whether it side-effects, and so wouldn't elide the call.

    (Unless you're allowing link-time optimisation. You'd have to be sure your memset_secure static-library was a real machine-code static library.)

    Aside: in the D programming language, it is possible to express 'purity' of a function, and so enable this kind of function elision for arbitrary functions.

  21. Re:Very good point above on UK Man Sentenced To 16 Months For Exporting 'E-Waste' Despite 91% Reuse · · Score: 1

    Well yeah. Wasteful consumerist societies.

  22. Re:They are dumping... on UK Man Sentenced To 16 Months For Exporting 'E-Waste' Despite 91% Reuse · · Score: 1

    They are "dumping", as in selling below cost! What this does is undercut the new product business, and someone was losing money.

    That would be a problem, if they were putting African TV manufacturers out of business. I don't think they are, though...

    Nothing better than to have competition thrown in jail.

    Dumping has nothing to do with jailing the competition.

  23. Re:Why are all of you so naive ? on Emails Show Feds Asking Florida Cops To Deceive Judges About Surveillance Tech · · Score: 1

    Help Brendan pay off his student loans [brendansstudentloans.com]

    You're asking for free money from strangers, to pay off your student loans?

    Classy. I tend to donate to more urgent causes, personally.

  24. Re:Spoils of war. on US Marshals Accidentally Reveal Potential Bidders For Gov't-Seized Bitcoin · · Score: 1

    No. The forces at play would be massively diluted, so the issue would be lessened enormously.

    To higher government, the money raised in these auctions is just spare change.

    Incidentally, this is precisely how things are done in the UK. The proceeds of traffic tickets are handled similarly.

  25. Re:A more vague description, there ain't on Mozilla Working On a New Website Comment System · · Score: 1

    Got anything to back up that cynicism?

    I'm not convinced Mozilla are sellouts.