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

 



Forgot your password?
typodupeerror
×

Comment Signal jamming, friend or foe (Score 2) 622

Drones can be hacked. Their signals jammed or spoofed. Their satellites destroyed. Their home bases attacked or infiltrated. They work very well against low tech enemies like Iraq and Afghanistan. Against the Russians or Chinese it would be a different matter, especially when the chips in a drone originate in China. War is an ever-changing game where every move has a countermove. The nice thing about human pilots is that they understand their orders and the underlying reasons for those orders. They can change their minds quickly and use situational information that drones would lack.

I'm not sure that g-force matters all that much in an era of smarter, faster missiles. When was the last real movie-style dogfight?

On the other hand, there is no question that drones are useful and will continue to improve at a rapid pace. Eventually they will replace most of our planes. With longer flight times we might be able to replace half of our aircraft carriers with land-based drones, but the inevitable cost overruns won't magically disappear.

Comment Re:ML drops support for my perfectly capable Mac P (Score 1) 230

I couldn't agree more about Apple abandoning perfectly fine, expensive hardware. My 8-core, 3GHz MacPro2,1 can still run circles around most of Apple's current lineup and yet it won't run Mountain Lion. I specifically waited for "64-bit" hardware so it would last longer. If new MacPros weren't so damn expensive or offered something more than compatibility in return it wouldn't be quite as annoying.

Comment Too many connections (Score 1) 135

SPDY solves *a* problem, but not *the* problem. The root of the problem today is that loading a simple web page requires 20 or more separate connections: images, ad networks, tracking systems, social network links, 3rd party comment systems, javascript libraries, css, etc. Somehow all of that content needs to be coalesced into fewer connections.

Comment Re:Can somebody explain NoSQLers to me? (Score 1) 194

Have you ever used a relational database?

Yes, I've cursed them for more than 25 years because trying to fit desktop application storage into relational models nearly always creates more work than necessary.

Key-value storage is merely a two-column table, for instance.

Except that the column types are fixed. What happens if keys point to different types of data (images, text, movies, urls, other tables)? Do you create one column for every type of data that may be used into the future? One table per data type? Do you misuse blob columns? One of the nice things about sqlite is that it doesn't force developers into such a restricted world view.

Just because you can haul anything in a semi truck doesn't mean that a semi truck is the optimal vehicle for hauling everything. Sometimes it's better to use 5 minivans. Do you seriously think that Google Maps are implemented in BigTable because the folks at Google were too stupid to use a relational database?

The OOP to Relational mismatch is described at: http://en.wikipedia.org/wiki/Object-relational_impedance_mismatch

Comment Re:Can somebody explain NoSQLers to me? (Score 3, Insightful) 194

Relational databases work well for certain types of data but to assume that tables of rows and columns work for every need is silly.

Relational databases are inherently hard to scale because they mix data together that doesn't necessarily need to be together. If there's no reason why Bob and Alice's records should be in the same table or on the same machine then they shouldn't be. You can avoid all contention by distributing each individual's records on unique or underutilized machines.

Relational databases do not work well for storing hierarchical data like a file system or an object-oriented data store. They do not work well for large blobs like movie files or for unstructured documents like medical records. Because of their rigid structure, they do not version well because copying records to older versions of the schema loses data - if the column doesn't exist there's no place to put the data (imagine if application versions 1 and 2 have to read and write to the same database).

Relational databases have their place and I completely agree that transactions are vital to data integrity, but the fixed column data model is way too limited to store all of the kinds of data used in the real world.

Slashdot Top Deals

Remember, UNIX spelled backwards is XINU. -- Mt.

Working...