Viewing profile — alexhutcheson
alexhutcheson
HN member- Joined
- Sun, Feb 17, 2013, 8:32 PM UTC
- HN karma
- 3,780
- Public activity
- 918 items
- HN profile
- View on Hacker News ↗
About alexhutcheson
Recent public activity
-
comment
Comment #42904497
DeepSeek-R1 had an RLHF step in their post-training pipeline (section 2.3.4 of their technical report[1]). In addition, the "reasoning-oriented reinforcement learning" step (sectio…
-
comment
Comment #42904259
Glad to see the author making a serious effort to fill the gap in public documentation of RLHF theory and practice. The current state of the art seems to be primarily documented in…
-
comment
Comment #42147467
I prefer the GDB Graphical Interface in Emacs[1] (M-x gdb), rather than the more basic integration via GUD[2] (M-x gud-gdb). I’ve had to switch to GUD to run lldb recently, and I m…
-
comment
Comment #42146843
GDB also has a built-in text user interface (TUI) that is surprisingly easy to use[1]. It even supports mouse interaction. [1] https://sourceware.org/gdb/current/onlinedocs/gdb.htm…
-
comment
Comment #42006340
Try disabling VC over Tramp connections[1]: (setq vc-ignore-dir-regexp (format "\\(%s\\)\\|\\(%s\\)" vc-ignore-dir-regexp tramp-file-name-regexp)) VC is quite chatty and assumes th…
-
comment
Comment #41935422
It depends if they are using a “vanilla” instruction-tuned model or are applying additional task-specific fine-tuning. Fine-tuning with data that doesn’t have misspellings can make…
-
comment
Comment #41697136
If you want to be cautious, I have somewhat higher confidence in the versions of Emacs packages published on the Debian repositories[1] than the ones on ELPA/MELPA. The downside is…
-
comment
Comment #41592350
Are there any open source self-hostable tracking/project management tools that still have a committed team and forward momentum? I used to self-host a Phabricator instance, which I…
- story
-
comment
Comment #41401464
Boost.Heap has this functionality. Or if you want to stick with the standard library it’s fairly easy to use the *_heap functions from and just hand-code your own fix_heap(first, l…
-
comment
Comment #41400454
On a related note, if you’re around Washington, DC in the US, then the National Cryptologic Museum[1] is well worth a visit. They have a ton of equipment on exhibit, including a va…
-
comment
Comment #41320978
If you are accessing elements in memory with a constant stride[1], then hardware prefetchers[2] do a surprisingly good job at “reading ahead” and avoiding cache misses. A typical e…
-
comment
Comment #41209151
Somewhat tangential, but did Nvidia ever confirm if they cancelled their project to develop custom cores implementing the ARM instruction set (Project Denver, and later Carmel)? It…
-
comment
Comment #41185255
[flagged]
-
comment
Comment #41115108
Google has a great free online course on Recommendation Systems that goes through the various common approaches, with working code in Colab notebooks: https://developers.google.com…
-
comment
Comment #40831460
What makes it the closest to Spring and ASP.NET?
-
comment
Comment #40810974
Do you use Flutter Web, or some other framework for web UI?
-
comment
Comment #40749572
I’ve seen this book recommended, but have not personally read it: https://www.unshackled.club/book
-
story
Ask HN: Why do message queue-based architectures seem less popular now?
In the late 2000s and early 2010s, I remember seeing lots of hype around building distributed systems using message queues (e.g. Amazon SQS, RabbitMQ, ZeroMQ, etc.) A lot of compan…
-
comment
Comment #40621156
Specifically: https://bazel.build/remote/caching
-
comment
Comment #40572935
Modern hash table implementations use vector instructions for lookups: - Folly: https://github.com/facebook/folly/blob/main/folly/container/... - Abseil: https://abseil.io/about/de…
-
comment
Comment #40416117
Useful blog post about this sort of situation: https://lethain.com/hard-to-work-with/
-
comment
Comment #40222922
The successor project uses musl: https://github.com/landley/toybox/tree/master/mkroot
-
comment
Comment #40198803
Angle grinders are useful when working with pipes, though.
-
comment
Comment #40198790
For those not familiar, Google had a tradition of choosing names of wood-processing tools for “logs” analysis: - Sawzall: https://research.google/pubs/interpreting-the-data-paralle…