Viewing profile — marckerbiquet
marckerbiquet
HN member- Joined
- Wed, Feb 19, 2020, 7:13 AM UTC
- HN karma
- 12
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About marckerbiquet
No profile information was provided.
Recent public activity
-
comment
Comment #47333276
I use my own text editor too, written using my own programming language. Fortunately Operating Systems suit my needs and I won't have to write my own OS ;-)
-
comment
Comment #43157858
Compilers have a huge advantage over other programs: they are fully deterministic since they depend only on input files, command line arguments and few environment variables. It ma…
-
comment
Comment #40572111
Agner Fog's optimization manuals https://agner.org/optimize/ are x64 oriented but are a very valuable resource for C++ and assembly programming.
-
comment
Comment #39027409
A possible reason is the use of Static Single Assignment (SSA). While it makes many optimizations easier, it has to translate its IR out-of-SSA to generate code. This is very expen…