Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror

Comment Re:You don't want your job taken (Score 1) 275

People who can be rightfully concerned about a dumb computer replacing them should be concerned about many other things. Software and automation is surely cheap and can logically impact low-skill occupations. But claims on the lines of "fear computers because they are coming for your jobs" don't seem too honest to me or, at least, not said from a truly knowledgeable perspective.

I'm not currently worried about my programming job, but seeing stuff like this snippet ( https://www.youtube.com/watch?... ) does make me less confident that I should *never* be worried about my job.

Comment Re:No sympathy (Score 1) 291

Seems like a bit of a harsh judgement of other people... But I'm sure that you would never own a device capable of this, so I guess you are allowed to judge.

I'm sure you don't have a smart TV (many smart TV's support voice command, or have video chat, and 'smart' features almost certainly require an internet connection. Internet+Mic = possible hot-mic).

You certainly don't have a smart phone with Google Now or Siri on it. Especially with wake word enabled! That would just be foolish.

Some people like the convenience of a voice assistant. Some people just like the 'futuristic feel' of commanding a computer to say and do things. No matter what the reasons, you are going to be seeing more of these type of devices, not less. At least Alexa isn't shipping audio off to Amazon until you speak the locally-recognized wake-word, so I'd consider it the exact same privacy risk level as smart TVs and smart phones, except that the average user is more likely to realize that what they say to Alexa is being sent over the internet.

At least Amazon treats the audio recordings at a similar privacy level as they do credit card information. How much do you trust Amazon to protect your privacy vs the manufacturer of your TV?

Comment Re:"risks serious damage to the system" (Score 1) 138

I don't know... I see your point, but I'd wager that the likelihood of a false positive on the eFUSE is less likely than the user actually overclocked it to trigger it. It's kind of like those 'water damage' stickers they have in phones. Maybe it's possible that it claims damage when there wasn't any, but it's sure a good indication that something happened that wasn't supposed to, and it makes it harder to lie your way into a warranty replacement.

Don't think I'm siding with NVidia on this, though; I'm just discussing the subject. I still feel like they owe me a laptop after their defective Geforce 8400m cost me my previous one :).

Comment Re:Hope the trend continues. (Score 1) 263

Why install a custom ROM with an obsolete Android?

I still install new custom ROMs with obsolete Android because it runs much smoother on my obsolete hardware. (I'm only addressing your last question here, I don't really have an opinion one way or the other about the rest of the post)

Comment Re:I bet (Score 1) 216

No idea if this has any relation to the GP's issue, but my Galaxy Nexus would drain the battery very quickly when Wi-Fi was enabled. It ended up being caused by Location Services. I disabled 'Use nearby WiFi to improve location accuracy' and my battery life doubled.

I'm sure there was some other actual root cause to the issue, but I got my desired result (acceptable battery life), so I didn't look into it any further.

Comment Re:Comcast tried to steal $50 from me (Score 1) 223

deal with the fact that it is probably a debit card or a store use only card, probably has decreasing balance if not used, charges for checking balance, no actual cash value, etc.

The best way (for me) that I have come across to handle rebate debit cards is to, on receipt of the card, immediately purchase an Amazon gift card with the full amount of the debit cart. This works great for me because I know I will be spending money at Amazon at some point anyway, and now I don't have to worry about keeping around the rebate card, the card expiring, or leaving the card with $1.27 left on it which then becomes difficult to spend.

Comment Re:Only payments? (Score 1) 336

You may be mistaking what you use it for with what it is capable of. You can send any arbitrary information over it, as long as an application on both ends understands what you are doing. I believe that Apple devices may impose additional restrictions on what you can pair with (I know that I use Bluetooth to connect to a $5 OBD-II reader in my car, but that my friends with iPhones are unable to make this pairing and have to use the $15 WiFi version).

Maybe take a look at this page: http://en.wikipedia.org/wiki/L...

Comment No conspiracy, but old phones are slowing down (Score 2) 281

I don't think they intentionally sabotage them, but they are definitely slower. It's just that they keep getting pushed new OS updates, and new app updates, and the new updates expect faster hardware.

I bought a Galaxy Nexus 2 years ago, and when I got it everything was blazing fast. By a few months ago, my phone was frustratingly slow. For a while I considered that I was just looking at newer phones and thinking "Wow, that's so much faster than mine" but just thought that it was the comparison that made mine feel slow, not that it really was slow. I finally decided my phone was objectively slow, not just by comparison.

A few weeks ago I 'downgraded' to Android 4.2.2 (Had been running Android 4.3), and turned off auto app update. (I had previously tried various ROMs with 4.3, but they were all still slow.) Now my phone is fast again. Maybe not as blazing fast as it was brand new, but I no longer feel like I'm ever waiting for the phone.

So, I don't think there is a real 'conspiracy' to slow down old phones, but I think that old phones *are* slower, they know they are doing it, and just don't care. Why would they? They think we should be happy they are pushing updates to us, but they don't think they should have to worry about the experience on devices they sold years ago. But, I have the ability to refuse these updates, so I can keep my personal phone usable for the foreseeable future.

Comment Re:Cry Me A River (Score 1) 608

... use frameworks the new guy is likely unfamiliar with because there are so many. Time for a new web GUI standard; the existing attempts keep falling on their face and try to turn JavaScript into a GUI OS language, which it wasn't meant for. We need fresh standards, dammit!

This sounds familiar.

http://xkcd.com/927/

Comment Re:Because I'm lazy (Score 3, Informative) 279

If you are talking about C/C++, the variable is *not* null in either case. If you assigned null to it, then it is null. If you never assigned any value to it, then it is whatever happened to be in memory at that location. It's a pretty good warning to let you know you are using a variable without it being assigned a value.

int* ptr;
if( ptr != NULL )
{
*ptr = 0;
}

This code will at some point crash. Maybe not on the first run, but at some point ptr will not be null, but will not be a pointer to valid memory.

Slashdot Top Deals

Much of the excitement we get out of our work is that we don't really know what we are doing. -- E. Dijkstra

Working...