Linux Applications Programming by Example: The Fundamental APIs (2nd Edition)
teleforce
58 points
7 comments
March 20, 2026
Related Discussions
Found 5 related stories in 78.6ms across 8,303 title embeddings via pgvector HNSW
- The Linux Programming Interface as a university course text teleforce · 66 pts · March 15, 2026 · 62% similar
- A Programmer's Guide to Common Lisp jellinek · 19 pts · May 01, 2026 · 52% similar
- The Little Book of C ghostrss · 65 pts · March 26, 2026 · 51% similar
- Methods in Languages for Systems Programming (2023) surprisetalk · 17 pts · March 16, 2026 · 50% similar
- Principia Softwarica: Fundamental Literate System Programs pratikdeoghare · 16 pts · April 26, 2026 · 49% similar
Discussion Highlights (2 comments)
NewsaHackO
Is there an actual book available?
discarded1023
For those looking for a broader/more portable introduction, Xavier Leroy and Didier Rémy wrote a great high-level text on UNIX system programming a long time ago [1]. Of course it uses ocaml (perhaps motivating some to learn that language) but the style is low-level and straightforwardly imperative. The advantage is that it sweeps up a lot of the messy and boring error handling into the ocaml runtime and/or exceptions. This makes the code a lot easier to follow, but of course makes it look misleadingly simpler than it would be in C (etc). [1] https://ocaml.github.io/ocamlunix/