Viewing profile — _getify
_getify
HN member- Joined
- Tue, Apr 23, 2013, 12:36 PM UTC
- HN karma
- 192
- Public activity
- 126 items
- HN profile
- View on Hacker News ↗
About _getify
[ my public key: https://keybase.io/getify; my proof: https://keybase.io/getify/sigs/SxqB6BQX2LQ92yiAfs1FYql_tPEhCqCGAZhnkap6tVY ]
Recent public activity
-
comment
Comment #19561217
In JS: -0 + 0; // 0 -0 + (-0); // -0 -0 - 0; // -0 I claim that the `-0 + 0` case is the strange inconsistent one, so that's the reason for my WTF label. ---- Consider the counter-…
-
comment
Comment #19531015
The "WTF" label is not about correctness, it's about surprise/intuition. It doesn't really matter to me whether it's mathematically or IEEE correct. It's strange and inconsistent. …
-
comment
Comment #19441718
(self post)
- story
-
comment
Comment #12023052
Just FTR: this is not accidental or lazy on my part. It's highly intentional. But I can certainly appreciate that it frustrates some learners. There's a principle called "Cognitive…
-
comment
Comment #11979656
First, I think it's disingenuous for an author to revel only in the positive reviews and "just ignore" the negative. An author should take all feedback and do the best with it he/s…
- story
- story
-
comment
Comment #11639712
I'm excited about the `SharedArrayBuffer` addition, but quite meh on the `Atomic.wait()` and `Atomic.wake()`. I think CSP's channel-based message control is a far better fit here, …
-
comment
Comment #11621431
self submission
- story
-
comment
Comment #11298724
YAML claims to not be markup, but it clearly is a markup for data (significant whitespace/indentation, etc). When I want to do markup, I use Markdown. When I want to data serializa…
-
comment
Comment #11298689
I didn't mention in my comment, but I also use Markdown for all my technical documentation (READMEs) on my dozens of github OSS projects. I have lots of cross-references and I use …
-
comment
Comment #11298661
The books were intended as source material for publishing, so I didn't embed any crosslinks in the documents. However, I always use markdown for all my OSS project documentation (R…
-
comment
Comment #11293076
I wrote a six book, 1100 page series in Markdown (all on github). I write all my blog posts in Markdown. I'm sorry but I just can't sympathize with any of the complaints leveled ag…
-
comment
Comment #11290221
(self post)
- story
- story
-
comment
Comment #10615398
self submission
- story
-
comment
Comment #10426044
disclosure: self submission
- story
-
comment
Comment #10188857
> If you pass a reference to the x array to a function This notion (concern) is meaningless in JS, since when you pass any reference, it's always a reference-copy, so there's no va…
-
comment
Comment #10188853
It's not the core argument. It was a tangential side note in the blog post.
-
comment
Comment #10188847
But my post did actually conclude the cases where it's useful. It seems like a lot of people here only read the first half of the post and stopped. I don't think `const` should be …