vote up 565 vote down star
827

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

1 2 3 4 5 10 next
vote up 713 vote down check

Code Complete by Steve McConnell

  • "The encyclopedia of good programming practice, Code Complete focuses on individual craftsmanship -- all the things that add up to what we instinctively call "writing clean code." This is the kind of book that has 50 pages just talking about code layout and whitespace." --Joel (NB imo there's more to it than semantics)

Code Complete 2

link|flag
28  
You should already know everything in this book. Really. – Tim Williscroft Jan 12 at 6:22
107  
Everyone always recommends this book, but no one ever says why, which leaves me with the opinion that everyone must have been brainwashed. :P – chaiguy1337 Jan 17 at 3:19
34  
I read this book 3 years into my career. I hadn't taken a software engineering course nor a programming language constructs course but had taken some intro CS courses. It is by far the best single book I've ever read for becoming a better programmer. It won't make you a specialist but it will make you much more than a tinkerer. – Arnshea Apr 25 at 16:11
32  
The problem with this book is that for a beginner, it doesn't really make sense as the concepts are a little advanced. By the time you are ready to be able to read it, you should already know and practice 99% of the concepts in the book. – esac Apr 30 at 1:46
9  
That's the deal with common sense suggestions, like those found in this book. Every so often you need to be reminded of them to fall back in line. – JohnFx Jun 17 at 15:56
show 29 more comments
vote up 3 vote down

+1 for Code Complete

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

link|flag
vote up 157 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
3  
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 -2 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 107 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. – mgb Feb 3 at 17:32
13  
I masturbate to this book frequently – Janie Jul 23 at 22:37
show 6 more comments
vote up 165 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
11  
@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 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 603 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
31  
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  
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 9 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 129 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
13  
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
show 6 more comments
vote up 41 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 6 more comments
vote up 32 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 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 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 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 1 vote down
I am going to have to say Pragmatic Programmer. It gives the best overview for software developers/engineers. I found the book very useful starting out, and still after a few years of professional work.
link|flag
vote up 12 vote down

It depends on exactly what purpose you're aiming for - I like Code Complete for pure programming, and Don't Make Me Think is a great book on UI design.

link|flag
2  
I really rate 'Don't Make Me Think', its really easy to read which means its a lot easier to coax people to read it :) – Danielb Mar 18 at 15:46
vote up 46 vote down

book cover

The Inmates Are Running The Asylum: Why High Tech Products Drive Us Crazy and How to Restore the Sanity, or any of Alan Cooper's books.

Because most programmers produce more WTFs/minute in the user interface than they do in the source code.

link|flag
1  
Can't upvote this enough. – Anderson Imes Oct 2 at 18:51
vote up 82 vote down

Working Effectively with Legacy Code

by Michael Feathers. I don't think that any book has affected my opinion of how I code more than this one. It explicitly tells you how to deal with someone elses code but implicitly you'll learn what to avoid (and why).

Edit: Makes sense now.

alt text

link|flag
1  
I agree - I wish I had read that book earlier. – David Grant Oct 13 '08 at 14:21
2  
Agree. Too many developers talk about writing software with a clean slate. But I'd think that almost all developers spend some time eating other people's dog food (or is that dog poo?). – Bernard Dy Dec 23 '08 at 16:23
1  
+1. I've worked with a PM who was obsessed with the "clean slate" thing - even keeping new recruits away from the old codebase in case they picked up bad habits from it. The company is now stuck with a bunch of half-functional rewrites but no improvement in functionality, and is dying. – finnw Jan 26 at 16:26
vote up 104 vote down

I know that Design Patterns by the Gang of Four is a standard text, but rather than try and read that brick of a book start with the easier Head-First Design Patterns, and once you have got your head around the basic principles, progress to the great GoF bible...

Image

link|flag
16  
I find the head-first series sickeningly unreadable. – Draemon Dec 18 '08 at 5:34
8  
I found Head-First Design Patterns very biased towards food based businesses, I'm not sure what they were trying to say about developers! – Antony Scott Mar 6 at 21:42
3  
@Sylvain - it's not meant to be a reference book, it is merely an introduction to design patterns that I believe is easier to study than the GOF book. Yes, once you have got your head around design patterns use the GOF book as your reference... – Calanus Jun 23 at 12:22
1  
the GoF book is a pattern catalog. It's not really intended to be a 'learning' tool about what design patterns are and how to use them. – SnOrfus Oct 2 at 18:29
5  
Any techie book with a picture of an attractive female on the cover automatically makes me think that the publisher doesn't take their market seriously. – Ether Oct 12 at 17:29
show 7 more comments
vote up 182 vote down

What about putting book image covers here, just the text is kinda'...boring.

Code Complete 2 The Pragmatic Programmer

link|flag
7  
So you've got both of the top answers here... but which one would you pick? – Akrikos Feb 18 at 18:51
21  
Someone should link images to the top answers and delete this. – Vanuan Jun 17 at 22:38
1  
Added the images to the above answers just now.. – Tim Jun 28 at 18:24
2  
hahaha looks like a recommender system just invaded SO :) – pageman Aug 7 at 14:35
2  
this isn't an answer – jimconstable Oct 1 at 0:22
show 2 more comments
vote up 2 vote down

