Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Payment Gateway Access is No Accident (Score 1) 57

Just because a packet is encrypted and outbound from Iran, they don't know the packet is necessarily VPN. There are some signatures that signify use of certain VPNs and they can get that with Deep Packet Inspection (DPI) according to forums I've read, but it also sounds like they would need to block them one by one including new and modified ones. Unlike viruses, though, some of those connections may be legitimate business or government ones.

Comment Re:How Bing learns (Score 1) 96

Ah, but DDG has !bangs, so you can... duck?... for "!g foo" to get the Google results instead. I spent a few days acclimating to DDG and now use it for almost everything, falling back to Google for the 1% of the time when I don't get the results I expect. Also works for a few hundred other things, including the old green mare herself: "!/. foo" searches Slashdot.

Comment Re:So turn the mic off.. (Score 1) 153

but i'm wondering what the big value is of encrypting data that would probably just contain someone saying "channel 77" or whatever the voice commands like that are.

This is backward. What is the big value of not encrypting it, given that the data payloads are small enough not to require massive CPU resources to do so?

Encryption everywhere is the sane default and should only be removed when there's a clear reason to do so. You don't ever have to justify why to add encryption to something; you're expected to justify removing it.

Comment Re:Some misconceptions (Score 4, Informative) 319

Disclaimer: I'm not remotely a Node.js fanboy. I've used it and and chances are good that you've interacted with some of my code today, but it's definitely not my preference.

I said that "Node.js is concurrent" because 1) the summary claims it's fast, and 2) Node.js fans who don't fully understand it seem to think it's magically fast. No, it's not particularly fast: it's just able to handle a lot of requests at once. Those are orthogonal.

Comment Some misconceptions (Score 4, Insightful) 319

1) Languages aren't compiled or interpreted: implementations are. Java has had a decent optimizing compiler for a long time, but JVM 1.0 wasn't exactly a speed daemon. JavaScript was a dog for a long time, but modern engines like V8 compile it to native machine code.

2) Node.js isn't fast. It's concurrent. You can handle many thousands of simultaneous requests, as long as none of them are working particularly hard.

3) Exactly what collision course are we talking about? I can't imagine many situations I'd consider Node.js for that I ever would have though about Java for in the first place. If anything, I see Node.js as more of a competitor to Python for building scalable backend services.

Comment Re:Not really happy (Score 1) 171

Also, HTTP/1 already allows a browser to send multiple requests without waiting for the response of the previous request.

But it doesn't have a decent mechanism for sending responses before they're requested. With HTTP/2, your server can say "here's the page HTML, and here's a stream for the favicon linked in the HTML headers, and here's another stream for the JavaScript". The quickest request is the one you don't have to make.

Comment Re:What ethical concern ? (Score 1) 199

Eye colors other than brown are technically caused by a defective gene as well.

Personally, I think if you can alter genes to get rid of certain bad things, that child once grown would thank you for it. I would definitely thank my parents for breeding out my dad's asthma and my mom's allergies, which when combined made my mainly asthmatic reaction to cats so bad I can't even be around people that own cats without heavy medication, and even then, the sooner I get away, the better.

Slashdot Top Deals

Those who can, do; those who can't, write. Those who can't write work for the Bell Labs Record.

Working...