Ask HN: What language-agnostic programming books should I read?
41–50 of 344 posts
Re: Ask HN: What language-agnostic programming books should I read?
#42A really well written short glimpse of things every programmer must know.
Re: Ask HN: What language-agnostic programming books should I read?
#43Robert C. Martin introduces the disciplines, techniques, tools, and practices of true software craftsmanship. This book is packed with practical advice–about everything from estimating and coding to refactoring and testing. It covers much more than technique: It is about attitude.
Re: Ask HN: What language-agnostic programming books should I read?
#44Re: Ask HN: What language-agnostic programming books should I read?
#45Great short book to get you thinking creatively and how to dissect algorithmic problems, language agnostic with pseudocode examples.
Non-programming but still highly relevant for a professional programmer: Mythical Man Month, and Peopleware.
Re: Ask HN: What language-agnostic programming books should I read?
#46Re: Ask HN: What language-agnostic programming books should I read?
#47Any good book on statistics would be a huge asset, as well as a book about debugging strategies.
Any examples of books focused on that? I can't think of any.
Re: Ask HN: What language-agnostic programming books should I read?
#48Re: Ask HN: What language-agnostic programming books should I read?
#49Effective Java (lots of good generic OOP advice) Implementing Domain Driven Design
Although I liked Effective Java a lot, and it does contain a lot of advice relevant to many OO languages - it is the opposite of language agnostic: It's very Java-specific. Much of the content is irrelevant except in Java itself; and some of it is the opposite of "Effective language X". For example, it has a section named "Prefer lists to Arrays"; any C++ programmer will tell you the opposite (and that goes down to s…