vote up 584 vote down star
863

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 6 7 8 9 10 next
vote up 0 vote down

NotMyself,

Not John, but answering you anyway. :)

Mythical Man-Month is the definitive text on projects going wrong. How it happens, what you can do to fix it, what you can't do to fix it. Since it is a classic a lot of people talk about it, so it helps if you have also read it.

The book is old and reading it today you will have a lot of wow I can't believe they did that moments. One that struck me in particular was how they managed documentation, actual hard copy to everyone, with daily edits printed and sent out, hundreds of pages. Compared with today were you would just have word doc or wiki.

It is a short book and doesn't take long to read, but is very informative.

link|flag
vote up 0 vote down

I second the recommendations for The Pragmatic Programmer and the Gang of Four's Design Patterns.

I also think that Joshua Bloch's Effective Java is first rate, even for those working in other languages. It's presented in an easy-to-digest, point-by-point style. I learned a lot from it about things like implementing hashCode() methods and so on.

link|flag
vote up 0 vote down

I know so many others have had the same answer but needed to add my 2 cents:

Code Complete by Steven McConnell

link|flag
vote up 0 vote down

+1 for How to Win Friends and Influence People

link|flag
vote up 0 vote down

+1 for "The Mythical Man Month" - it's fascinating that the same issues exist in software projects after 30-40 years.

Another +1 for "Programming Pearls" (and a more hesitant recommendation for later books in the series); PP encourages you to think rationally about problems.

link|flag
vote up 0 vote down

The only software design type of book I have read is The C Programming Language by K&R. I read it the first time when I was 12 and I asked my dad for a book to teach me how to program. I keep going back to it time and again when ever I get a urge to program. Since I don't yet program for a living I don't have it all internalized.

Joel on Software is something worth reading even if you aren't a manager or team lead. If you are just starting out in the software industry it will give you an idea of what a software company should look like and have in place ie. The Joel Test.

link|flag
vote up 0 vote down

I'm backing the Mythical Man-Month as well, with all those before me. Other books have great insights on how to code, the practical knowledge of the craft, Brooks' work however so clearly illustrates those human failures that arise in any real software engineering project. It's almost a crime for young programmers to be sent out into the corporate world without having this in their back pocket.

link|flag
vote up 0 vote down

I would say:

  1. Pragmatic Programmer
  2. Don't Make Me Think - Steve Krug

Don't Make Me Think is a book about Usability, but I've found it applies equally well to code and "standards" and "best practices" ...

link|flag
vote up 0 vote down
link|flag
vote up 0 vote down

Code is Law - you are doing all this writing, editing, and thinking in [language of your choice] but WHY? What does you code MEAN? What will does it actually DO?

(I could have recommended a book on QA, but I didn't...)

link|flag
vote up 0 vote down

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

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 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 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 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 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 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 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
vote up 0 vote down

Depends on where the programmer is in terms of his understanding of the craft :) But yeah Code Complete is definitely the first one for me.

link|flag
vote up 0 vote down

For me, The Mythical Man-Month was an eye opener. Maybe not strictly a programming book, but it did make me think about how to organize a project and thus come up with a better result.

alt text

link|flag
vote up 0 vote down

Here are two I haven't seen mentioned:
I wish I had read "Ruminations on C++" by Koenig and Moo much sooner. That was the book that made OO concepts really click for me.
And I recommend Michael Abrash's "Zen of Code Optimization" for anyone else planning on starting a programming career in the mid 90s.

link|flag
vote up 0 vote down

alt text

link|flag
vote up 0 vote down

There isn't a single book I can pinpoint as more influential than the rest. A lot of the books that I would consider as influential to my current knowledge also wouldn't have made sense to me when I started programming.

link|flag
vote up 0 vote down

I would say that "Beyond Code - Learn to Distinguish Yourself in 9 Simple Steps" is quite a good and motivational book. I doesn't cover technical issues, but it describes ways of working with people, being professional, ... For me, this is a book you can read again and again if you are in need of some pep talk. Besides that, it is cheap and very easy and enjoyable to read in 3 to 4 hours.

There is a little review over at my blog: http://www.herrodius.com/blog/54

link|flag
vote up 0 vote down

Agile Software Development, Principles, Patterns, and Practices by Robert C. Martin

Agile Software Development

link|flag
vote up 0 vote down

Design Patterns, of course. And the UML User's Guide.

link|flag
vote up 0 vote down

"Code Complete" taught me some fundamental ways of thinking about programming.

"Object Thinking" by David West.

"The pleasure of finding things out" taken from various interviews with Richard Feynman - everyone should read this - programmer or not.

link|flag
vote up 0 vote down

recommended for Windows Programmer, Programming Windows

link|flag
vote up 0 vote down

A Whole New Mind, by Daniel Pink. Interesting take on the future of our industry.

I assume most of the folks reading this will have read the books at the top of the list already. So, i'll offer a book that takes a different look at our industry.

alt text

link|flag
prev 1 6 7 8 9 10 next

Your Answer

Get an OpenID
or

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