vote up 371 vote down
star
470

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
add / show 1 more comment

264 Answers

1 2 3 4 5 9 next
vote up 516 vote down
check

Code Complete by Steve McConnell

Code Complete 2

link|flag
20 
i wasn't very impressed – Shawn Sep 23 at 18:08
7 
You should already know everything in this book. Really. – Tim Williscroft Jan 12 at 6:22
30 
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
12 
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
5 
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
add / show 19 more comments
vote up 380 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.

The Pragmatic Programmer

link|flag
9 
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 at 18:12
add / show 9 more comments
vote up 245 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 will be introduced only in chapter three), lazy evaluation, metaprogramming (well, metalinguistic abstraction), virtual machines, interpreters, and compilers.

As for SICP's suitability for beginners, I'll have to disagree with @Cristian. Personally, I probably would not 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.

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

link|flag
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 at 15:47
2 
www-mitpress.mit.edu/sicp/full-text/… – rm Feb 23 at 8:32
add / show 3 more comments
vote up 170 vote down

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

Code Complete 2 The Pragmatic Programmer

link|flag
1 
So you've got both of the top answers here... but which one would you pick? – Akrikos Feb 18 at 18:51
2 
Someone should link images to the top answers and delete this. – Vanuan Jun 17 at 22:38
add / show 1 more comment
vote up 165 vote down

The C Programming Language by Kernighan and Ritchie.

alt text

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
3 
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
1 
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
add / show 7 more comments
vote up 146 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
6 
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 at 19:31
add / show 4 more comments
vote up 125 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
3 
> 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 
My personal favourite! – Swanand Jun 2 at 5:40
add / show 7 more comments
vote up 119 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

I'm pretty sure there's a newer edition, but I will never forget the first edition's cover. This book made me realize just how magically awesome compilers truly are. :)

link|flag
1 
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 at 17:07
1 
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 at 10:21
add / show 7 more comments
vote up 100 vote down

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

link|flag
1 
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 at 16:33
add comment
vote up 86 vote down

+1 Mythical Man-Month - Great observations on the nature of the craft

link|flag
2 
I don't care what was "accepted". This is the answer. – T.E.D. Mar 26 at 17:58
add / show 1 more comment
vote up 82 vote down

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

alt text

link|flag
2 
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
add / show 4 more comments
vote up 75 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

link|flag
3 
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
add / show 5 more comments
vote up 71 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
add / show 3 more comments
vote up 62 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...

link|flag
4 
I find the head-first series sickeningly unreadable. – Draemon Dec 18 at 5:34
3 
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
add / show 4 more comments
vote up 53 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
add / show 1 more comment
vote up 48 vote down

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.

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
add / show 2 more comments
vote up 46 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.

link|flag
add / show 3 more comments
vote up 38 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
2 
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
add / show 2 more comments
vote up 32 vote down

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

link|flag
add / show 8 more comments
vote up 32 vote down

For managers, Peopleware is a must ... I also agree with the Pragmatic Programmer and would throw in Practices of an Agile Developer: Working in the Real World.

alt text

link|flag
add / show 2 more comments
vote up 30 vote down

I'd recommend Refactoring: Improving the Design of Existing Code.

link|flag
add comment
vote up 30 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
add comment
vote up 26 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
add / show 1 more comment
vote up 26 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
add comment
vote up 18 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
add comment
vote up 16 vote down

For programming, without question, the "correct" answer is Code Complete. This book is really unparallelled in setting a framework of thought around a disciplined approach to the actual construction of code. McConnell was able to do this in a way that was largely agnostic to language of implementation and even in the types of systems the programmer is working on...useful stuff to anyone who spends any part of their day actually writing code.

Code Complete is also noteworthy in that this book was really the first to tackle only the construction aspects coding completely and while followed with other books by other authors, I believe Code Complete still stands as the most ambitious and successful in convincing you the practices that Steve advocates are paramount to successful programming.

To throw in another book by Steve McConnell, I think the book Rapid Development is equally important. While this book is somewhat less unique in the subject matter of running successful development teams, it is equally fun to read as Code Complete and no less important to programming project team leaders.

Code Complete for the good of the individual. Rapid Development for the good of the team.

link|flag
add / show 2 more comments
vote up 15 vote down

I found The Practice of Programming a very good read.

link|flag
add comment
vote up 14 vote down

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

link|flag
add / show 1 more comment
vote up 12 vote down

The C Programming Language. Seriously!

link|flag
add / show 1 more comment
1 2 3 4 5 9 next

Your Answer

Get an OpenID
or

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