@NotMyself,

The Mythical Man Month tells a great story about the common themes of delivering software: what works, what doesn't, etc. It's amazing that the book is 30 years old and is still highly relevant.

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

The Bible, followed by How to win friends and influence people. Neither are specific to any field but they are the two books that have had the biggest (good) impact on my life.

link|flag
1  
Every programmer that needs to meet people should read the latter. As for the former I'm aware that there may be some disagreement over that which is not best discussed through the medium of comments on stackoverflow. – Teifion Jul 2 at 17:15
show 2 more comments
vote up 3 vote down

I can't believe no one's mentioned Structure and Interpretation of Computer Programs (SICP). It's not a beginner's (as in it shouldn't be the first programming book you read) but it's been quite influential to me. This book explains why concepts like design patterns, high cohesion and low coupling are good things. On top of that you will learn why being able to pass around functions as arguments and return values is a great asset. You'll never program the same way after you grasp this concept.

Code Complete is a great book, but I would say it's a secondary book. You can't be a great programmer if you don't know how to program and Code Complete doesn't teach you that. Once you know the important concepts you can start applying the lessons in Code Complete. SICP and Code Complete are completely different books. In fact, reading both is probably the biggest one-two punch I can suggest to programmers.

I used SICP in my college course so I'm not sure how it would be as teach-yourself book, but I've read it since college and it's written very clearly and should be accessible to anyone with some knowledge of programming.

link|flag
vote up 1 vote down

Programming Pearls by Jon Bentley.

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

I'm going to go a different route than the other answers so far...

Hackers: Heroes of the Computer Revolution. It's an informal history of computers that really gives you an amazing feel for how this whole "computer culture" formed. It had a very powerful effect on me when I read it, oh, sometime around 1988.

link|flag
vote up 2 vote down

The first edition of Code Complete was hugely influential in its time. The second edition was somehow, well, annoying. From his initial assertion that he had not expected to have to update the book at all, through his (dubious) claim to have pretty much invented Extreme Programming, the book just didn't deliver a real update to the original. Or maybe it's just that I was a decade older?

I don't think MMM would carry as much weight at the outset of one's career as it does when one has some personal experience to provide context. And the same, but in a different way, applies to another favourite, Refactoring.

I think if I had to choose one book to make the most beneficial difference in someone else's programming career, it would be The Pragmatic Programmer.

link|flag
vote up 2 vote down

I've been arounda while, so most books that I have found influential don't necessarily apply today. I do believe it is universally important to understand the platform that you are developing for (both hardware and OS). I also think it's important to learn from other peoples mistakes. So two books I would recommend are:

Computing Calamities and In Search of Stupidity: Over Twenty Years of High Tech Marketing Disasters

link|flag
vote up 23 vote down

I recommend Writing Solid Code. Old, but still very much worth a read.

link|flag
show 1 more comment
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.