Live data from Hacker News

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

About cokernel_hacker

No profile information was provided.

Recent public activity

  1. 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

  2. story
  3. story
  4. story
  5. story
  6. story
  7. comment
    Comment #45434240

    It seems he is still active in the bioinformatics space: https://github.com/thegenemyers/FASTK

  8. 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.

  9. comment
    Comment #43261640

    It was almost certainly added in order to support EFI which uses PE/COFF format binaries.

  10. story
  11. 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...

  12. story
  13. 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…

  14. 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.

  15. story
  16. 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 …

  17. 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…

  18. 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…

  19. story
  20. story
  21. story
  22. story
  23. story
  24. comment
    Comment #40252084

    This python actually builds a graph under the hood which then gets JIT compiled for CPU/GPU/TPU.

  25. story