Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Re:It's not Google's fault. It's Mozilla's. (Score 1) 129

In other words pretty much exactly what some tried to say when Google first launched Chrome, except for OSS zealots who were blinded by their Mozilla support and "do no evil" slogan.

For Google open source is not a goal, it's a tool. Google funded Mozilla to run a browser war by proxy, as an open source and non-profit organization Mozilla could get massive support from organizations and volunteers that Google never could and a much higher tolerance of bugs and broken functionality. And I mean that both with respect to internal bugs as well as broken web sites due to MSIE-only code. As a means to an end to push a standards compliant web for Google to profit from it was a success.

With Android Google again used open source as a battering ram against an entrenched monopoly, this time against Apple in smart phones. Once again a host of unlikely allies - pretty much everyone except Apple and Nokia, really - jumped on board along with the open source rah-rah and low cost clone manufacturers looking to get a free ride. That you could have things like CyanogenMod and get root on your phone was new - even though some manufacturers blocked that it was a step up from the all-closed platforms.

I'm not saying those are bad things, but those mutually beneficial interests come to an end. Once we've been released from the old stranglehold, Google wants to make a new one with themselves in control. I don't think I can make a catchy acronym for it like embrace-extend-extinguish but it goes something like commodify-bundle-obsolete:

1. Commodify the functionality through open source
2. Bundle it with Google APIs/services
3. Let the open source version toil in obsolescence

Search results are still a major driver of Google's revenue. The default search engine is defined by your browser, the default browser is defined by the platform so from their perspective pushing Android and Chrome both makes very much sense - if you're using a Google product you'll never be pointed anywhere but a Google service. Chrome is also a vital part of that "all-or-nothing" bundle Google is selling to make companies use Google Play which is now their second cash cow.

Firefox is no longer a partner against MSIE, they're a threat against the OHA bundle. If you can take AOSP and install Firefox with no further strings attached that's one of the many pieces you need to replace filled. The less alternatives you have, the more power Google has over the Android ecosystem. If you're still stuck in the mindset where MSIE had 95% market share you'll fail to see that your one-time ally is no longer on your team. They're on their own team, as every for-profit company eventually end up being.

Comment Re:What's in the EU water? (Score 1) 249

Now you know why I started to learn Mandarin a few years ago - yeah, I've accepted that I won't get far on Danish alone, and there are more people knowing Mandarin/Hindi/Spanish than English :)

Native speakers, yes. But whether you're in China or India or Spain the most popular second language is English. Functionally you're much better off because at almost any tourist destination you'll find somebody speaking English, while Mandarin is great if you go to China and pretty much useless everywhere else. English got presence in Europe (UK + EU really), North America (USA), Asia (India), Oceania (Australia) and Africa (several former colonies). I'm not going to argue the moral side of colonialism, just say that practically it's the only language with global reach.

Comment Re:What's in the EU water? (Score 3, Interesting) 249

That's kinda impressive - from experience, there aren't all that many Americans, that "do English well" :)

The quality of the English version is what it is. The quality of the non-English version is what it is plus all that was lost in translation, it's certainly not going to be better. The worst is when they move around on standard shortcuts, for example in MS Office all English versions has Ctrl-F as Find and Ctrl-B as Bold. In Norwegian Ctrl-F = Bold (Fet) and Ctrl-B is Find (Finn) and I absolutely hate it every time. And yet in the interest of sanity they do keep other English shortcuts like Ctrl-S = Save (Lagre), even though that makes no sense in Norwegian. Never mind that when you're working with code or databases there is no Norwegian C# nor SQL, so it all ends up rather Norwenglish when you try.

Don't get me wrong, I'm fond of my language when it comes to identity and culture. But when it comes to communication having global terminology and one way of doing it makes everything so much simpler. Yes, there's a whole lot of "English" speakers out there but any resemblance of a common tongue beats trying to use translators. It's something of a first world issue though as 16% of the world is still illiterate in their first language but I hope that in 100 years you could talk to at least half the world's population in one language.

Comment Those moon rocks sure look owned (Score 1) 213

Try not stealing one since the US government doesn't own them and I think you'll find yourself in jail. Any takers who'd like to bet otherwise? I think in practice this is resolved already, what you bring back to Earth is yours. The fun parts would be that nobody has mining rights, if you find a big gold vein there's nothing stopping another country/company dropping a mining rig right next to yours.

