vote up 591 vote down star
877

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

284 Answers

prev 1 6 7 8 9 10
vote up 2 vote down

Code Complete is the number one choice, but I'd also cite Gang of Four's Design Patterns and Craig Larman's Applying UML and Patterns.

The Timeless Way of Building, by Christopher Alexander, is another great one. Even though it's about archtecture, it's included in the bibliography of many great programming books I have already read.

Another one, from which I'm learning lots of new things, is Data Access Patterns, by Clifton Nock.

link|flag
vote up 12 vote down

The Pragmatic Programmer after 12 months programming (when you can code as easy as you write). Code Complete after ~6 months industry experience.

link|flag
vote up 3 vote down

@Peter Coulton -- you don't read Knuth, you study it.

For me, and my work... Purely Functional Data Structures is great for thinking and developing with functional languages in mind.

link|flag
vote up 34 vote down

I have a different answer -- I really liked Joel's Best Software Writing I.

Maybe that's just me... but that collection opened my eyes to the "bigger picture" and inspired me to think of my programming as an art/craft.

link|flag
1  
The contents of that book are available free on the web codinghorror.com/blog/archives/… – MarkJ Jan 27 at 12:16
show 1 more comment
vote up 43 vote down

Why's (Poignant) Guide to Ruby !!!!!

Chunky bacon.

link|flag
9  
It's probably fun to read if you're not already a programmer, but it's tedious if you're already a programmer and just want to know the overall language syntax (in which case, the PickAxe is a lot more useful) – Simon Howard Oct 18 '08 at 17:03
2  
@Phoenix yea by the end of it i had no idea what was going on – Tomek Oct 24 '08 at 4:07
1  
That's two hours I'll never get back... – mmyers Dec 18 '08 at 20:04
3  
That book was written by a raving lunatic. I loved it. ;) – GordonG Jul 31 at 5:31
show 7 more comments
vote up 141 vote down

I personally think Design Patterns by the Gang of Four is a very useful book. It's not about the "meta" aspects of programming like so many of the other suggestions, but it emphasises encapsulating good programming techniques as patterns, and has since encouraged others to come up with new patterns and antipatterns to use in programming dialogue.

Now for a rider....

@kevin, @modesty: Great answers! If I could place a 3-vote like on uservoice, I'd gladly use it here.

To the naysayers who downmodded them, I say: please, grow a sense of humour! :-)

link|flag
1  
This book is good, but I've all too often been the victim of someone over-eager to apply the patterns it contains. – PeterAllenWebb Oct 16 '08 at 17:01
15  
I like the Gang of Four (GoF) book. For most beginners I would recommend the O'Reilly 'Head First Design Patterns' as it is a bit easier to digest than the GoF. The difference between the two is the GoF is written by very intelligent researchers and the Head First is written by very good teachers! – Danielb Mar 18 at 15:45
1  
This is an awful book to give to a programmer who is just starting out. This book is for people who've already made factories and singletons and visitors and never knew what to call them. The jargon of patterns is as useful as the jargon baseball statistics to someone who has never played/watched baseball. A child first learning baseball doesn't need to understand a WHIP or batting average. Those are tools he will pick up as he becomes more familiar with the game. Even if it only gives him the knowledge that there is such a thing as a singleton, there are better books to start with. – jmucchiello Nov 8 at 9:52
show 5 more comments
vote up -1 vote down

@NotMyself

It contains a lot of really useful information on how to make sure your software project doesn't fail and what tends to trip up even the best development teams.

link|flag
vote up 621 vote down

The Pragmatic Programmer; it's more about your trade, and how to apply it than the code per se, but it's still very good.

  • "This is a great book for programmers who have learned the mechanics of programming, maybe in college, but don't quite feel secure deciding what to do. It's like the difference between drafting and architecture. What you learned in that class in college was drafting, and you can draw beautifully, but if you still feel like you wouldn't quite know where to begin if someone told you to write a P2P music-swapping network all by yourself, this is the book for you." --Joel

The Pragmatic Programmer

link|flag
33  
I personally rate this over Code Complete because it's at a higher level conceptually and is concise - easy to read and start benefiting from (Code Complete's dense detail is great when you want it). Due to this however, the book is aging a lot quicker - hopefully a new edition is on the way? – Gordon Hartley Oct 24 '08 at 18:12
2  
Well Harriyott, it'd have better be good, I've just ordered it on your recommendation! :D – Spedge Oct 29 '08 at 14:34
1  
Code Complete is good, but pragprog is much more concise and readable. – orip Dec 4 '08 at 16:33
1  
I really like the 'Pragmatic Programmer' too but I like 'Code Complete' too. I don't think these two books are mutually exclusive, as they cover different topics. – Danielb Mar 18 at 15:41
2  
Very overrated! – Jahanzeb Farooq Oct 8 at 11:09
show 8 more comments
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 171 vote down

The Art of Computer Programming if only for the effort Knuth put into it.

alt text

link|flag
15  
Are there any people who read this? I guess this is what you call a book to use, not to read... – nojevive May 22 at 21:51
2  
Upvoted just to get it above the silly zen book. Knuth's book is one I'll actually read and keep on my shelf. – Dietrich Epp Jun 2 at 5:22
6  
Jesus Christ, having "Zen..." on top of this is a crime against humanity. – mquander Jun 2 at 5:31
2  
Computer programming is not art. – sakra Sep 16 at 13:09
12  
@sakra: Trolling is an art. And if you read this book programming might become an art for you too. – Peter Coulton Sep 16 at 16:29
show 8 more comments
vote up 109 vote down

I recommend CODE by Charles Petzold. In this age of tools and IDEs that abstract a lot of complexity away from the programmers, this one is an eye opener.

alt text

link|flag
1  
The book every engeneer should read, not only programmer! – AnSGri Dec 14 '08 at 11:56
1  
I find it's useful for both managers (who aren't programmers) and increasingly new graduate programmers who don't seem to know whats under the hood. – Martin Beckett Feb 3 at 17:32
1  
I bought this book based on this post. I just finished reading it a couple of days ago. Definitely well worth it. Thanks! – Jason Down Sep 2 at 4:46
1  
I can't recommend this book highly enough! – Dinah Sep 30 at 18:10
1  
I got this book as a teenager, didn't understand the relevance or importance of most of it, but kept revisiting it as I learned more about computers, and eventually as a CS undergrad and now as a developer. It's a good traversal of the world of computers and I keep it on my bookshelf so I can brush up on fundamentals every now and again. – Matt Garrison Nov 20 at 19:51
show 3 more comments
vote up -3 vote down

John,

I am curious, why do you feel every developer should read The Mythical Man-Month? It is on my reading list but I have yet to read it.

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

In podcast 12, Jeff and Joel list a myriad of recommended books. Personally though I highly recommend The Mythical Man-Month.

image

link|flag
4  
I found this book interesting, but a little single minded. Make sure to get the "anniversary" edition, the author corrects many of the outdated principals in the additional chapters. – alumb Sep 16 '08 at 16:33
2  
I found it good but overrated too. – Jahanzeb Farooq Oct 8 at 11:07
show 2 more comments
vote up 3 vote down

+1 for Code Complete

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

link|flag
prev 1 6 7 8 9 10

Your Answer

Get an OpenID
or

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