Forgot your password?
typodupeerror

Comment Re:I disagree w/ his predictions (Score 3, Insightful) 308

A) It's not that big of an assumption. The exponential curve in computing power doesn't just go back to the advent of computers, it goes back as far as we could perform simple arithmetic. It's an assumption based on our long history of improving methods and fabricating machines to compute. Unless we have capped our ability to invent new methods of computing, it's a fairly safe assumption to make. Our ability to compute is probably not limited by the number of transistors we can pack on a silicon disk.

B) given a large enough knowledge base and a set of really good AI algorithms, one should be able to create intelligent machines. There's nothing to prevent them from replicating, either. However, I don't think that they will ever be truly sentient. Even so, careful design will be necessary to ensure Asimov's laws of robotics are strictly enforced.

C) I don't believe Kurzweil has ever claimed NP-Hard problems would be solved by the exponential increase in computing power.

Comment Re:Untrusted certs should not raise an alarm (Score 1) 286

Why the above tripe was modded insightful is beyond me. Certificates are the oldest and most reliable way of anonymously verifying identity between sites or otherwise anonymous users.

Nobody expects certificates to perform on the fly authentication. Authentication is performed before the certificate is issued, and thereafter one has the assurance that the certificate is being held by a previously authenticated authority. You might as well complain that authentication itself is a scam because it is not 100% reliable.

Where the F have you been for the last 15 years, anyway? Essentially, you're making the ridiculous claim that assymetric public/private key based encryption is worthless, when it has been proven to be anything but.

Comment Re:Linux has the same drag as Mac in business (Score 2, Informative) 1348

Open Office Base does have a form builder. It's not as slick as MS Access, but it does work. The main issue I had with Base the last time I used it was that the query designer only supported select queries - no inserts, updates, or deletes. So you could use the form builder, but you'd still have to hand code the SQL for most of the work you'd be using forms for. Not particularly a big deal to me, but if you're used to the Microsoft drag and drop sort of programming, I guess it could be an issue.

Comment Re:What is your name? What is your quest? (Score 2, Insightful) 298

Well, the airspeed velocity of an unladen swallow is 11 meters per second. African or European.

http://www.style.org/unladenswallow/

However, as soon as you strap a memory card to the swallow, it is no longer unladen. By definition.

Therefore, the bandwidth capacity of an unladen swallow is zero.

Comment What is the justification for allowing HF trading? (Score 1) 411

I remember reading an article about Goldman Sachs in Rolling Stone last year by Matt Taiibi. Ah yes, this is the one:

http://www.rollingstone.com/politics/news/12697/64796

He describes them as "a great vampire squid wrapped around the face of humanity, relentlessly jamming its blood funnel into anything that smells like money." That quote really stuck with me since then, and I've often thought about these huge trading businesses on Wall Street that somehow are so valuable they provide their workers with luxury working conditions in highrises in downtown Manhattan and millions of dollars a year in salary and bonuses. But I can't quite figure out what value they actually provide anyone. Last quarter they reported they made money every single trading day. Uncanny that they can ri^H^Hpredict the market so accurately. Is there a purpose for letting people suck money out of the stock market the way they do? Or are they really a giant vampire squid as Taiibi describes them to be? Seems like all this could be doing is hurting the people who actually do provide goods and services and actual value to the economy, but what do I know, I'm certainly no Wall Street master of the universe.

Comment Re:MapReduce = map + reduce (Score 1) 166

But its the distributing part that is special, not the map/reduce part.

You're basically just dividing up a huge list and sending each part to a different machine. Tacked on to each list are the map and reduce functions themselves so each machine knows what to do with the list.

Its the parallelization of the problem that is the hard part. Map does not mean the mapping of the problem to thousands of machines - it means the mapping of a function to a list, and that is not a terribly difficult problem.

Comment Re:MapReduce = map + reduce (Score 2, Informative) 166

Exactly. There is nothing special to map and reduce.

Here's an example. Map and reduce are functional programming tools that work with lists. So we'll start with a simple list.

1 2 3 4 5

Now we'll take a function - x^2, and map it to the list. The list now becomes:

1 4 9 16 25.

Now, we'll apply a reduce function to our list to combine it to a single value. I'll use "+" to keep it simple. We end up with:

55

And that is pretty much all there is to map and reduce.

Comment Re:Need to benchmark against the best sorts (Score 2, Interesting) 166

Parallel/distributed sorting doesn't eliminate the need for map/reduce, it just helps spread the problem set across machines.

Here's the thing though...its the distributing of the problem set and the combining of the results that is the hard part - not map/reduce.

Map and reduce are simple functional programming paradigms. With map, you apply a function to a list - which could be either atomic values or other functions. With reduce, you take a single function(like add or multiply, for instance) and use that to condense the list into a single value or object.

That's my understanding of map/reduce from my functional language classes in school and that's exactly how Google describes it. I don't really see what the big deal is with map/reduce in itself.

Like I said, its the distributing the problem among thousands of machines that is the hard part.

It's funny.  Laugh.

Journal Journal: What to eat with your freedom fries

If you just can't stand the thought of putting Heinz ketchup on your *cough*freedom fries*cough*

W Ketchup

And don't forget, Ronnie sez, "Ketchup is a vegetable!". Good for a shot of Vitamin W, or any old time you need to wash down a pretzel.

Movies

Journal Journal: My take on Fahrenheit 9/11

First of all, I'd like to confess that I'm somewhat of a Michael Moore fan. I've enjoyed his books and movies ever since Roger and Me, I've went to a booksigning of his just to meet him and get a signed book, and I made it a point to see Fahrenheit 9/11 on the first day it was out.

Slashdot Top Deals

BYTE editors are people who separate the wheat from the chaff, and then carefully print the chaff.

Working...