Books I found particularly helpful #
During the last few years I have quite a few books that one could easily file under the category “Hacking books”. Some
of them were particularly interesting to me and have influenced the way I write code. The following list certainly is
not complete at all - but it is a nice starting point.
- Effective C++ - I have comparably little
experience with C++ but this book really helped understand some of the particularities.
- Effective Java - even
though I have been developing in Java since a few years reading and revisiting Effective Java helps understanding and
dealing with some of the quirks of the JVM.
- Mythical Man Month - although classical literature for people
dealing with software projects, although very well known, although easy to understand it is scaring to see that the
exact same mistakes are still common in today’s software projects.
- Concurrent programming in Java - quick
start on concurrent programming patterns - primarily focussed on Java. Fortunately no collection of recipes but
thorough background information.
- Working effectively with legacy code - I really like to have a look into
this book from time to time. Shows great ways of untangling bad code, refactoring it and making it testable.
- XP books by Kent Beck - if you ever had any questions on what XP programming is and how you should implement it: These
are the books to read. Don’t trust what people call XP in practice as long as they are not willing to refine and
improve their “agile processes”. Keep on working on what stops you from delivering great code.
- Why programs
fail - a guide to systematic debugging - If you ever had to debug complex programs - and I bet you had - this is the
book that explains how to do this systematically. How to even have fun along the way.
- Zen and the art of
motorcycle maintenance - Not particularly on Software Development but the techniques described match stunningly well on
software development.
- Release It! - just about to read that one. But already the first few pages are not only
valuable and interesting but also entertaining.
- Implementation Patterns - forgot that yesterday.
- Presentation Zen - another one I forgot. Really helped me to make better presentations.
There are still quite a few good books on my list. If you have any recommendations - please leave them in the comments.
There are a few other book lists online in various blogs. Two examples are the ones below:
http://www.codinghorror.com/blog/archives/000020.html
http://www.joelonsoftware.com/navLinks/fog0000000262. html