Comment Re:1024-fold (Score 5, Informative) 210

It takes a long time to compute the size of 20 files when a division by 1000 takes 300 odd cycles on a 10kHz machine. It doesn't take such a long time when a right shift 10 takes 1 cycle.

This must be the most clueless post about the 1000/1024 divide so far. It never had anything to do with the computer's performance, it's that when you build a digital computer a lot of things will be sizes of two because what you can address with n bytes will be 2^n. Physical memory, memory pages, caches, buffers, floppy and hard drive sectors all the "microunits" in the computer are powers of two. Hint: No actual hard drive gives you 1MB = 1000000 bytes because it's not divisible with 512, in reality they give you 1954*512 = 1000448 so they don't underdeliver. Actually make that divisible by 4096 for modern HDD drives with 4K (no, not 1000) sectors.

There is a single reason why computer scientists usurped the prefix kilo and that is because they needed to describe "one thousand and twenty four bytes" - or multiples of that - very, very often. They needed a shorter name, they never needed the unit "1000 bytes" and so "one kilobyte" became their shorthand for 1024 bytes. And unless you're really good at doing math in your head, tell me how much is seven kilobytes exactly? (And if you answer 7000 I'll slap you). We still say 512GB of RAM. Nobody wants to say 549.755813888 GB of RAM, because multiply that with a billion and you have how many bytes that is. It's not some nice, round number.

Either way you're going to run into some f*cked up conversions if you mix GiB and GB, which I'll use now for clarity. If you have 512GiB of RAM (hey, servers do) and load 512GB from disk, how much of your RAM have you used up? Now while you're calculating that, this other person who uses a GiB system says so that was like ~477 GiB so like ~35 GiB free? Or you have to say you have 549.8 (rounded) GB RAM and use exactly 512 GB. Of course in reality file sizes are probably a rather random size so you'll have two long floating point numbers. At least with base 2 you just have one, because you have exactly 512 GiB RAM.

And when you do have base 2 numbers then multiplication/division gives other nice base 2 numbers like 10 MiB / 2 KiB = 5 KiB. 10.485760 MB / 2.048 KB = how much? It's a lot uglier if you numbers are 2^n values, which again they will be a lot of the time. At least far more often than base 10 as long as you're working with the computer itself and not business data or whatever. If you for example want to make something fit in L3 cache to optimize and algorithm, the numbers will be in base 2. You can't "bugfix" your way out of that.

Comment Overkill much... (Score 1, Informative) 210

So the highest MP camera I could find in a normal store is 40 Mpix (Pentax 645D) * 14 bit RAW = 70MB/picture. So good for 70,000+ photos. Or the Panasonic HC-X1000 4K/24 & UHD/60p camera just released, 150 Mbps = 7-8 hours continuous recording. But I suppose it's good for when you want to carry 10 BluRays in your phone. Whoops, wrong format not microSDXC. I guess there's a niche for this since they made it, but I kinda fail to see the target market, unless it's the "give me the biggest and best you got" crowd.

Comment Re:Actually a good thing. (Score 3, Interesting) 215

Well, if you want Kickstarter to be your go-no go decision maker then you can't wait so long you're already pot committed, as they'd say at the poker table. If you're half finished and your Kickstarter fails, what do you do? Throw away all that work and start over on something else? Try to salvage it and publish something, even if it has lackluster appeal? Not to mention then you must go it alone, if you already know you can finish it alone do you really need Kickstarter? My impression is that Kickstarter works best when your "selling points" aren't your product but your reputation and history. I donated fairly big to the Musopen project because there was quite a bit of history to show that yes, they're serious about creating free music but lacked the funds to do it. I'd be very weary of people with just photoshop and powerpoint skills.

Comment Re:It's a bad sign (Score 1) 223

Well even if you got most people to agree this is a bad thing there's also the small problem of what line of action would ultimately make things better and not be horribly much worse in the meantime. It'd be an awful shame if it ended up being "meet the new boss, same as the old boss".as they too are corrupted by the establishment, now you have a third party whose politics you feel is nuts as well. Or perhaps I should say that the other way around, chances are they'd have to sell out to get to power otherwise they'd be fought tooth and nail every step of the way. There will be a massive gloom and doom campaign about all the horrors that would bring and people get scared. Even if what they have isn't fair the world isn't unicorns and rainbows and it could get a whole lot worse.

