Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:In a Self-Driving Future--- (Score 1) 454

Finding road edge boundaries in snow, at least, is actually a place where existing self-driving car systems do better than humans already. Keep in mind that they're not limited to the visual end of the EM spectrum.

For the rest, I'll defer to empirical studies on effectiveness under varying conditions. It's easy to think of corner cases -- but the real question, corner cases or no, is whether the average amount of liability incurred per hour of driving is greater or less than a human at the wheel.

Comment Re: In a Self-Driving Future--- (Score 1) 454

I guess, if you like the state or insurance companies telling you when and where you may travel.

The power of the state is one thing. On the other hand, doing harm to others without means to provide recompense is legitimately immoral even under reasonable Libertarian frameworks.

Motor vehicle insurance allows the externalities which would otherwise be created by individuals defaulting rather than being able to pay off debts they incurred to be priced by the market -- quite transparently, given as the profit margins are known and available to customers as well as shareholders. If you can't pay for the harm you're doing to others by an action, even as aggregated and normalized by the insurance industry, can you truly morally justify that act?

Comment Dalek? (Score 1) 140

Doesn't look at all like a Dalek to me, it looks more like something that Aperture Science would design. (And it would say "No hard feelings" if you pushed it over, assuming you could push over this lumbering 300lb thing)

Comment Re:Tetris is based on a Russian board game (Score 1) 37

The original game is fun to play. Last month at Retromañía in Spain we had the original game running on the Russian pdp-11 clone for which it was created (unfortunately the pdp-11 clone had to be emulated - we actually have a real pdp-11 but it's a DEC built one and the original code won't work very well on it due to the lack of the Cyrillic character set). It's a good bit harder than the PC version which I think was the next version of Tetris to be written.

Comment Re:Meet Streisand (Score 1) 307

You should expect a basic, clean, functional room though with what was advertised to come with the room.

I've stayed in a £35 a night Blackpool B&B (Windsor House or something it was called) and it was perfectly acceptable. The room wasn't huge but it was clean and comfortable, the shower worked fine, it had free WiFi, and a full English breakfast included and was much better value than most so-called "low cost" hotels like Premier Inn. I stayed recently in a 25 euro a night hotel in the centre of Zaragoza in Spain and this was similar - no way could you describe it as "luxury" but it was clean, the bed was comfortable, the shower worked just fine and so did the WiFi. It is perfectly possible to have an entirely acceptable hotel room for this price.

Comment Re:Hybrids (Score 1) 377

Thinking that farmers from Ghana will not be able to make a rational decision between buying industrial seed every year or saving whatever strain they have already from year to year is a not so subtle form of racism.

Or maybe what is or isn't rational varies based on local conditions. Capital availability is a concern. Distribution infrastructure (and differences in cost based on same) is a concern.

Ghana is one of the best-governed countries in its region, but even so, there's still an infrastructure gap -- a decade ago (which is as recent as I had knowledge) you had daily rolling blackouts even in the capitol as a matter of course; electrical generation capacity wasn't growing with demand.

Accusing those who disagree with you of assuming anything other than rational behavior in light of full knowledge of local conditions strikes me as starkly unreasonable.

Comment Re:Or just practicing for an actual job (Score 2) 320

Sorry kids, Library use is copying. Copying is not a bad thing, you save a lot of time by doing it.

Shared libraries or static libraries?

Static library use involves copying at the link phase. Shared library use doesn't. Depending on your license, the distinction can be legally significant.

And, well, that's the thing. Those of us who are professionals think about liability... which is why we can actually find a large company willing to buy our startups without doing an absolute freakout (or requesting a huge discount for cost of reimplementations) analyzing the codebase during due diligence.

Comment Re:Tempting (Score 1) 181

Multi-process architecture... I've not really noticed a problem with the threaded one, and Firefox already sticks flash objects in a separate process. So what's the real draw

Isolation. The same reason you want different apps to have their own processes instead of having the whole of userspace in one big blob. You can give processes reduced privileges to reduce the scope of exploits, hangs and crashes don't take down more than they have to, and leaks don't force you to restart the entire system to recover resources.

Plus it makes for simpler concurrency. Kind of handy when you've got a stop-the-world garbage collector if you can just split the world into many smaller independent units, each able to run at the same time and each with an order of magnitude less work to do and no synchronisation to worry about.

64bit... again, bragging points about how many bits you use, no functional difference to anyone

ASLR is a fuckload more effective when it has a reasonably sized address space to work with, and 2^32 is miles away from being reasonable. It's the difference between an attacker having to guess one of 8 locations and one of 8 billion. Plus, memory mapping things is awesome, and also a fuckload easier with a reasonably sized address space.

And hey, some of us actually use our browsers quite a lot. Mine's eating 5.5G right now. So many windows and tabs, and absolutely no fucking reason whatsoever why that should be considered even slightly unreasonable.

Slashdot Top Deals

Software production is assumed to be a line function, but it is run like a staff function. -- Paul Licker

Working...