Viewing profile — dhooper
dhooper
HN member- Joined
- Fri, Aug 23, 2013, 5:14 PM UTC
- HN karma
- 326
- Public activity
- 81 items
- HN profile
- View on Hacker News ↗
About dhooper
Recent public activity
-
comment
Comment #46621062
www.danielchasehooper.com
-
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…
-
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…
-
comment
Comment #44907589
Good suggestion. Updated.
- comment
-
comment
Comment #44905318
Thanks CyberDildoNics!
-
comment
Comment #44904243
I use whatever the equivalent is on that OS.
-
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…
-
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…
-
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 …
-
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.
- story
- comment
-
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.
- comment
-
comment
Comment #44817139
feel free to call it a "levelwise-allocated pile"
- comment
- story
-
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…
-
comment
Comment #44429139
The assignment is intentional. The union changed to a struct
-
comment
Comment #44427768
Thanks, this post is about C. On some projects you must use C.
-
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…
-
comment
Comment #44426913
This is addressed in the footnotes. casting is not the core of the type safety. Read the whole article.
- comment
-
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…