aes | 12 years ago | on: About the security content of iOS 7.0.6
aes's comments
aes | 12 years ago | on: Bitcoin and positive vs. normative economics
aes | 12 years ago | on: What are you building over the holidays?
Time permitting, a simple bitcoin gambling site.
Time permitting, a really easy way to do microdonations.
aes | 12 years ago | on: iOS 7 is Yucky. Why Isn't Anyone Saying So?
> 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.
aes | 12 years ago | on: MarkShow: a modern dialect of MarkDown
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.
aes | 12 years ago | on: Motorola releases fingerprint sensor-embedded Android phone (2011)
In the light of recent knowledge, it makes me wonder whether IBM had NSA backdoors, too.
aes | 12 years ago | on: Apple Unveils The iPhone 5S
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".
http://www.apple.com/pr/library/2013/09/10Apple-Announces-iP...
aes | 12 years ago | on: Identify with email: no need for passwords
A combination with email confirmation plus two-step verification like Google Authenticator could work as well.
aes | 12 years ago | on: He got 1%, we can't hire him
2. Naming and shaming the company - better
3. Quitting your job and letting them know about it - even better
aes | 12 years ago | on: iOS7 marks the best time to get started in app development
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.
aes | 13 years ago | on: CoffeeScript 1.6.0 released with support for source maps
test.coffee:
require 'source-map-support'
throw new Error("Test")
Now do: npm install source-map-support
coffee -c -m test.coffee
node test.js
This gets you the correct line numbers.aes | 13 years ago | on: CoffeeScript 1.6.0 released with support for source maps
Specifically, I tried this test.coffee:
throw new Error("Test")
Now running it with coffee test.coffee
still reports the wrong line number in the stack trace.There's supposedly node-source-map-support (https://github.com/evanw/node-source-map-support), but even installing that and adding "require 'source-map-support'" won't help.
aes | 13 years ago | on: Apple’s Deleting iCloud Emails That Contain The Phrase 'Barely Legal Teens'
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.
aes | 13 years ago | on: How Facebook can avoid losing revenue when they switch to always-on SSL
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.
aes | 13 years ago | on: Nokia 'Here Map' arrives at the App Store
aes | 13 years ago | on: Detect iPad Mini in HTML5?
aes | 13 years ago | on: Git over FTP
But I have hard time believing that there still are web providers that don't support SSH. Are there any? Good ones?
aes | 13 years ago | on: Steve Jobs’ Reality Distortion Field Lives On
aes | 13 years ago | on: Apple's patent on inductive charging
aes | 13 years ago | on: CoffeeScript: less typing, bad readability
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(...)".