Viewing profile — alextgordon
alextgordon
HN member- Joined
- Sat, Dec 19, 2009, 2:43 PM UTC
- HN karma
- 3,588
- Public activity
- 895 items
- HN profile
- View on Hacker News ↗
About alextgordon
Recent public activity
-
comment
Comment #11598800
Literally the definition of the integers is that (x + 1) != x. Wrapping is bad enough, but at least tends to makes failures noticeable. Saturating arithmetic makes it really hard t…
-
comment
Comment #11558419
It also lacks what you might call 'forward secrecy'. If someone gets access to my master password and an old 1password backup, then they get all the passwords in the backup. But wi…
-
comment
Comment #11546734
The use of != there is very confusing but what they mean is stores a precision along each number, not that -0 != -0.0 e.g. in Python: >>> from decimal import Decimal as D >>> 2 * D…
-
comment
Comment #11467725
Maybe it is a failure of imagination, but I don't get how nest can be more efficient than manual control. Cold? Switch the heating on. Hot? Switching the heating off. Why'd you nee…
-
comment
Comment #11460077
You're right, but I guess you're being downvoted because nobody wants to hear it. JavaScript will never get anything like numpy, because it doesn't have integers. Doing mathematics…
-
comment
Comment #11414894
It's interesting that you give the example of Breivik. Don't you think that a far-right nutcase like him would relish the reinstatement of the death penalty?
-
comment
Comment #11412316
I don't bother reversing decks. It's more efficient to do more repetitions of Native->Foreign than it is to do equal repetitions of N->F and F->N. i.e. if you can respond that the …
-
comment
Comment #11403497
The average person isn't even aware that VLC is an illegal circumvention tool in the United States under the DMCA. I fail to see how restrictions on encryption software would have …
-
comment
Comment #11370327
The comment system on HN discourages discussion of the article, because threads cannot be collapsed and so there is only space for 2 or 3 top-level comments to get much attention. …
-
comment
Comment #11365838
kik = a messaging app kike = a jewish person
-
comment
Comment #11363677
And there's at least tens of millions of people who only have one name: https://en.wikipedia.org/wiki/Mononymous_person#Modern_times https://en.wikipedia.org/wiki/Indonesian_names#…
-
comment
Comment #11358440
The curse of oil.
-
comment
Comment #11349418
This has the same problem as hyperloop, then. Sure the main part of the journey is quicker, but if you have to take a connecting flight from New York to Boston, and a train from Lu…
-
comment
Comment #11341429
If he wants to control where people get his software, he should have published it under a proprietary license. Not saying he does, though.
-
comment
Comment #11334734
People are only trying to help. Better now than when the press hears about it and starts taking the piss out of them.
-
comment
Comment #11332313
Xcode works fine for me. I can't say the same for Android Studio, which seems to require a machine more powerful than a top-of-the-line MBP.
-
comment
Comment #11326205
I don't think I understand. If they could rehabilitate unsuitable donor organs and didn't have to worry about rejection, there wouldn't be a shortage. Isn't that the end game?
-
comment
Comment #11313716
Still, Uber knows who you are. If you damage their car they can invoice you. Presumably they will have CCTV in these things?
-
comment
Comment #11307522
Useless clickbait. Nobody ever claimed that the one and only benefit of standing is to "burn excess calories". Personally I had developed back pain from too much sitting. When I st…
-
comment
Comment #11300705
On OS X, Adium, Textual and Colloquy are predominantly built in HTML. It's hardly groundbreaking.
-
comment
Comment #11299614
Or fruit juices. Orange juice has almost as much sugar as coca cola.
-
comment
Comment #11294505
They could use multiple signing keys. One in America, one in Hong Kong, one in Germany, etc. If a firmware update is not signed in all (or N of M) jurisdictions, the secure enclave…
-
comment
Comment #11281219
Totally awesome! I was just about to make exactly this tomorrow, now I don't need to. My problem is that I would like to generate wrappers for an API, in a variety of popular langu…
-
comment
Comment #11272055
What is our purpose if computers can do everything better than us? It feels like computers have taken one aspect of humanness: logic. Computers could do arithmetic, do algebra, pla…
-
comment
Comment #11271619
…as is Swift with NSOperation/GCD. Apple's process isolation tech (XPC) is built upon their multithreading tech (GCD). The two are complementary, not antagonistic.