Slashdot Mirror


User: beelsebob

beelsebob's activity in the archive.

Stories
0
Comments
4,143
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4,143

  1. Re:So it is official. on Airbus Attacked By French Lawmaker For Talking To SpaceX · · Score: 5, Informative

    Uhhh, you realise that Ariane 5 has launched many many many missions successfully, and has a better reliability record than the US's launch vehicles, right?

    SpaceX is in fact the untested upstart in this situation.

  2. Re:Just in time. on Seagate Bulks Up With New 8 Terabyte 'Archive' Hard Drive · · Score: 4, Insightful

    You mean you got hit by the 7200.11 bug and didn't do any research into it to discover that it's a firmware issue with a simple fix?

  3. Re:Some experts even are wrong. on Sony Reportedly Is Using Cyber-Attacks To Keep Leaked Files From Spreading · · Score: 1

    Even if the second amendment were to cover this, the second amendment doesn't allow you to actually shoot someone (or to DDoS them).

  4. Re:As a Federal Inmate on Feds Plan For 35 Agencies To Collect, Share, Use Health Records of Americans · · Score: 2

    Why on earth would they not get to find out? While you're an inmate, they are directly responsible for your care. They need to know what is and has been wrong with you so that they can get that right.

  5. Re:Motives on Seeking Coders, Tech Titans Turn To K-12 Schools · · Score: 1

    Wow... I guess we shouldn't educate our children then, that way our skills will be forever valuable, because no one else will ever be able to do them.

    This is such an insightful comment, I just can't believe I didn't think of this huge breakthrough in cultural politics before.

  6. Re:All for poisioning the well on AdNauseam Browser Extension Quietly Clicks On Blocked Ads · · Score: 3, Insightful

    The justification is that it's not the site's revenue, it's the advertisement company's revenue. What you're doing is stopping them from harvesting your private data. The dick move is the company trying to grab my data, not me trying to stop them.

  7. Re:All for poisioning the well on AdNauseam Browser Extension Quietly Clicks On Blocked Ads · · Score: 2

    See, I'm far from a freetard who thinks he's got the right to other people's work. But...

    If your business model is to make content freely available, with no contract, in a format that's trivially modified, where it's known that there are tools for hiding advertisments, then, you're doing it wrong.

    If I walk through a mall, I'm perfectly at liberty to hold up my hand and cover up people's adverts so that I don't see them. The same is true on the internet.

  8. Re:.50 WHAT? on Samsung SSD 850 EVO 32-Layer 3D V-NAND-Based SSD Tested · · Score: 2

    The problem is, 50-60 US cents per gig would be pretty expensive by modern flash's standards.

  9. Re:.50 WHAT? on Samsung SSD 850 EVO 32-Layer 3D V-NAND-Based SSD Tested · · Score: 1

    But flash was already that cheap, so that would hardly be a breakthrough.

  10. Re:lowering price? on Samsung SSD 850 EVO 32-Layer 3D V-NAND-Based SSD Tested · · Score: 1

    The question is, were they already at 1% before they started stacking 32 on top of each other, because the drive firmware sure as hell can't cover up for 32%* of the drive being screwed.

  11. Re:HDD endurance? on Consumer-Grade SSDs Survive Two Petabytes of Writes · · Score: 1

    So then, 0.1 times what an SSD will take, even if you keep it for a decade?

  12. Re:If You Had An Electronic Currency on UK Announces 'Google Tax' · · Score: 1

    Actually, it is for every transaction, but it is paid only on the value added, and usually passed along to the next person in the buying chain.

    If I as company A buy bolts for a widget from company B, and pay £1 for them, and then sell my widget to person C for £5, I pay £1 VAT (and likely actually sell the widget for £6), and recoup £0.20 in VAT refunds. company B meanwhile pays £0.20 in VAT, and gets some smaller amounts in refunds because he bought the metal and tools from another company, etc.

  13. Re:Great on UK Announces 'Google Tax' · · Score: 2

    Of course they don't - governments are an entirely human construct, so they have no inalienable rights at all.

    However, the vast majority of society sees creating a pot of money from which we pay for shared resources as a valuable and useful thing. We then expect everyone to pay their fair share into said pot given that they are sharing said resources.

  14. Re:There's no point in shame on UK Police To Publicly Shame Drunk Drivers On Twitter This Christmas · · Score: 1

    If they have money to drink they can afford to pay for their own rehab. The taxpayers shouldn't have to shell out anything.

    Hmm? What makes you think that? Assuming we're talking about an alcoholic here (not just someone who had 3 drinks and then was dumb and drove home, which is actually more likely), most alcoholics will go out of their way to find the best price to alcohol ratio they possibly can. Typically they'll be shit faced on 2 £3 six-packs, are you asserting that you can get rehab for £6 a day?

  15. Re:Plans made by politicians not working out? on WHO Timeline for Ebola Containment Proves Hard To Meet · · Score: 1

    We can't even find the money to make sure that everyone in our own countries are treated without bankrupting them, what makes you think we'd be able to pay another country's medical bills too?

  16. Re:I agree on Finland Dumps Handwriting In Favor of Typing · · Score: 1

    "The Savon Sanomat newspaper reports that from autumn 2016 cursive handwriting will no longer be a compulsory part of the school curriculum."

    I mean... sure, it's slashdot tradition to not read the article, but to not even read the first 3 sentences of the summary...

  17. Re:Oh what do we do? on Finland Dumps Handwriting In Favor of Typing · · Score: 3, Insightful

    I'm sorry, but that's bullshit. The reason to learn and use cursive is because it's much more efficient in terms of writing large amounts.

    That's the point... (almost) no one does that any more. For those that actually at some point in their life write more than a few sentences in a row by hand, they certainly can go out and learn cursive. But to teach everyone to write cursive, because 0.01% of them at some point might have need to write out many pages of text, rather than just typing it (as 99.99% wold), is ridiculous. That time absolutely is better spent teaching people to type efficiently.

  18. Re:I agree on Finland Dumps Handwriting In Favor of Typing · · Score: 2, Insightful

    Man, it's amazing how many people who think they rock at writing, really suck at reading. They're not stopping teaching writing with pen and paper. They are stopping teaching cursive. Printing is faster for note taking anyway, cursive is just a way of trying to make your writing prettier.

  19. Re:Always do C first on Ask Slashdot: Objective C Vs. Swift For a New iOS Developer? · · Score: 2

    For reference, no, they don't actually do a bunch of copying between objects, they just abstract pointers behind pass-by-reference semantics. Swift even takes this one step further, and for structs/enums (which, like C, are pass-by-value), it implements pass-by-value using copy on write, so it in fact does even fewer copies than a C program would (without the programmer jumping through hoops to implement copy on write himself).

    There usually *are* more inefficiencies in high level languages (usually due to the fact that they do more small heap allocations), but the one you identified is not accurate.

  20. Re:Paid for by the English on Renewables Are Now Scotland's Biggest Energy Source · · Score: 4, Insightful

    None, Scotland gets 8% of the revenue for the UK, has 10% of the population, and pays 12% of the taxes. Scotland in fact (slightly) subsidises England.

  21. Re:ENIAC wasn't the first on How the World's First Computer Was Rescued From the Scrap Heap · · Score: 1

    As I've said several times through this thread - yes, it was. What it couldn't do (that ENIAC could) is store its program.

  22. Re:the first built in the US on How the World's First Computer Was Rescued From the Scrap Heap · · Score: 2

    No, Colossus was General Purpose - ENIAC was the first general purpose, stored program computer.

  23. Re:Except... on How the World's First Computer Was Rescued From the Scrap Heap · · Score: 3, Insightful

    Colossus absolutely was general purpose - it just wasn't stored program. You had to set it up fresh for each program.

  24. Re:What about long-term data integrity? on How Intel and Micron May Finally Kill the Hard Disk Drive · · Score: 4, Informative

    No, it doesn't. It doesn't protect you against losing data in a fire, it doesn't protect you against losing data to malware, and it doesn't protect you against losing data to making a mistake. All changes are automatically propagated across all disks. Backup protects you against losing data.

    What RAID 15 does is protects you against losing a day of work because one disk failed - that is, it protects against loss of uptime.

  25. Re:What about long-term data integrity? on How Intel and Micron May Finally Kill the Hard Disk Drive · · Score: 2, Insightful

    RAID doesn't protect against loss of data, that's what backup is for. RAID protects against loss of uptime.