vote up 566 vote down star
828

If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?

I expect this list to be varied and to cover a wide range of things. For me, the book would be Code Complete. After reading that book, I was able to get out of the immediate task mindset and begin to think about the bigger picture, quality and maintainability.

Suggest your programming books

flag
28  
One of the most important question ever asked on stackoverflow :) – Sylvain Jun 9 at 19:30
3  
Browsing this thread make me release how ugly most programming related books are. Very good thread thou! – Carl Bergquist Aug 5 at 12:09
show 3 more comments

277 Answers

prev 1 2 3 4 5 10 next
vote up 7 vote down

I know this is a graphics book, but I am a graphics programmer and have been my whole career. Plus it's written in 'C' :)

It's as fundamental to me as the original K&R C Programming Language book.

Computer Graphics: Principles and Practice in C (2nd Edition) alt text

link|flag
vote up 6 vote down

@John, NotMyself

+1 for Brooks' MMM

Its a classic book with many lessons regarding software projects that, though written over 30 years ago, are still relevant today. Brooks' writing style is easy to read and very friendly, and though there are parts where I find myself rolling my eyes at the datedness, there are many more times when I find my self nodding in agreement to the fact that what he is saying is still very relevant.

link|flag
vote up 6 vote down

I prefer Stroustrup's The C++ Programming Language (3rd edition) - it's the C++ book. C++ may be out of fashion these days, but this book takes you from the basics to OO to templates (STL) and even covers things like improving compile and link time. I still learn something every time I pick it up, and it's never, ever bad to know C++.

link|flag
show 1 more comment
vote up 6 vote down

There are alot of really great books in the answers. One that isn't mentioned that I absolutely love is Object Thinking by Dr. David West. This book had a huge impact on me because it explains the why more than the how.

Object Thinking

link|flag
show 1 more comment
vote up 6 vote down

It's an oldie, but still worth reading:

alt text

link|flag
show 1 more comment
vote up 6 vote down

The Tao of Programming

link|flag
show 2 more comments
vote up 6 vote down

How influential a book is often depends on the reader and where they were in their career when they read the book. I have to give a shout-out to Head First Design Patterns. Great book and the very creative way it's written should be used as an example for other tech book writers. I.e. it's written in order to facilitate learning and internalizing the concepts.

Head First Design Patterns

link|flag
1  
I checked this one out of my local library, and returned it having made it only about 50 pages in. The "Head First" hurl-clip-art-and-sidenotes-on-every-page style may be an effective way of learning for some, but as a person with Attention Deficit Disorder, it made my head explode. I simply could not keep focus on the content. I much prefer the original Gang of Four book for the same information. – SFEley Oct 11 at 4:24
show 2 more comments
vote up 6 vote down

Maybe not the single most influential for every programmer but... to expand really expand your mind about computation in general, and to learn to write some very interesting programs, I recommend the
Computational Beauty of Nature.

alt text

BTW, the author is now head of Microsoft's Live Labs.

link|flag
vote up 5 vote down
  1. Google
  2. Newsgroups and Forums (and now, SO)
  3. blogs

Books are great, on the free time, on vacation, but relevent, up to the minut "save the day" information is from blogs/forums and internet stuff.

link|flag
1  
Yeah, no doubt. But the question was specifically about books, so -1. "If you could go back in time and tell yourself to read a specific book [...], which book would it be?" - Google? – Jonik Apr 25 at 16:16
show 1 more comment
vote up 5 vote down

Framework Design Guidelines will give you a very good start on how to organize code.

link|flag
1  
and dont forget thhe 2nd edition – Ruben Bartelink Jan 25 at 11:24
show 1 more comment
vote up 5 vote down

This one isnt really a book for the beginning programmer, but if you're looking for SOA design books, then SOA in Practice: The Art of Distributed System Design is for you.

alt text

link|flag
vote up 5 vote down

Do users ever touch your code? If you're not doing solely back-end work, I recommend About Face: The Essentials of User Interface Design — now in its third edition (linked). I used to think my users were stupid because they didn't "get" my interfaces. I was, of course, wrong. About Face turned me around.

link|flag
vote up 5 vote down

