If you’re looking for a company that encapsulates the queasy ephemerality of this economy, you couldn’t do better than Amazon. It’s a company whose initial core business (still accounting for a third of its revenue) is selling media, ie intellectual property (IP), which, like money and corporations themselves, is nothing but a useful legal fiction. At first Amazon sold IP mainly by physically shipping the media such IP was once housed in (books, CDs), but it can increasingly dispense with the physical part entirely. The market considers Amazon incredibly valuable even though it earns virtually no profits. And Amazon now wants to provide the IP it sells partly in exchange for “virtual currency”, which is the most discomfiting mimesis of all, either on Amazon or within any other game, market, platform, corporation…what’s the difference again?
In the past, I’ve had a couple of problems with files in Dropbox, and lost data. Never fear! Dropbox maintains history of files and lets you roll them back! How many files do we need to revert?
18,000.
Oh. Ok. Maybe I should write some tools to automate that process then, huh?
We’ve pulled together back level versions of Windows and Internet Explorer for your local testing needs. Download the images that best meet your host OS and development needs.
So useful.
Virtual tools | Testing made easier in Internet Explorer | modern.IE
When you buy a new phone, it’s in your pocket, but this, you’re wearing something on your face. Anyone that cares what they look like is not gonna wear Google glasses. That’s my opinion,” Madonna said. “If you are super nerdy and you like to show off that you’re in tech and smart and all those things, I can see you probably wearing Google Glasses, but you are probably in a bubble or … new. We’ve all heard all this stuff. Like, this guy moved to SF and he comes to the bar. He’s from Scottsdale and he’s using all these [tech] words. I had to stop him. I said, ‘You sound interesting and different in Phoenix, but you sound boring here. You are cliche.’
Ok, so ticking the top box keeps that data, but ticking any of the other boxes deletes that data. Except that the descriptions don’t say ‘delete’, you’re supposed to get that from the button at the bottom. Except for the top box, where there is a verb. And the cancel button doesn’t cancel that part of it, obviously.
An iOS 5/6 device can have system-level Twitter/Facebook accounts that become disassociated from the underlying service accounts. This means that the ACAccountStore framework will return you ACAccount objects that can be used to sign requests and get access tokens, but NONE OF THE REQUESTS WILL WORK and you’ll get MYSTERIOUS OAUTH ERRORS and LOTS OF SUPPORT MAIL and be GRUMPY because it WORKS FOR YOU JUST FINE.
I’m not certain how to fake this state. Changing your Facebook password and choosing to log out other devices is pretty reliable, albeit really annoying if you actually use Facebook for anything. Likewise, changing your Twitter password might work. I think restoring the phone from backup will also cause this problem, especially if it’s a iTunes-based non-encrypted backup, because the passwords aren’t saved, but the phone won’t prompt you at any point to enter them again.
When this happens to Twitter account objects, I see server responses to otherwise perfectly reasonably signed requests with the error Bad Authentication data
and the error code 215. I used to get This method requires authentication
when calling the old 1.0 API, because the 1.0 API interprets a bad signature as no signature (REALLY ANNOYING), but the 1.1 API is a lot stricter.
When this happens with Facebook, I see Error validating access token: The session has been invalidated because the user has changed the password
and sometimes Error validating access token: Session does not match current stored session. This may be because the user changed the password since the time the session was created or Facebook has changed the session for security reasons
.
The solution to this is the method on ACAccountStore:
- (void)renewCredentialsForAccount:(ACAccount*)account
completion:(ACAccountStoreCredentialRenewalHandler)completionHandler;
From the docs:
For Twitter and Sina Weibo accounts, this method will prompt the user to go to Settings to re-enter their password.
For Facebook accounts, if the access token has become invalid due to a regular expiration, this method will obtain a new one.
If the user has deauthorized your app, this renewal request will return ACAccountCredentialRenewResultRejected.
Calling this method on the ACAccount object you’re trying to deal with will make-or-break it. I find that the token either works afterwards, or doesn’t, but now it doesn’t work because the iOS device knows that it doesn’t have a valid token. You may still have to punt the user into the Settings app to fix it. For instance, in the case of Twitter I find that calling renewCredentialsForAccount
will pop up a system dialog about the problem.
Facebook is more subtle - the ACAccount object can still be used to get an access token, but that token will fail on the server with The session has been invalidated because the user has changed the password
still. However, punting them manually into Settings.app at this point will ask them for a Facebook password and things will work afterwards.
Alas, it’s asynchronous. You can work around that. Call it on the ACAccount instance before you try to do something serious with it, or do work in the callback.
I hope this helps -someone-, because it sure would have helped me 6 months ago.
If the metric doesn’t follow a bell curve, the average is meaningless and leads to incorrect decisions and understanding. Avoid the trap by talking in percentiles. Default to percentiles, and you’ll better understand how users really see your system.
After a certain number of years, programming becomes much less about correctly instructing the computer and much more about clearly expressing your intent to the humans that will read the code later—including yourself in six months.