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

 



Forgot your password?
typodupeerror
×

Comment Comes pre-backdoored by the NSA (Score 1) 72

This is horrifying - how gullible do you have to be to back and trust this? It's such a big fat juicy target for the NSA (or FBI or Russian hackers or any other group of
miscreants). It's a 'spy on me!' box for the people they most want to spy on. If they have the full help of the company then they can add cheap hardware to the build so that even if you completely wipe and reflash the main partition their stuff still runs. Even if the company were legit, all you need is one guy or one pwned computer inside it.

A couple years ago you'd be crazy paranoid to think they'd bother, but post-Snowden we know they have the time, the interest, and unlimited resources.

Comment Snapchat is fundamentally insecure (Score 1) 90

The 3rd party apps only even worked because Snapchat is hideously insecure and has been from day one. It stored the pictures unencrypted on the device and didn't even bother actually erasing them (just moved them to another folder!). It's since improved slightly, but it's a fundamentally insecure design and they're apparently being too disruptive and innovative to fix it.

Comment Facebook is full of s@#4 (Score 1) 305

I apologize for the semi-offensive subject, but nothing else I tried was as accurate or clear.

There's no 'lone actor' or 'rogue account' forcing them to do this. This is THEIR OWN POLICY. Claiming someone else 'forced' them to do it is standard corporate/military/law enforcement weaseling. 'The officer's gun was discharged 30 times into the suspect.' Well darn, that poor officer with his gun going off like that and all.

Total damage control bullcrap.

Comment Re:Binary format (Score 1) 122

Parsing is not necessary. When it's binary, you can directly read and use the values.

*facepalm* This is /exactly/ why it opens up a whole new class of client (or server) vulnerabilities. You have to assume you are being lied to by something malicious instead of just using the values. Easiest one - in a length field, lie about how many bytes are in the field. That's the Heartbleed bug!

And you're still going to have to parse it - you get a binary blob, but it's not a fixed struct you can just drop into memory and access the members of directly (that would be bad, anyhow). But it's a much easier parsing job... Tag, Length, Value... unless you're being lied to.

Comment More reliable than some other paper serving (Score 1) 185

Paper serving is not some super serious must be done in person thing. You usually do need to try to have a process server try to serve the papers in person. But when that fails, then it's good enough to just give it to a housemate or relative. If you can't do that, then it can be mailed. If it gets down to it, *the papers can be served just by posting a notice in the newspaper*.

Facebook has 'the message was seen', which is more reliable than a lot of these. If it goes into your spam then it doesn't get marked as read. And it's fairly obvious whether you've been active on your account or not - it's (hopefully) much harder for someone to fake being you on FB for six months without anyone noticing than it is to just register a mail address in your name.

The courts are used to dealing with all manner of tricksy dirtbags, so when they go into hiding mode, the courts go into more aggressive, more error-prone methods. This fits right in there. You can, of course, just lock down your FB account for posting - or use an app that doesn't mark the message as read. But FB users are more likely to be posting public photos of their crimes on FB than to fix their privacy settings.

Comment Engineers and Legislators (Score 5, Insightful) 326

Another engineer who thinks he can cobble up a single technological solution to a social problem.

This is the same sort of hubris that has legislators passing random crap to 'fix' a problem with zero understanding of the problem or the consequences of their solution. It's arrogance. For one, it assumes you're smarter (or at least sharper) than the people you're trying to control.

(Disclaimer: I'm an engineer.)

Comment It sure is, just like every other year (Score 2) 171

Everyone thinks this when their specific little niche goes away for whatever reason. Or even when it changes.

Opportunists who are just in it for easy money will bail out and find whatever the land rush is this month. The others will find a way. Remember when AAA gaming crushed all small budget games forever? Yeah.

(This can be 'bad' as well if you're one of those people who think income is the only thing that matters... some of those people could have done better financially elsewhere).

Comment All of Twitch is a 'Copyright Violation' (Score 5, Interesting) 142

Since by YouTube's standards, everything on Twitch is a 'copyright violation' (streaming footage of a video game and completely ignoring that most of it is Fair Use with added content) I really have to wonder how they intend to deal with the corporate trolls who are now going to descend on Twitch like the vultures they are.

I imagine that will involve giving most of the money currently going to the content creators to the copyright asserters. The RIAA model.

Comment Re:Percentages? (Score 5, Informative) 52

TFA is kind of dumb for not giving the numbers, but a quick search on Dice turns up 4800 python listings.

Compare to 1770 Hadoop listings, 1490 NoSQL, and 3250 for 'Big Data' and you can see that it's kind of the opposite of what you were suggesting. The reason Python is only up 16% is because it had so many listings last year already.

2700 Ruby listings for comparison, regarding another post.

Comment It's great, but we try not to use it. (Score 1) 435

Compared to what it used to be, C++11 is very nice. But it's still one of the ugliest, most obfuscated languages for general production work. I realize why this is so - speed and memory concerns still make it the go to language (har) when you really care about either of those.

I used to use C++ constantly. But it's very rare now that we can't just write what we need in C# (medium to large scale) or Python (small to medium scale) in 1/3rd the time (or 1/10th for anything GUI). And for embedded we're still using pure C.

So we use C++ in that very rare intersection where we have some complexity and speed actually matters. Most recently in an image pipeline where the app itself is all C# and the heavy lifting (billions of pixels) is done in non-managed C++ (they didn't want to require GPU). It was okay, but using C++ and C# together makes you really aware of just how much administrative overhead C++ has, though the classes certainly made things better compared to pure C.

So... it definitely has a niche, but it's not normally the most efficient way to do things, for implementation speed, cleanliness, or maintainability.

Comment Pick a problem first, not the solution (Score 1) 306

I've been programming longer than you have and I'm still learning new things every day. That's not an exaggeration - we have so many cool projects at work that I can't stagnate.

The key here is to have a problem to solve, then learn whatever you need to learn to solve that problem.

You don't decide 'Well I should learn PHP now... okay, now what do I do with this?' or 'I hear Java is good on a resume.' You find a problem that's interesting to you (I want to make a game that... I want to make a neat device that...) and then you learn whatever it is you have to learn. For instance starting to deal with firmware, motors, devices, etc is like a rebirth for a lot of people compared to the boring ennui of database and web services. It's amazing how much you can do with a little Arduino or Raspberry Pi or the equivalent, and that's often enough to kick you out of your stupor.

If you can't think of anything, or if coming up with a game or trying a neat little embedded system doesn't put you back into obsessive creative mode then it's probably time to consider a new line of work, or just how to ride out your days till retirement.

Comment Make sure you read the dev comments (Score 1) 212

If you're going to read the article, read the comments (on Gamasutra). Other devs point out that you've always been able to set your price on Steam games - it just takes less intervention to change it now. You could always launch a free or 99 cent game there. The Steam market is not the mobile market (thank god).

Slashdot Top Deals

Today is a good day for information-gathering. Read someone else's mail file.

Working...