vote up 568 vote down star
829

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

Code Craft

I personally think this is a little better than the venerable Code Complete. Pete Goodliffe has a very practical approach, and the book is a lighter read.

link|flag
vote up 0 vote down

Anything by Edward Tufte: The Visual Display of Quantitative Information; Envisioning Information; Visual Explanations

link|flag
vote up 0 vote down

The key word in the question is "career". Read "How to Win Friends and Influence People". Nothing I've read made me even close to as much money and advanced my career as much as that book.

To have a successful career, you will need to interact well with other people. You've probably been exposed to dozens of technical books in college. But how much did you study how to get along with your coworkers, bosses, customers, etc. in college? "How to Win Friends and Influence People" gives you a blueprint for that. Your career will be much much more successful and smoother.

I was so astonished by this book, that I've given away about 30 copies of it. Not a single person has failed to be impressed by it.

link|flag
vote up 0 vote down

Dijkstra's "A Discipline of Programming"

link|flag
vote up 0 vote down

If you write code in C then Expert C Programming is an eye opener. It has answers to all the things you wondered why it works this way. Peter Van Der Linden has a great writing style and makes arcane concepts very readable. A must read for all C developers

link|flag
vote up 0 vote down

Mythical man month ++ Code Complete 2 ++

link|flag
vote up 0 vote down

You may take a look at

http://gleichmann.wordpress.com/2008/09/19/yet-another-book-recommendation-list-software-development/

I found thise books very valuable in the field of general software development.

Greetings

Mario

link|flag
vote up 0 vote down

The books I suggest everbody to read are: Code complete Radpid development Head first software development Web engineering

link|flag
vote up 0 vote down

Tao Te Ching - it transcends programming and will also help you deal with your own existence. Anyone unfamiliar with this text should find a copy and read through- as well as learn about the Tao. One easy way to learn is to read 'The Tao of poo' which walks through the main concepts of the Tao using Winnie the poo characters (not a childrens book).

link|flag
vote up 0 vote down

Graphics Programming in Windows is difficult to fault.

link|flag
vote up 0 vote down

Writing Solid Code by Steve Maguire

Code Complete by Steve McConnell

link|flag
vote up 0 vote down

Programming is a creative task, and there are a lot of great books about creative tasks in general. Here's one:

Whatever you think, think the opposite.

By Paul Arden.

This is a small book that helps you generate big ideas. Arden came from an advertising background, but he wrote for a general audience of creative individuals. If you don't think that's you, you should think some more.

Yes, there are great domain-specific books for programmers. But programmers, as creative professionals, should make more of an effort to tap into the broader world of books for "creatives."

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.