Found in 3 comments on Hacker News
larve · 2024-08-15 · Original thread
I actually find the quality of programming books to have starkly increased in the last decade. I find a lot of manning's and o'reilly's release to have a pretty long shelf-life.

For example, I really enjoyed and often go back to:

- https://www.oreilly.com/library/view/building-event-driven-m...

- https://www.oreilly.com/library/view/designing-data-intensiv...

- https://www.manning.com/books/100-go-mistakes-and-how-to-avo...

- https://www.amazon.com/Systems-Performance-Brendan-Gregg/dp/...

And more recently:

- https://www.manning.com/books/build-a-large-language-model-f...

- https://www.manning.com/books/the-creative-programmer

- https://www.manning.com/books/the-programmers-brain

- https://www.amazon.com/Understanding-Software-Addison-Wesley...

I also find books about specific technologies that indeed run the risk of being deprecated after a few years to be useful too

- https://www.oreilly.com/library/view/networking-and-kubernet...

- https://www.brendangregg.com/bpf-performance-tools-book.html

Furthermore, nothing keeps you from reading books about topics peripheral to computer science, say to keep up with the general vibes:

- https://www.amazon.com/Probabilistic-Machine-Learning-Introd...

- https://www.amazon.com/Deep-Learning-Foundations-Christopher...

- https://www.amazon.com/Joy-Abstraction-Exploration-Category-...

I find that all of these contribute significantly to my growth as an engineer.

lenkite · 2024-03-03 · Original thread
The book Understanding Software Dynamics by Richard Sites is all about performance optimization

https://www.amazon.in/Understanding-Software-Addison-Wesley-...

drallison · 2021-12-31 · Original thread
Understanding Software Dynamics (Addison-Wesley Professional Computing Series) 1st Edition by Richard L. Sites (https://www.amazon.com/Understanding-Software-Addison-Wesley...)

This is a recent book and I have not completed reading it but I know already is it destined to become a classic. If you are serious about learning how to understand and improve code, this is the book for you. (Full disclosure: Dick is a long-standing friend and one of the brightest and insightful guys around.)

Writing Efficient Programs (Prentice-Hall Software Series) 1st Edition by Jon Louis Bentley (https://www.amazon.com/Writing-Efficient-Programs-Prentice-H...)

This book is out of print but I believe it's a better read that Jon's Programming Pearls books. C is a great (and permissive) programming language. Jon shows how the language can be exploited for gain performance. Evil but effective.

Hacker's Delight 2nd Edition by Henry Warren (https://www.amazon.com/Hackers-Delight-2nd-Henry-Warren/dp/0...)

The Hacker's Delight is exactly what Hank Warren intended--a collection of tricks and facts that programs can exploit. It's informative on many levels. It uses deep knowledge of how numbers (and other mathematical objects) work to compute useful information. And it shows how seemingly arcane information can be useful. For a programmer excited by the fabric of programs, it is a continual delight.

The first edition has a clarity and compactness that I find appealing. The second edition has additional material. When you get through all of the Delights you can read Knuth Volume 4 which embeds more arcane and useful knowledge.

Fresh book recommendations delivered straight to your inbox every Thursday.