vote up 583 vote down star
862

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
35  
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

282 Answers

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

I would have to say "Code Complete" and "Software Estimation" by Steve McConnell.

link|flag
vote up 19 vote down

@lurks

The Art Of UNIX Programming by Eric S. Raymond

It is useful regardless operating system you use.

link|flag
vote up 1 vote down

"Debugging the Development Process: Practical Strategies for Staying Focused, Hitting Ship Dates, and Building Solid Teams" by Steve Maguire.

No-non-sense, down-to-earth, entertaining, profound.

[ http://beta.stackoverflow.com/questions/559/what-books-would-you-recommend-for-a-beginning-software-developer#1150 ]

link|flag
vote up 1 vote down

Since you've asked for the single most influential book, I recommend Deitel's "C++ How to Program. This is the one I kept referencing throughout University.

I actually enjoyed reading Head First Design Patterns and Joel On Software more, but they came along after I'd learned the basics

link|flag
vote up 1 vote down

I found "The art of Prolog" a very good read.

link|flag
vote up 2 vote down

I think I grew up in a different generation than most here....

One of the most influential books I read, was APUE.

Or pretty much anything by W. Richard Stevens.

link|flag
vote up 0 vote down

+1 for Zen and the Art of Motorcycle Maintenance

Before people start coding they need to have thought about how they approach and break down problems

link|flag
vote up 2 vote down

I'd have to second Refactoring: Improving the Design of Existing Code. It was the single biggest help for me to get unstuck while moving from a procedural mindset to a OOP one. During that time I was to focused on getting the design and model correct from the get go, and wasted a lot of time doing so. After reading through this book a few lights turned on, or at least shined bright enough, for me to realize my follies. Do the best you can now that fits the time, the code will change and many times in ways you couldn't foresee to begin with. The real kicker is that this always happens, no matter what, and to just not worry about it. In short, this book helped ground me and get my head out of the clouds.

alt text

link|flag
vote up 0 vote down

I would say Code Complete too, anyway after reading it I have a question: what's the matter with the Pontiac Aztek and why has Steve McConnell a trauma with it?

link|flag
vote up -1 vote down

Another vote for "The Art of Unix Programming by Eric S. Raymond". Even if you aren't a Unix programmer, the explanation of simple, clean, yet powerful processes will convince you that you should be ;-)

link|flag
vote up 1 vote down

Code complete, domain driven design, and Dreaming in Code to show how it can work out in the end.

link|flag
vote up 0 vote down

My development odyssey began with the venerable Camel book, followed by Cay Horstmann's and Gary Cornell's excellent Core Java series. In retrospect this was a reasonable start, though far heavier on practice than principles and concepts.

As a few have said, most influential and most influential in the context of beginning a development career may be very different. I didn't appreciate many of the stellar recommendations here such as SICP, Code Complete, Mythical Man Month, the Pragmatic Programmer, and Peopleware until I'd had a few years and a few projects under my belt.

Andy Hunt and Dave Thomas put it best - continually invest in your knowledge portfolio - read a new book every quarter.

link|flag
vote up 0 vote down

Code Complete, version 2 is the single most useful book you'll read about programming.

Domain Driven Design is the single most useful book you'll read about Software Engineering; putting code together in the right way.

And just to round out the list, Software Creativity by Robert L Glass; it's a book that will make you look at how you look at software.

link|flag
vote up 1 vote down

Roger S. Pressman - Software Engineering (A Practitioners Approach). It has got a lot of usefull information.

link|flag
vote up 0 vote down

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.

I have to respond to this. Clearly for answers to specific questions and probelms, sites like this and the methods described above are obviously the best. For cutting-edge newest technology, the lead time for books obviously is going to leave you no choice but use the internet. And perhaps my age (46) is a bias here.

But one of the things that troubles me greatly has been the decline of Technical Publishing. A lot of tech writers are moving away for it because it doesn't "pay the bills' (Petzold for example) and as I mentioned - there is likely a generational thing (I'll just have to "get-over") I don't like doing extensive reading on a laptop screen...

But I think to truly get a "Deep Understanding" of a broad topic - the effort necessary to write a book allows the writer to focus his or her thoughts in a way that otherwise I don't belief lets the reader truly "Grok" a deep concept.

Yes if you want a "how-to" - a good web post might be more than sufficient. But if I REALLY need to understand something, I want a good book.

Furthermore, when I need to go back to something, I always know where that darn book is on my bookshelf. But how many times have you pulled your hair out trying to find that link you know you say several months ago?

Please everyone here - support tech writers (who derserve it) by BUYING the book!

link|flag
vote up 7 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 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 6 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 7 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 2 more comments
vote up 2 vote down
  • -1 For Code Complete
  • +1 For Pragmatic Programmer
  • +1 For SICP

I don't know if it was because I read the Pragmatic Programmer first, but I thought Code Complete was the biggest book I've ever read that didn't really ever say anything. I mean there is a lot of text there, but no substance in my opinion. You get a lot more out of the 300 pages of the Pragmatic Programmer than you will ever get out of the 800 pages of Code Complete.

I also have to second Structure and Interpretation of Computer Programs. It is definitely is the most influential book on programming that I have ever read.

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 2 vote down

I'd recommend The Dilbert Principle: A Cubicle's-Eye View of Bosses, Meetings, Management Fads & Other Workplace Afflictions for a good cry. Too close to home to be funny though..

link|flag
vote up 14 vote down

Code Complete is the classic.

However, Facts and Fallacies of Software Engineering by Robert Glass has a lot of good information on topics other than coding, for example people-issues, testing and process.

cover

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

Not a programming book, but still a very important book every programmer should read:

Orbiting the Giant Hairball by Gordon MacKenzie

link|flag
vote up 11 vote down

This is a great book for a Java developer new or old:

Effective Java by Joshua Bloch

link|flag
1  
This was really eye-opening for me as junior developer a few years ago, and it's definitely the Java book I'd recommend (others agree: stackoverflow.com/questions/75102). But it is sufficiently Java specific that I don't think every programmer should necessarily read it. – Jonik Apr 25 at 16:00
vote up 3 vote down

Code Craft by Pete Goodliffe is a good read!

Code Craft

link|flag
vote up 1 vote down

The Unix Programming Environment by Brian Kernighan and Rob Pike. After reading this I 'got' Unix. I understood the philosophy behind it and everything suddenly started making much more sense.

It's also a brilliant introduction to the Bourne shell and C programming.

link|flag
vote up 0 vote down

I would have to say Programming Pearls as a good overview. There are so many great books on Programming, and so many more bad ones.

link|flag
vote up -1 vote down

Michael C. Feathers' Working Effectively With Legacy Code. Very useful for the substantial number of programmers who work on mature systems that need maintenance, tweaks and refactoring.

link|flag
vote up 0 vote down

Code Complete has been mentioned numerous times - and is definitely a great book and I agree with Introduction to algorithms. To add one to the list - as a good primer for algorithms - Concrete Mathematics by Knuth - this book explains the underlying math used in higher levels of compsci.

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.