Live data from Hacker News

Viewing profile — dhooper

dhooper

HN member
Joined
Fri, Aug 23, 2013, 5:14 PM UTC
HN karma
326
Public activity
81 items

About dhooper

www.danielchasehooper.com

Recent public activity

  1. comment
    Comment #46621062

    www.danielchasehooper.com

  2. comment
    Comment #45612656

    I've always wanted it to work this way. However it'd only work if you had a case with the magnetic cover to turn on the device. Otherwise someone would pick up their un-cased kindl…

  3. comment
    Comment #44913745

    I used the term "early access" when I should've used "private beta". The sign up is just for me to have an email addresses to send the private beta when the next update goes out, a…

  4. comment
    Comment #44907589

    Good suggestion. Updated.

  5. comment
  6. comment
    Comment #44905318

    Thanks CyberDildoNics!

  7. comment
    Comment #44904243

    I use whatever the equivalent is on that OS.

  8. comment
    Comment #44904160

    I'll be sending out the a macOS version to another wave of beta users after I fix an outstanding issue, if you sign up (at bottom of article) and mention this comment I can make su…

  9. comment
    Comment #44904023

    Thank you! Yeah it can be used for any type of program, but I haven't been able to think of anything besides compilation that creates enough processes to be interesting. I'm open t…

  10. comment
    Comment #44903960

    OP Here. Thats an interesting idea. What The Fork knows all the commands run, and every path they read/write, so I should be able to make it estimate build time just by looking at …

  11. comment
    Comment #44903892

    (OP here) Thanks! My call with the Mozilla engineer was cut short, so we didn't have time to go into detail about what he found, I want to look into it myself.

  12. story
  13. comment
  14. comment
    Comment #44818170

    1. The image at the top of the article makes it clear the segments aren't contiguous 2. iterating a 4 billion item segmented array would have 26 cache misses. Not a big deal.

  15. comment
  16. comment
    Comment #44817139

    feel free to call it a "levelwise-allocated pile"

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

    Not sure what you mean by that, but if you're trying to imply that C is not relevant: https://www.tiobe.com/tiobe-index/ Plus an article about C was at the top of hacker news all d…

  20. comment
    Comment #44429139

    The assignment is intentional. The union changed to a struct

  21. comment
    Comment #44427768

    Thanks, this post is about C. On some projects you must use C.

  22. comment
    Comment #44427751

    msvc 19.39 is the first to support it, which I mention in the article. You can confirm it didn't work up through 19.38 in godbolt [1]. I don't use Visual Studio, so I don't know wh…

  23. comment
    Comment #44426913

    This is addressed in the footnotes. casting is not the core of the type safety. Read the whole article.

  24. comment
  25. comment
    Comment #44426578

    Author here. It's worth noting that no work is being done in the macros of my article, they compile down to a normal c function call which you can step through in a debugger. There…