vote up 13 vote down star
40

I know, that questions regarding books have been asked before. What I'm after is what books are "must haves" on your bookshelf?

You know, those books that, if you don't have a copy, it makes you feel uncomfortable. They keep vanishing because people keep, er, "borrowing" them.

I read Ed Yourdon's The Decline and Fall of The American Programmer and while the book was fairly interesting, his Appendix on what he has on his bookshelf, and why, is quite a revelation. Several of the books on his list are not directly concerned with coding but in the appendix he goes on to explain why they are on his list, e.g. Robert Pirsig's book Zen and the Art of Motorcycle Maintenance

This idea also comes from Peter Coffee's Agile 06 keynote address where he relates his choice of books back to the Agile Manifesto (mp3).

Here are my must haves:

  1. Thriving on Chaos (1st ed.) Tom Peters
  2. Systemantics: How things work and how they fail (1st ed.) - John Gall
  3. The Psychology of Computing Programming - Gerald Weinberg
  4. K & R C

What are your must haves?

flag
show 1 more comment

69 Answers

vote up 2 vote down

Chicago Manual of Style. I use it frequently. You gotta be able to write about your designs and your code.

(P.S. "You gotta" is probably not an acceptable construct in CMS.)

link|flag
vote up 7 vote down

alt text

Test Driven Development by Kent Beck

This book is terrific for both a beginner and helping developers on your team. I've loaned out this book so many times and quite honestly it has helped out my teams tremendously. For me, a re-read is a great way to sort of "rediscover" the TDD process and get myself excited about it again.

link|flag
vote up 1 vote down

Working Effectively with Legacy Code by Robert Martin. Useful even when writing new code, since it helps you to keep it from turning into the sort of code that everybody hates to maintain.

link|flag
vote up 3 vote down

alt text

xUnit Test Patterns: Refactoring Test Code

This book is great because it deals with the every day problems of testing and software development from that perspective. Half reference, half once-read, this book is great for defending the every day argument of this just seems like a bad idea. I've used this as a backing for arguments time and time again as well as a means to keep myself from making poor testing decisions.

link|flag
vote up 2 vote down

C: A Reference Manual

It's not a book for learning C (read K&R for that), it's the best and most up to date piece of C reference material I've found.

link|flag
vote up 1 vote down

Oracle PL/SQL Programming by Steve Feuerstein.

I know after months away from PL/SQL if I can't remember something Steve will help me.

link|flag
vote up 3 vote down

CLR via C#

Invaluable reference of advanced .Net and C# features. Anytime I am going to do some serious multithreading I reread Richter's chapter on threading.

Picture of CLR via C# Book

link|flag
vote up 5 vote down

The Pragmatic Programmer:

alt text

link|flag
vote up 3 vote down

Jared Diamond's Guns, Germs, and Steel. It's not a programming book, but you should read it anyway.

link|flag
1  
+1 One of the best 3 books I have read in my life, I would say. A real eye-opener that every person should read, and highly interesting. Thanks to Pär who gave this to me for my birthday. – Tom Bartel Nov 19 at 16:24
show 3 more comments
vote up 6 vote down

I can't believe I'm the first to say this but Peopleware, Duh! Owning something from Katty Sierra is recommended too.

link|flag
vote up 1 vote down

What? No one has mentioned Joel Spolsky's crown jewel? I'll do then: "Joel on Software: And on Diverse and Occasionally Related Matters That Will Prove of Interest to Software Developers, Designers, and Managers, and to Those Who, Whether by Good Fortune or Ill Luck, Work with Them in Some Capacity"

Each time I read it I find something to learn!

link|flag
vote up 5 vote down

I have been doing a fair amount of maintenance of late in consulting engagements. I picked up this book on a number of recommendations from the Development community.The book summary can be found at Working Effectively with Legacy Code by author and Object Mentor fellow Michael Feathers, whom is a colleague of the infamous 'Uncle' Bob Martin. A definite must to any professional developer's toolbox!

link|flag
vote up 2 vote down
  • Pragmatic Programmer
  • Facts & Fallacies
  • K&R C
  • Don't make me think
  • Peopleware

Too bad that it's really hard to get Code Complete 2nd E. here in Germany, I would love to read the book.

link|flag
vote up 2 vote down

I'm surprised Rapid Development didn't make it on anyone's list. It is on mine: http://www.amazon.com/Rapid-Development-Taming-Software-Schedules/dp/1556159005

link|flag
vote up 3 vote down

Bertrand Meyer's Object-Oriented Software Construction

link|flag
vote up 0 vote down

Effective C# is invaluable to me. I look forward to the sequel coming out this month.

http://www.amazon.com/Effective-Specific-Improve-Software-Development/dp/0321245660/ref=sr_1_2?ie=UTF8&s=books&qid=1223142349&sr=1-2

link|flag
vote up 1 vote down

Joe Celko's SQL for Smarties.

link|flag
vote up 0 vote down

Code Craft, The practice of writing excellent code.

link|flag
vote up 1 vote down

Effective C++, Third Edition by Scott Meyers

link|flag
vote up 0 vote down

C++ Pointers and Dynamic Memory Management by Michael Daconta

link|flag
vote up 8 vote down

Refactoring: Improving the Design of Existing Code (Addison-Wesley Object Technology Series) by Martin Fowler, Kent Beck, John Brant, and William Opdyke

link|flag
vote up 2 vote down

If you code C++ there are several must haves.

  1. Exceptional C++ - Herb Sutter
  2. More Exception C++ - Herb Sutter
  3. Even more Exception C++ - Herb Sutter
link|flag
vote up 3 vote down

Hitchhiker's Guide to the Galaxy by Douglas Adams. No true programmer can live without it.

link|flag
vote up 2 vote down

Accelerated C++: http://www.amazon.co.uk/Accelerated-Practical-Programming-Example-Depth/dp/020170353X/ref=sr_1_1?ie=UTF8&s=books&qid=1224457969&sr=8-1

PHP Objects, Patterns, and Practice: http://www.amazon.co.uk/PHP-Objects-Patterns-Practice-2nd/dp/1590599098/ref=sr_1_1?ie=UTF8&s=books&qid=1224457998&sr=1-1

Professional ASP.NET 3.5: in C# and VB: In C# and VB (Programmer to Programmer) http://www.amazon.co.uk/Professional-ASP-NET-3-5-VB-Programmer/dp/0470187573/ref=sr_1_1?ie=UTF8&s=books&qid=1224458045&sr=1-1

All very good books that have helped me either in the past and to this day.

link|flag
vote up 1 vote down

Algorithms in C++ by Robert Sedgewick. Covers a lot of basic things (like many of the different sorts and trees) that you will probably never use, but now you will know why. :-)

link|flag
vote up 2 vote down

Bertrand Meyer's Object Oriented Software Construction, 2nd Edition

link|flag
vote up 0 vote down

How to Design Programs An Introduction to Computing and Programming

Matthias Felleisen Robert Bruce Findler Matthew Flatt Shriram Krishnamurthi

link|flag
vote up 2 vote down

Wizard Book n. Hal Abelson's, Jerry Sussman's and Julie Sussman's Structure and Interpretation of Computer Programs (MIT Press, 1984; ISBN 0-262-01077-1), an excellent computer science text used in introductory courses at MIT. So called because of the wizard on the jacket. One of the bibles of the LISP/Scheme world. Also, less commonly, known as the Purple Book.

link|flag
vote up 1 vote down

Code complete, second edition by Steve McConnell

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.