Viewing profile — cokernel_hacker
cokernel_hacker
HN member- Joined
- Sun, Mar 25, 2012, 3:49 AM UTC
- HN karma
- 1,316
- Public activity
- 181 items
- HN profile
- View on Hacker News ↗
About cokernel_hacker
No profile information was provided.
Recent public activity
-
comment
Comment #48467562
The actual paper is: "The Geometry of Color in the Light of a Non-Riemannian Space" https://onlinelibrary.wiley.com/doi/10.1111/cgf.70136
- story
- story
- story
- story
- story
-
comment
Comment #45434240
It seems he is still active in the bioinformatics space: https://github.com/thegenemyers/FASTK
-
comment
Comment #43627691
What if it breaks in a way which renders it no longer a chair for you but not others? This seems to imply that what is or is not a chair is a subjective or conditional.
-
comment
Comment #43261640
It was almost certainly added in order to support EFI which uses PE/COFF format binaries.
- story
-
comment
Comment #42443037
Internal DACs/amps have gotten a lot better, at least in Apple products. https://support.apple.com/en-us/108351 https://www.audiosciencereview.com/forum/index.php?threads/r...
- story
-
comment
Comment #41926249
ARM has DIT: https://developer.arm.com/documentation/ddi0595/2021-06/AArc... Intel has DOIT: https://www.intel.com/content/www/us/en/developer/articles/t... The idea is that the pr…
-
comment
Comment #41459797
With chip fabrication technology in the spotlight lately, this book chapter on the history of EUV development and DARPA's role might be of interest to some.
- story
-
comment
Comment #41452974
So let's change it up a bit. typedef int (*pfn)(void); int g(void); int h(void); pfn f(double x) { switch ((long long)x) { case 0: return g; case 17: return h; } } If I understand …
-
comment
Comment #41452870
What behavior should the following have: int f(int x) { switch (x) { case 0: return 31; case 1: return 28; case 2: return 30; } } This code on its own has no undefined behavior. In…
-
comment
Comment #41452824
That works for a lot of behavior but not everything. For example: int f(int x) { static int y[] = {42, 43}; return y[x]; } What behavior should `f(-1)` or `f(100)` have? What is se…
- story
- story
- story
- story
- story
-
comment
Comment #40252084
This python actually builds a graph under the hood which then gets JIT compiled for CPU/GPU/TPU.
- story