Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:Only works if (Score 2) 450

the criminals are not aware of what is being done. Good job NYT for letting the cat out of the bag.

True. This is a technology that gets less useful the more it is used. Even if you're an idiot crook, you don't have to be a genius to understand when your crook buddy says, "Hey, I got popped for taking the drugs that are on the special holder. Don't take those."

Comment Re:What were the pings then? (Score 2) 245

The devices were not looking for "a specific frequency", and, in fact, the detections were not at the frequency the FDR/CDR were supposed to send. They were "close", and part of the reason they had confidence in the finding is that after AF447 was found, they tried out the transmitter and noted that the frequency was off by a little.

Comment Re:Two solutions (Encrypt or leave) (Score 3, Insightful) 243

If you encrypt, it's not very convenient to do what the person in the article did: link to a video. His IM buddy would have to download/decrypt before seeing the video. Your point is well-taken, of course. But leaving for another cloud provider is likely not going to make things any better. Cloud storage, by its broad definition, is sacrificing security for convenience (to some extent). You can certainly mitigate that via encryption, but at the loss of much of the convenience, especially when it comes to this particular use case, which is the sharing of a video.

Comment Re:its only usefulness (Score 1) 166

Not to mention that there are apps like GrooVe IP which allow you to make free VOIP calls via your Google Voice number.

Not for long.
From your own link:

Due to changes in Google Voice, this app will be switching to a different provider to make and receive calls. You can find the most up to date information on our Facebook page https://www.facebook.com/snrb....

Comment Re:Yeah right (Score 1) 769

That's possible, but sounds implausible. Barcodes can't store that much information, and you'd need a really long barcode to store a long enough number for all the coffee pods they might expect to make. Maybe though.

QR codes could easily store enough. But I'd be more worried about:

It'd be funny if they did this, and someone hacked a Keurig machine to report back to Keurig that lots and lots of codes were used, when in fact they weren't, so that many random users would find many K-cups unusable.

Isn't that what I already said??

Comment Re:Yeah right (Score 1) 769

One other thing they could do would be a unique barcode or other machine-readable sequence on each pod, and then have the machine phone home to make sure that the code is valid and hasn't been used before. Any word on whether 2.0 requires an Internet connection?

The great thing about that idea is that slashdot'ers could systematically disable all of the real pods :-)

Comment Re:I see it as less about Google being bad... (Score 4, Informative) 137

True. One of the comments in TFA mentioned that this could be used for bank/credit card phishing. I thought that was an important insight to note. I think you'd get even more people blindly calling their bank based on a number on Google Local, and one could listen in and get all sorts of card numbers, social security numbers, secret passcodes, etc.

Comment Re:coding standards (Score 1) 664

3) absolutely no use of of malloc or free. it could lead to stack overflows.

Hate to be nit-picky here, but that's not true. It's a great idea to not use malloc() in a real-time application, for reasons of performance. But it can't overflow the stack.

Unless you call it recursively :-)

2) absolutely no local variables. it could lead to stack overflows.

I think it would be pretty hard to overflow the stack by use of local variables. I mean it's easy to cause, but you'd pretty much always see it if you've even tested the program once. The best reason I can think of for not using local variables is that globals are easier to debug.

1) absolutely no recursion. it could lead to stack overflows.

This should be rule number one for this type of application.

Slashdot Top Deals

Anyone can make an omelet with eggs. The trick is to make one with none.

Working...