Live data from Hacker News

Viewing profile — _getify

_getify

HN member
Joined
Tue, Apr 23, 2013, 12:36 PM UTC
HN karma
192
Public activity
126 items

About _getify

Kyle Simpson is a web-oriented software engineer, widely acclaimed for his "You Don't Know JS" book series and nearly 1M hours viewed of his online courses. Kyle's superpower is asking better questions, who deeply believes in maximally using the minimally-necessary tools for any task. As a "human-centric technologist", he's passionate about bringing humans and technology together, evolving engineering organizations towards solving the right problems, in simpler ways. Kyle will always fight for the people behind the pixels.

[ my public key: https://keybase.io/getify; my proof: https://keybase.io/getify/sigs/SxqB6BQX2LQ92yiAfs1FYql_tPEhCqCGAZhnkap6tVY ]

Recent public activity

  1. 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-…

  2. 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. …

  3. comment
    Comment #19441718

    (self post)

  4. story
  5. 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…

  6. 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…

  7. story
  8. story
  9. 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, …

  10. comment
    Comment #11621431

    self submission

  11. story
  12. 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…

  13. 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 …

  14. 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…

  15. 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…

  16. comment
    Comment #11290221

    (self post)

  17. story
  18. story
  19. comment
    Comment #10615398

    self submission

  20. story
  21. comment
    Comment #10426044

    disclosure: self submission

  22. story
  23. 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…

  24. comment
    Comment #10188853

    It's not the core argument. It was a tangential side note in the blog post.

  25. 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 …