>> "Especially for common workflow tasks like switching from an app to 1Password and back to the app."
> Use the task switcher, which is now much faster than before?
This was actually one of the "Wow! They've thought about the little things" moments on iOS7. I was copying a phone number or an address from another app, and with the new task switcher I didn't even have to launch the other app since the information I was looking for was already visible from the switcher.
No HTML allowed - ok - I just don't buy the explanation. A better way to sell it would be "A 100% secure Markdown clone you can use on the web with no questions asked, no HTML injection possible because no HTML is possible."
When I see a Markdown clone I expect to see some new features: modularity and extendability, a well-defined grammar or translation process (if that's even possible without sacrificing usability, simplicity, or performance), perhaps being exceptionally fast. And I keep looking, because the world needs a better Markdown. Unfortunately, a feature removed from Markdown and a few others slapped on top of it is not enough to make me try it. So I wish you good luck with your project and hope that it evolves beyond that.
And ThinkPads used to have a fingerprint sensor, many years ago. It's not that the technology itself is very cutting edge, or even claimed to be. (Of course, marketing claims anything to be cutting-edge. Apple's marketing doubly so.)
In the light of recent knowledge, it makes me wonder whether IBM had NSA backdoors, too.
They don't even say fingerprints are not uploaded:
According to the press release, "fingerprint information [...] is never stored on Apple servers or backed up to iCloud." But nowhere do they claim it doesn't ever leave the phone. It looks like this leaves Apple the option to upload the data to "trusted partners".
For me, the text on that article felt way too big when viewed in a full screen browser on a 1280x800 display. Frankly, it's about as bad as if the font-size were 12px or 13px.
Resizing the browser window to only take half of the screen width makes it better on my eyes (it appears to be 17px). Still, after that, I felt the need to go to developer console and change line-height to 1.4.
I chuckled a bit when, after these adjustments, I arrived at the sentence:
> The fact you’ve read to this paragraph is proof that there is something to my argument.
I'm on a 13" Macbook Pro, and lying on a couch, so my viewing distance may be a bit closer than if I were sitting on a desk. I'm 33 years old, with relatively ok eyesight (no glasses), and totally buy your other arguments (I'm a fan of Bringhurst myself).
It's just that anything more than 18px on a laptop display just feels too big.
I tested this on my @me.com account, and it's exactly how it works. Email containing the words "barely legal teens" is simply dropped.
I find it obscene to an Orwellian extent that Apple actually seems to think that no valid email would ever contain the words "barely legal teens". I wonder what other things Apple thinks are not worth talking about?
I have no trust in Apple's email services any more.
Not really; as they say in the post itself, "Facebook’s business is different than Amazons and the impact on their business will be different."
Amazon's core business is selling stuff to customers: additional latency might occasionally turn away a customer. In Amazon's scale, that's a million-dollar opportunity.
Facebook's core business is having users click on ads: at first, latency's role there might seem insignificant, but it is an interesting intellectual exercise to figure out whether it really matters in Facebook's scale.
Even more interesting would be if you had some data to show precisely how much.
If may be strange because of the asymmetry but I'd actually prefer `if` to be come first all the time and `unless` to come last all the time - precisely because `unless` reads like it's for exceptional circumstances:
value = cache[key]
if value?
return value
return file.readContents() unless not file.exists()
Mixed tabs and spaces, inconsistent indentation, two empty lines in a row, sometimes "if (...)" and sometimes "if(...)".