vote up 573 vote down star
834

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

278 Answers

prev 1 6 7 8 9 10 next
vote up 3 vote down

There are a lot of votes for Steve McConnell's Code Complete, but what about his Software Project Survival Guide book? I think they're both required reading but for different reasons.

link|flag
vote up 83 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 280 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 '08 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
3  
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 0 vote down

+1 for "The Mythical Man Month" - it's fascinating that the same issues exist in software projects after 30-40 years.

Another +1 for "Programming Pearls" (and a more hesitant recommendation for later books in the series); PP encourages you to think rationally about problems.

link|flag
vote up 2 vote down

While I agree that many of the books above are must-reads (Pragmatic Programmer, Mythical Man-Month, Art of Computer Programming, and SICP come to mind immediately), I'd like to go in a slightly different direction and recommend A Discipline of Programming by Edsger Dijkstra. Even though it's 32 years old, the emphasis on "design for verifiability" is highly relevant (even if "verifiability" means "proof" instead "unit tests").

link|flag
vote up -1 vote down

To answer the first question I would be original and say Code Complete;) And Pragmatic Programmer in a close second. But to answer the rephrased question:

If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, what book would it be?

I´m not quite sure. I do not think Code Complete would be as valuable in the beginning of my career. I´t is a harder question. Maybe "Object Oriented Analysis and Design" should top the list then.

link|flag
vote up 4 vote down

I have a few good books that strongly influenced me that I've not seen on this list so far:

The Psychology of Everyday Things by Donald Norman. The general principles of design for other people. This may seem to be mostly good for UI but if you think about it, it has applications almost anywhere there is an interface that someone besides the original developer has to work with; e. g. an API and designing the interface in such a way that other developers form the correct mental model and get appropriate feedback from the API itself.

The Art of Software Testing by Glen Myers. A good, general introduction to testing software; good for programmers to read to help them think like a tester i. e. think of what may go wrong and prepare for it.

By the way, I realize the question was the "Single Most Influential Book" but the discussion seems to have changed to listing good books for developers to read so I hope I can be forgiven for listing two good books rather than just one.

link|flag
vote up 2 vote down

Mr. Bunny's Big Cup O' Java

link|flag
vote up 0 vote down

+1 for How to Win Friends and Influence People

link|flag
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 0 vote down

I know so many others have had the same answer but needed to add my 2 cents:

Code Complete by Steven McConnell

link|flag
vote up 2 vote down

Ooh, a toss-up between Bentley's "Programming Pearls" and Kernighan and Ritchie's "The C Programming Language".

link|flag
show 2 more comments
vote up 370 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 algorithms. 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
9  
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
17  
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 11 vote down

I think that "The Art of Unix Programming" is an excellent book, by an excellent hacker/brilliant mind as Eric S. Raymond, who tries to make us understand a few principles of software design (simplicity mainly). This book is a must for every programming who is about to start a project under Unix platform.

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

Agile Software Development, Principles, Patterns, and Practices by Robert C. Martin

cover image

link|flag
3  
or the C# version thereof. Clean Code is a real page turner too. – Ruben Bartelink Jan 25 at 11:23
vote up 1 vote down

I'll second the Little Schemer and the Seasoned Schemer. Not necessarily because you want to write Scheme, but actually, reading and understanding these has changed the way I think even about my Java code at my day job.

link|flag
vote up 0 vote down

I second the recommendations for The Pragmatic Programmer and the Gang of Four's Design Patterns.

I also think that Joshua Bloch's Effective Java is first rate, even for those working in other languages. It's presented in an easy-to-digest, point-by-point style. I learned a lot from it about things like implementing hashCode() methods and so on.

link|flag
vote up 6 vote down

Maybe not the single most influential for every programmer but... to expand really expand your mind about computation in general, and to learn to write some very interesting programs, I recommend the
Computational Beauty of Nature.

alt text

BTW, the author is now head of Microsoft's Live Labs.

link|flag
vote up 5 vote down

Framework Design Guidelines will give you a very good start on how to organize code.

link|flag
1  
and dont forget thhe 2nd edition – Ruben Bartelink Jan 25 at 11:24
show 1 more comment
vote up 16 vote down

The books listed here in this question are great. Code Complete, Pragmatic Programmer, Head First Design Patterns, all great.

My contribution to this list is a free read and is really focused on getting back to (best practice) basics. Foundations of Programming is a free eBook from one of the contributors to the popular Alt.Net blogs CodeBetter, Karl Seguin.

Covers Domain Driven Design, Persistence, Dependency Injection, Unit Testing, ORM etc.

alt text

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

Since you didn't say you wanted programming books specifically, I can be a little more creative.

Every programmer should have read Lewis Carol's Alice in Wonderland.

Slightly more down-to-earth - every programmer should read Getting Things Done - especially the ones that I work with, because once you 'get it' you will be annoyed at how unorganized other people can be :)

link|flag
vote up 5 vote down
  1. Google
  2. Newsgroups and Forums (and now, SO)
  3. blogs

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.

link|flag
2  
Yeah, no doubt. But the question was specifically about books, so -1. "If you could go back in time and tell yourself to read a specific book [...], which book would it be?" - Google? – Jonik Apr 25 at 16:16
show 1 more comment
vote up 7 vote down

I though Jurgen did a decent job with his Top 100 Best Software Engineering Books, Ever.

link|flag
vote up 50 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 13 vote down

Not the most influential, but certainly a good read and absent so far is My Job Went To India by Chad Fowler. It consists of 52 chapters/mini essays giving guidance on how to differentiate yourself as a developer rather than a code monkey (whose work could easily be outsourced).

link|flag
vote up 0 vote down

NotMyself,

Not John, but answering you anyway. :)

Mythical Man-Month is the definitive text on projects going wrong. How it happens, what you can do to fix it, what you can't do to fix it. Since it is a classic a lot of people talk about it, so it helps if you have also read it.

The book is old and reading it today you will have a lot of wow I can't believe they did that moments. One that struck me in particular was how they managed documentation, actual hard copy to everyone, with daily edits printed and sent out, hundreds of pages. Compared with today were you would just have word doc or wiki.

It is a short book and doesn't take long to read, but is very informative.

link|flag
vote up 16 vote down

The C Programming Language. Seriously!

link|flag
show 1 more comment
vote up 212 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  
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 '09 at 16:49
11  
> 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 11 more comments
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.