vote up 547 vote down star
783

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

274 Answers

1 2 3 4 5 10 next
vote up 696 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
27  
You should already know everything in this book. Really. – Tim Williscroft Jan 12 at 6:22
99  
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
31  
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
7  
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 588 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
28  
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
show 9 more comments
vote up 362 vote down

alt text

Personally, Structure and Interpretation of Computer Programs is by far the most influential programming book I have ever read.

Some classics like Code Complete, Refactoring and Design Patterns teach you the effective working habits and the painstaking details of the trade. Others, like Peopleware, Psychology of Computer Programming and The Mythical Man-Month delve into the psychosocial aspects of software development. Numerous others deal with algoritms. These books all have their place.

SICP, however, is in a different league. It is a book that will enlighten you. It will evoke in you a passion for writing beautiful programs. Moreover, it will teach you to recognize and appreciate that very beauty. It will leave you with a state of awe and an unquenchable thirst to learn more. Other books may make you a better programmer; this book will make you a programmer.

And in the meanwhile, you will learn a thing or two about functional programming (side effects won't be introduced until chapter three), lazy evaluation, metaprogramming (well, metalinguistic abstraction), virtual machines, interpreters, and compilers.

Some think that SICP is not a beginner's book. Personally, I probably wouldn't have appreciated the book in full without having some programming experience under my belt, but I would definitely recommend it for a beginner. The book is, after all, written for the famous 6.001, the introductory programming course at MIT. It may require an intellectual effort (especially if you do the exercises - and you should), but the reward is well worth the price.

Not convinced? Read the Foreword or the Preface to the First Edition. The full text is freely available on the web.

link|flag
8  
Note that MIT is no longer using this (see lambda-the-ultimate.org/node/1840 ) but that in no way detracts from it being a great book. – pjz Sep 23 '08 at 21:12
1  
Duly noted. It's a shame. Same happened to my school as well - they even had the audacity to replace it with a Java course. – Antti Sykäri Oct 6 '08 at 15:47
15  
www-mitpress.mit.edu/sicp/full-text/… – roman m Feb 23 at 8:32
1  
Also the text book for University of California, Berkeley intro course CS 61A (at least it was 10 years ago) although it is heavily supplemented with OOP material. – Trey Apr 30 at 1:33
4  
Also the SICP lecture videos. youtube.com/results?search_query=sicp – Jared Updike Jun 11 at 23:21
show 1 more comment
vote up 268 vote down

The C Programming Language by Kernighan and Ritchie.

The C Programming Language Book

It is concise, easy to read, and it will teach you three things: the C programming language, how to think like a programmer, and the low-level computational model. (It is important to understand what's going on "under the hood".)

link|flag
6  
I didn't get to The C Programming Language until fairly late in my education, and it was a real eye opener. Having been programming in both C and C++ for a couple of years, I burned through the book going "so THAT's what's going on!" on essentially every page. Highly recommended. – Electrons_Ahoy Oct 15 '08 at 16:56
10  
K&R also set a very high standard for consiseness and readability. I wish other languages had similar reference manuals. It's a mark to aim for when writing documentation. – mpez0 Dec 18 at 18:45
1  
This is the book that came to my mind when I read the question. Great book. – Anthony Jan 29 at 5:11
2  
If you invent a new language and the manual is longer than K+R, you have done something wrong. – mgb Feb 3 at 17:36
2  
"teach you ... the low-level computational model." This is absolutely wrong. It most definitely does NOT teach you the low level computational model. It teaches you the c abstract machine model which is considerably different from what modern compilers produce or how that assembly executes on modern processors. This mindset perpetuates double checked locking bugs amongst others. If you want to understand the low level, read a modern compiler book (not dragon) and Hennesy and Patterson. All that said, K&R is a great book. – Jason Watkins Jun 9 at 20:16
show 10 more comments
vote up 219 vote down

I think I would have to recommend Refactoring: Improving the Design of Existing Code.

Refactoring: Improving the Design of Existing Code

link|flag
22  
I have to agree, my favorite programming quotation comes from this book: "Any fool can write code that a computer can understand. Good programmers write code that humans can understand." - Martin Fowler – Justin Standard Dec 2 '08 at 19:31
1  
I really like this book too, the code smells quick reference is very useful. – Danielb Mar 18 at 15:41
2  
It sure changes the way you think – Leyu Jun 3 at 12:46
show 2 more comments
vote up 202 vote down

Introduction to algorithms (Cormen, Leiserson, Rivest, Stein) - Code Complete teaches you how to program correctly, mythical man-month teaches you how to manage correctly, Design pattern teaches you how to design correctly...

This book teaches you how to write code.

Introduction to algorithms cover image

link|flag
2  
I used this book extensively in my undergraduate career. It it written as a text book not a reference book. This means that many of the central concepts are "left as an exersize for the reader". Great book for schools, I don't recommend it as a reference book. – alumb Sep 16 '08 at 16:36
1  
This book is a hard read and is overkill for a typical software developer. But it does provide a good overview in general on how to design algorithms. The typical job of business apps will not even use a fraction of the information in this book though. – Cervo Jan 2 at 16:49
9  
> This book teaches you how to write code. I have to disagree. It teaches you algorithms, not how to implement them. Sedgewick's books are better about this. – Blaisorblade Jan 13 at 3:22
1  
I have to disagree with most commentators (to date) - Without this book, or the rigorous way it teaches algorithms, I would've been hopelessly lost when the time came to move beyond "get data from server, transform and output in a nice html". When it came to writing algorithms, this book gave me the best tools for the job. The added bonus of having actual GOOD and understandable content is what puts this over the top (as opposed to "the art of programming" series). However, IMO, "how to create a hash map" is not as important as "how to think about creating a hash map". – Ran Biron May 3 at 8:27
1  
My personal favourite! – Swanand Jun 2 at 5:40
show 10 more comments
vote up 181 vote down

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

Code Complete 2 The Pragmatic Programmer

link|flag
6  
So you've got both of the top answers here... but which one would you pick? – Akrikos Feb 18 at 18:51
19  
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
1  
@pageman, what do you mean? – Jonik Aug 8 at 17:44
show 2 more comments
vote up 180 vote down

I'm surprised no one's mentioned the Dragon Book by Aho et al. (or if it has been mentioned, I missed it).

Compilers (The Dragon Book) by Aho et al Newer Version

I will never forget the first edition's cover. This book made me realize just how magically awesome compilers truly are. :)

link|flag
3  
Buy this book. Probably the best undergraduate text out there. Also, take compilers when doing an undergraduate Computing Science degree. It is often a hard course, but really worth it in the end. – alumb Sep 16 '08 at 16:38
3  
Absolutely. I think I learned more in that one semester of compilers that just about the rest of the program combined. And I still have that book on the shelf, too. – Electrons_Ahoy Oct 15 '08 at 17:07
2  
I agree, I have never had to write a compiler but out of all the courses I did for my degree Compiler Writing was my favourite and this book was probably why. – tpower Oct 16 '08 at 10:21
1  
I've got the second edition of this book, it's just mind-blowing. My favorite computing-related book. Not for everyone though, if you don't care about compilers, don't go for it. – SuperBloup Jul 4 at 9:21
1  
Everyone that claims they'll never use this stuff because they aren't writing compilers is missing out. Writing a compiler requires solving some of the most universal practical problems in programming. There are good, well-understood, general solutions to these problems, and any programmer will benefit from familiarity with them. And I'm not the only one who thinks so: steve-yegge.blogspot.com/2007/06/… – Steve S Sep 22 at 14:15
show 9 more comments
vote up 155 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
8  
@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 7 more comments
vote up 150 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 121 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
12  
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 106 vote down

For me the most influencal book is "Zen and the Art of Motorcycle Maintenance" by Robert Pirsig. It is all about no matter what you do, always thrive for perfection, know your tools and task at hand inside-out, and, most of all, have fun (because if you are having fun, everything automatically leads to better results).

alt text

This book has a more recent edition (2000).

link|flag
2  
I hadn't thought about this book, since I was thinking about programming books, but this book is great and you are totally correct. – icco Oct 6 '08 at 15:39
2  
Great choice. This book has influenced my programming in more ways than I can count. I keep trying to explain to people around me about "Gumption loss", but they don't seem able to get it unless they read the book. – endian Oct 21 '08 at 16:33
13  
You guys have drank some wacky kool aid. I've read this book and it's value to programmers specifically is weak at best. Still a good book though. – Factor Mystic Jun 7 at 23:39
1  
Having read this book 2 or 3 times, my opinion is that is not worth the paper that it is printed on. The "Tao of Pooh" addresses most of the same concepts in less than 1/4 of the page count and uses bigger print. "Zen" seems to wind its way through all sorts of crap while "Tao" zeros in on the guts of the matter – Peter M Jul 29 at 15:14
3  
-1: Irrelevant. And if you're going to post philosophy books, at least post good ones. – TrueWill Sep 18 at 3:13
show 9 more comments
vote up 105 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 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
9  
I masturbate to this book frequently – Janie Jul 23 at 22:37
show 5 more comments
vote up 102 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
15  
I find the head-first series sickeningly unreadable. – Draemon Dec 18 at 5:34
7  
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
3  
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 6 more comments
vote up 90 vote down

I really recommend programming pearls, it's got some amazing stuff in it, although I'm not ashamed to admit that I didn't understand half of it!

alt text

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

Effective C++ and More Effective C++

From the early days of my career, Scott Meyer's Effective C++ and later More Effective C++ both had an immediate impact on my programming ability. As a friend put it at the time, those books allow you to short cut the process of developing programming skills that otherwise would have taken years.

alt text

In the last year, the book with the biggest impact on my thinking has been The Cathedral and the Bazaar which taught me a lot about how the open source development process works and how to get rid of bugs from my code.

link|flag
1  
+1 for Scott Meyer's "Effective"s (there's also "Effective STL") – orip Dec 5 '08 at 8:44
1  
The effective STL isn't quite such a breakthrough, there are generally fewer gotchas in STL than C++. – mgb Feb 3 at 17:34
show 2 more comments
vote up 79 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 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 70 vote down

For a truly deep read, I'd suggest Douglas Hofstadter's Gödel, Escher, Bach. He dives pretty deep into many of the issues that programmers face every day- recursion, verifiability, proof, and boolean algebra. Great read, a little off the beaten path, occasionally challenging, and extremely rewarding once you fight through it and process what you've read.

link|flag
1  
Very fun book, this was optional reading for my Theory of Computation class at UW Madison. – Peter Turner Apr 13 at 18:03
2  
This is THE book that propelled me into a career in software development. Really timeless. – Guido Domenici May 5 at 12:42
1  
This is one of the best books I have EVER read, funny and very insightful.. – Jamie Lewis Jun 7 at 17:54
1  
This is one my favorite books of all time. – embdeddCoder Jul 8 at 21:37
3  
Very challenging, very rewarding. I call it one of the "head explody" kind of books, as in "Man's mind, once stretched by a new idea, never regains its original dimensions." - Oliver Wendell Holmes – Ether Oct 12 at 17:47
show 3 more comments
vote up 49 vote down

I agree with Cristian, I think we should not forget SICP, I think every programmer should use it, al least as an exercise, you can complement it with;

The Little Schemer
alt text and

The Seasoned Schemer

alt text

I also include in the reading list Code Complete, Applying UML and Patterns: An Introduction to Object-Oriented Analysis and Design and the Unified Process and Design Patterns and Design Patterns: Elements of Reusable Object-Oriented Software

link|flag
show 5 more comments
vote up 48 vote down

Coders at Work by Peter Seibel. A very influential book to learn from the experience of some of the top names in the field, how they think and work.

alt text

link|flag
3  
In case anyone missed it: the author was the guest on SO podcast #69 (blog.stackoverflow.com/2009/09/podcast-69) discussing this book and other things – Jonik Oct 7 at 18:45
show 2 more comments
vote up 48 vote down

Peopleware

Demarco and Lister demonstrate that the major issues of software development are human, not technical. Their answers aren't easy--just incredibly successful. New second edition features eight all-new chapters.

alt text

link|flag
show 5 more comments
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 37 vote down

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

link|flag
8  
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 at 20:04
1  
That book was written by a raving lunatic. I loved it. ;) – GordonG Jul 31 at 5:31
show 6 more comments
vote up 31 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 24 vote down

Clean Code

Clean Code has a lot in common with Code Complete but it's more concise and practical with lots of clear examples.

link|flag
1  
I'm judging thibook strictly by the cover: It's awesome! – GordonG Jul 31 at 6:07
1  
+1: An excellent book! – TrueWill Sep 18 at 3:15
show 1 more comment
vote up 22 vote down

Surprised that no one has mentioned Martin Fowler's Patterns of Enterprise Application Architecture yet

alt text

crap! didn't realize there are 7 pages of responses. at least this one has the book cover img.

link|flag
vote up 22 vote down

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

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

Robert M. Pirsig's Zen and the Art of Motorcycle Maintenance has a little section near the end about Gumption Traps. That's the best advice I've ever read on how to debug code or solve problems in general. The rest of the book is pretty good, too.

link|flag
vote up 21 vote down

ok, this is a slightly off-center answer, but believe it or not, it was on the reading list for a compsci course way back in the day. An excellent role model and a good book about curiosity.

alt text

link|flag
show 2 more comments
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.