For example many of the people in the Arab spring, they topple a secular dictator in the hope of freedom and democracy and end up with extreme religious fundamentalists taking over the country. Granted, it probably wouldn't come to that but even if we take the Civil War that ended slavery and whatnot there's probably a whole lot of injured or dead soldiers and civilians, people who had lost someone or all their belongings or property who'd rather wish they'd let the Confederacy go. It's easy to point out the flaws in the old system. It's hard to make people believe in change. It's much harder still to make change. And no, I'm not trying to point out one politician in particular they all tend to backtrack on their promises once they get into office. What is going to make people believe you're actually going to be different?

Comment Re:In Google's Defense... (Score 1) 194

I also think you have to consider Google's risk/reward here. They wanted to pass the test and most of all they did not want to get involved in any accidents, even one where the car was driving technically correct but "unhuman" as that would be used in no small about of FUD. They passed, they got their license to drive, they got the PR and the news that they couldn't drive a roundabout two years ago is nothing compared to the bad PR they'd get for crashing in a roundabout.

And the railroad thing was just policy, it can't be that much harder than crossing a priority road. Or maybe they just hadn't bothered to implement that logic, since almost all crossings in central areas have signals/gates. I just checked here in Norway and all public roads now have that, there are ~3100 unsecured crossings but all on private roads.

Comment Re:Technobabble... (Score 1) 370

I think "a filesystem with ECC (like memory) and ACID (like a good database)" is as close as you come for an elevator pitch. I've had bits flip, whether it's in memory or on disk or in transit I'm not really sure but it happens. Like for example I create "known good" PARs for a 5GB video and later it fails CRC, If you use a hex editor compare tool it'll show a single bit difference. Backups are neat, but you really want control over bit rot - real bit rot - so you don't end up with slow corruption. ZFS pretty much makes sure that what you take backup of is good.

Comment Re:At $281, a bit expensive for a tablet CPU (Score 1) 51

Intel seems to be a full generation behind ARM in making efficient chips, but has used the 2 generation head start their fab has on everyone to cover that game, and then some now.

Intel has been very good at making efficient CPUs, but not systems. If you want to make a <5W SoC there's a whole lot of other skills you need than a 15-150W processor and Intel has clearly been on a steep learning curve there. Also they've been geared a lot towards efficient computing, while the chips that go into phones and tablets are far more about being efficient at idle and light load. Intel has been learning many new tricks to only power up what they need in the lowest possible power state for a short a time as possible. The improvements for a processor running at 100% load 24x7 has been far more moderate.

Comment Re:Can someone explain to me (Score 3, Informative) 123

You are currently modded +4 Insightful for having claimed, essentially, that the HST repair and upgrade missions could have all been done by unmanned systems. I could have modded you as you deserve. I could just ask for a citation - you're making an extraordinary claim there and you really do deserve to have to back it up or retract it. Instead, I'm taking a couple of months vacation from Slashdot

Good, because you're putting words in his mouth. I could do math with pen and paper, without computers and calculators and my answers would at least theoretically be just as correct but it wouldn't be cost-efficient at all. It's an apples and oranges comparison but Hubble cost:

From its original total cost estimate of about US$400 million, the telescope had by now cost over $2.5 billion to construct. Hubble's cumulative costs up to this day are estimated to be several times higher still, roughly US$10 billion as of 2010.

Space Shuttle program cost:

The total cost of the actual 30-year service life of the shuttle program through 2011, adjusted for inflation, was $196 billion. The exact breakdown into non-recurring and recurring costs is not available, but, according to NASA, the average cost to launch a Space Shuttle as of 2011 was about $450 million per mission.

The numbers we'd really like to know though is that out of those $2.5 billion to design and construct, how much would it cost to just make a new Hubble and launch it. Just the five servicing missions (confusingly named 1, 2, 3A, 3B, 4) alone at $450 million each - that's aggregate, not marginal cost though - would be $2.25 billion. It is certainly possible to argue that science would have progressed further without the Shuttle program, all things considered.

Slashdot Top Deals

THEGODDESSOFTHENETHASTWISTINGFINGERSANDHERVOICEISLIKEAJAVELININTHENIGHTDUDE

Working...