My favorite books are already covered here, but if you need to learn Java, I enjoyed Bruce Eckel's book, Thinking in Java.

alt text

link|flag
vote up 5 vote down

alt text

Christopher Alexander - The Timeless Way of Building

link|flag
show 1 more comment
vote up 4 vote down

I have a few good books that strongly influenced me that I've not seen on this list so far:

The Psychology of Everyday Things by Donald Norman. The general principles of design for other people. This may seem to be mostly good for UI but if you think about it, it has applications almost anywhere there is an interface that someone besides the original developer has to work with; e. g. an API and designing the interface in such a way that other developers form the correct mental model and get appropriate feedback from the API itself.

The Art of Software Testing by Glen Myers. A good, general introduction to testing software; good for programmers to read to help them think like a tester i. e. think of what may go wrong and prepare for it.

By the way, I realize the question was the "Single Most Influential Book" but the discussion seems to have changed to listing good books for developers to read so I hope I can be forgiven for listing two good books rather than just one.

link|flag
vote up 4 vote down

I recently read Dreaming in Code and found it to be an interesting read. Perhaps more so since the day I started reading it Chandler 1.0 was released. Reading about the growing pains and mistakes of a project team of talented people trying to "change the world" gives you a lot to learn from. Also Scott brings up a lot of programmer lore and wisdom in between that's just an entertaining read.

Beautiful Code had one or two things that made me think differently, particularly the chapter on top down operator precedence.

link|flag
vote up 4 vote down

The Design of Everyday Things and Things that Make Us Smart - both by Donald Norman

These apply to so much more than just user interface design... Make things that work as others would expect - even if the others are developers using code that you've created.

The Timeless Way of Building - Christopher Alexander

The original "patterns" book. Helps to understand why some software design just "feels" right and some does not.

link|flag
show 2 more comments
vote up 4 vote down

I was lucky enough to read this pretty early in my so-called career:

Philip and Alex's Guide to Web Publishing

It was cutting edge in 1998 and still has plenty of relevant points. I found it an enjoyable read with a real sense of humour (not the twee kind you often get in software books). When he gets down to the details he talks about specific platforms though, so it shows it's age when Oracle 7 is mentioned!

I would still put this at the top of the required reading list for a web developer because of the way it assumes no prior knowledge, starting from first principles ("what's HTML?")

alt text

link|flag
vote up 4 vote down

I thought Design Patterns in C# by John Metsker was good. The examples are a bit more advanced (and useful) than some other design pattern books I've read.

alt text

link|flag
vote up 4 vote down

Paradigms of Artificial Intelligence Programming: Case studies in Common Lisp

http://norvig.com/paip.html

link|flag
vote up 4 vote down

The Art of Computer Programming without any doubt

First Volume Hardcover

link|flag
6  
Maybe because it is already mentioned? stackoverflow.com/questions/1711/… – Vanuan May 9 at 12:45
show 3 more comments
vote up 4 vote down

Dilbert's Guide To The Rest Of Your Life: Dispatches from Cubicleland

alt text

This is more truth than you'd think.

link|flag
vote up 4 vote down

This book really set up a fundermental view that a programmer need to know about computer.

alt text

link|flag
vote up 4 vote down

The Annotated Turing was enlightening. It defines the box programmers work in. alt text

link|flag
vote up 4 vote down

I don't know if it were already suggested but:

alt text

link|flag
vote up 4 vote down

Kernighan & Plauger's Elements of Programming Style. It illustrates the difference between gimmicky-clever and elegant-clever.

link|flag
vote up 4 vote down

Apart from all the great books already recommended, there is one more book I would like to recommend.

This may be relatively unknown, however I use it every so often.

The book teaches computer architecture and how C code gets compiled to assembly code. It has great sections about the program stack, talks about low level operating system constructs and about various parts of the architecture from a programmer's perspective.

It has a great section on memory allocation and garbage collection. It also discusses network programming, profiling and much more.

One of my favorite books.

alt text

link|flag
show 1 more comment
vote up 3 vote down

+1 for Code Complete

Also: What books would you recommend for a beginning Software Developer?

link|flag
prev 1 2 3 4 5 10 next

Your Answer

Get an OpenID
or

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