vote up 579 vote down star
857

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

282 Answers

prev 1 2 3 4 5 10 next
vote up 0 vote down

+1 for How to Win Friends and Influence People

link|flag
vote up 2 vote down

Mr. Bunny's Big Cup O' Java

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 -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 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 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 282 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 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 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 4 vote down

I recently read Dreaming in Code and found it to be an interesting read. Perhaps more so since the day I started reading it Chandler 1.0 was released. Reading about the growing pains and mistakes of a project team of talented people trying to "change the world" gives you a lot to learn from. Also Scott brings up a lot of programmer lore and wisdom in between that's just an entertaining read.

Beautiful Code had one or two things that made me think differently, particularly the chapter on top down operator precedence.

link|flag
vote up 5 vote down

The Design of Everyday Things and Things that Make Us Smart - both by Donald Norman

These apply to so much more than just user interface design... Make things that work as others would expect - even if the others are developers using code that you've created.

The Timeless Way of Building - Christopher Alexander

The original "patterns" book. Helps to understand why some software design just "feels" right and some does not.

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

Great question!

After some consideration, I would have to say The Fountainhead by Ayn Rand. Not a programming book, but makes you think about what you want out of your work at a higher level.

link|flag
vote up 2 vote down

This isn't a direct answer to the question, because I feel it's already been answered above, however, one of the books that definitely had an impact on how I code is Code Reading, Volume 1: The Open Source Perspective.

alt text

link|flag
vote up 0 vote down

The only software design type of book I have read is The C Programming Language by K&R. I read it the first time when I was 12 and I asked my dad for a book to teach me how to program. I keep going back to it time and again when ever I get a urge to program. Since I don't yet program for a living I don't have it all internalized.

Joel on Software is something worth reading even if you aren't a manager or team lead. If you are just starting out in the software industry it will give you an idea of what a software company should look like and have in place ie. The Joel Test.

link|flag
vote up 1 vote down

Hey, my favorite book, Alice in Wonderland, has been mentioned :D

Other than that... I was blown away when I read Javascript: The Definitive Guide, because at the time it was the only JS book I'd read that wasn't talking about crappy rollovers or things like that.

It may be the first time I learned the OO side of javascript, and the book was by far the most complete on the language (core, and browser-side).

I wish I'd read it before getting bad habits and a false image of JS.

Of course the situation is much different now, with many books by JS gurus who have written stylish and robust JS like jQuery and the like...

link|flag
vote up 14 vote down

A great follow on to Code Complete - indispensable once you start working on projects of any decent size & need to communicate to your stakeholders about project delivery dates, etc.

Software Estimation by Steve McConnel

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

Design Patterns by the Gang of Four, I keep referring to it over and over again.

link|flag
vote up 16 vote down

alt text

Domain Driven Design have great guidelines on how to build your software model in a way it communicates better.

alt text

Effective Java 2ed will teach you how to write beatiful and effective code. It's a java book, but there's many cross-language concepts.

link|flag
vote up 0 vote down

I'm backing the Mythical Man-Month as well, with all those before me. Other books have great insights on how to code, the practical knowledge of the craft, Brooks' work however so clearly illustrates those human failures that arise in any real software engineering project. It's almost a crime for young programmers to be sent out into the corporate world without having this in their back pocket.

link|flag
vote up 0 vote down

I would say:

  1. Pragmatic Programmer
  2. Don't Make Me Think - Steve Krug

Don't Make Me Think is a book about Usability, but I've found it applies equally well to code and "standards" and "best practices" ...

link|flag
vote up 1 vote down
  • Sedgewick's Algorithms in C++
  • Effective Java by Joshua Bloch
  • Java Performance Tuning by Shirazi
link|flag
vote up 0 vote down
link|flag
vote up 0 vote down

Code is Law - you are doing all this writing, editing, and thinking in [language of your choice] but WHY? What does you code MEAN? What will does it actually DO?

(I could have recommended a book on QA, but I didn't...)

link|flag
vote up 95 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
2  
If you "didn't understand half of it", then why are you recommending it? - tinyurl.com/nom56r – Jim G. Aug 25 at 18:17
show 4 more comments
vote up 82 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 4 more comments
vote up -1 vote down

Zen and the Art of Motorcycle Maintenance. Go now, read it.

link|flag
vote up 188 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
2  
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 115 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
15  
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 10 more comments
vote up 5 vote down

I was lucky enough to read this pretty early in my so-called career:

Philip and Alex's Guide to Web Publishing

It was cutting edge in 1998 and still has plenty of relevant points. I found it an enjoyable read with a real sense of humour (not the twee kind you often get in software books). When he gets down to the details he talks about specific platforms though, so it shows it's age when Oracle 7 is mentioned!

I would still put this at the top of the required reading list for a web developer because of the way it assumes no prior knowledge, starting from first principles ("what's HTML?")

alt text

link|flag
vote up 1 vote down

Pro Spring is a superb introduction to the world of Inversion of Control and Dependency Injection. If you're not aware of these practices and their implications - the balance of topics and technical detail in Pro Spring is excellent. It builds a great case and consequent personal foundation.

Another book I'd suggest would be Robert Martin's Agile Software Development (ASD). Code smells, agile techniques, test driven dev, principles ... a well-written balance of many different programming facets.

More traditional classics would include the infamous GoF Design Patterns, Bertrand Meyer's Object Oriented Software Construction, Booch's Object Oriented Analysis and Design, Scott Meyer's "Effective C++'" series and a lesser known book I enjoyed by Gunderloy, Coder to Developer.

And while books are nice ... don't forget radio!

... let me add one more thing. If you haven't already discovered safari - take a look. It is more addictive than stack overflow :-) I've found that with my google type habits - I need the more expensive subscription so I can look at any book at any time - but I'd recommend the trial to anyone even remotely interested.

(ah yes, a little obj-C today, cocoa tomorrow, patterns? soa? what was that example in that cookbook? What did Steve say in the second edition? Should I buy this book? ... a subscription like this is great if you'd like some continuity and context to what you're googling ...)

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