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

 



Forgot your password?
typodupeerror
×

Comment Re:So much for ... (Score 1) 132

How would SSH agent help here? They used social engineering at Amazon to get common account info, then further used social engineering to get the password reset on his Apple ID.

Once they had his Apple ID they logged into the iCloud service and issued remote wipes on all his devices that he had activated the wipe option on. Since he used the same credentials everywhere they were able to get into Twitter and Google as well.

As for loosing all his data, he should have had a backup. Apple makes this super easy on iOS using iCloud and on OS X using Time Machine.

Comment Re:Bullshit (Score 1) 375

You can get a Mac mini to use for around $600 and it works just fine for development.

Not sure if you are joking about the USB thing or not. You just plug the device into a USB port and then can run the debugger, profiling tools, packet capture and all that directly on the device.

Comment Re:Wifi (Score 1) 230

The OP might not have stated it too well, but STP and .local domains are two well known, but separate, issues that have occasionally created issues for Mac sysadmins. These issues have been largely resolved over the years though.

For what it's worth, Cisco recommends always using portfast on endpoint ports and Microsoft recommends not using .local domains.

Comment Re:ObjC sucks (Score 2) 437

Ditto for strings. Also, you have to prefix string constants with '@'.

Oh no, a single extra character!

The '@' isn't how you define a constant. It's shorthand for creating a NSString, since most everything in Obj-C needs objects to function.

Comment Re:Method Syntax (Score 1) 437

Like jcr said, you aren't calling methods, you are sending messages to objects.

Why on earth does it hurt to name the parameters when you send the message? You can look at the code and know exactly what it does. When you type the code autocomplete kicks in and you know exactly what the method of the class is expecting. It's not like this stuff is new, the basics are nearly 30 years old at this point.

I mean if you really want to go crazy you could say that none of the languages are unnecessary. Why would you ever use a pointer when you could just go to the address in assembly?

Slashdot Top Deals

On the eighth day, God created FORTRAN.

Working...