Viewing profile — hthh
hthh
HN member- Joined
- Tue, Jun 30, 2015, 10:35 AM UTC
- HN karma
- 96
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About hthh
No profile information was provided.
Recent public activity
-
comment
Comment #16174164
What is "Nitro"?
-
comment
Comment #16166155
"Copyright infringement" is not "trademark infringement" and shouldn't be in the title.
-
comment
Comment #15397466
Why? I mean you're still sending the referer header, right?
-
comment
Comment #13322724
Making the atomic bomb scores pretty high on the evil-genius scale.
-
comment
Comment #13102348
Wow, in a happy coincidence syntect is exactly what I was looking for all last week! Now I just need to figure out Rust.
-
comment
Comment #12611974
Dynamic resizing fixes this, although hash collisions can still be a problem (albeit a very unlikely one if your hash is secure). https://en.wikipedia.org/wiki/Hash_table#Dynamic_r…
-
comment
Comment #11605435
Absolutely, by all means look at old code - code that has survived and been useful for a long time. It's either adaptable (Linux) or doesn't need to change or adapt much (TeX). Do …
-
comment
Comment #11605246
"High quality" is an strange concept. I would look at code you actually use and rely on - that's the best indication of quality. A lot of critical code deals with inelegant, comple…
-
comment
Comment #11084215
This is an interesting article, but the "Portability" comments could be a lot more useful: strndup and open_memstream are both "POSIX 2008", but strndup can be used on OS X while o…
-
comment
Comment #11084200
On Windows, sure. On other platforms UTF-8 is generally preferable (in my opinion).
-
comment
Comment #10655373
I think this is the COFF document which they say "is directly applicable". https://github.com/llvm-mirror/lld/blob/master/COFF/README.m... I'm guessing the speed difference comes f…
-
comment
Comment #10640685
"It's weird how there are like two alternate realities of data compression. "There's people who actually know WTF they're doing. (eg. encode.ru & the DCC's and so on). In that worl…
- story
-
comment
Comment #9850262
I disagree with it, but the Google C++ Style Guide offers the rationale you're looking for (under "On Unsigned Integers"): https://google-styleguide.googlecode.com/svn/trunk/cppgui…
-
comment
Comment #9804357
My GCC seems to be GCC (don't remember why - I guess I installed it for something). I can also make it build using "--std=c99" (but that makes the undefined behavior mentioned in i…
-
comment
Comment #9804188
I too wrote a TIS-100 simulator in C ( https://github.com/hthh/tis100sim ) - it's interesting to compare styles. (I get a bunch of errors on OS X unless I change "CC=gcc" to "CC=cl…