vote up 574 vote down star
845

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

280 Answers

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

+1 for Code Complete

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

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

Code Craft by Pete Goodliffe is a good read!

Code Craft

link|flag
vote up 3 vote down

Tracy Kidder's The Soul of a New Machine. Not the most influential but certainly one of my most enjoyed industry reads.

Tracy Kidder's The Soul of a New Machine

link|flag
vote up 3 vote down

alt text

C++ How to Program It is good for beginner.This is excellent book that full complete with 1500 pages.

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

Nobody seems to have mentioned Stroustup's The C++ Programming Language which is a great book that every C++ programmer should read.

I also think that Extreme Programming Explained: Embrace Change should be read by every programmer and manager. Many of the ideas in the book are common knowledge now but the book gives an intelligent and inspiring account of the pursuit of quality in software engineering.

I would second the recommendations for Knuth and Gang of Four which are classics.

link|flag
vote up 3 vote down

Neuromancer by Gibson

link|flag
vote up 3 vote down

Advanced Programming in the Unix Environment by Stevens and Rago (2005 Addison-Wesley Professional)

link|flag
vote up 3 vote down

The Tao Te Ching. Although it's a philosophy book and not a programming book, some of it's principles are very applicable to programming:

"Know when it's time to stop. If you don't know then stop when you are done."

Translation: Knowing your requirements means you know when to stop. If you don't know when to stop, you need to stop because the requirements have yet to be defined.

"The harder one tries, the more resistance one creates for oneself."

Translation: How many times have you worked on a problem for several hours, only to find the answer after taking a 15-minute break? The more you hammer at a problem, the harder it is going to be for you to solve it.

"One whose needs are simple can fulfill them easily."

Translation: Simple requirements lead to simple designs.

"When we lose the fundamentals, we supplant them with increasingly inferior values which we pretend are the true values."

Translation: Hubris is never a good substitute for good programming standards. If you get lax, no amount of design patterns will ever substitute for the lack of quality in your code.

link|flag
vote up 3 vote down

One of my personal favorites is Hacker's Delight, because it was as much fun to read as it was educational.

I hope the second edition will be released soon!

link|flag
vote up 3 vote down

For me it was Code Craft.

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

alt text

This last year I took a number of classes. I read

The Innovator's Dilemma (disruptive tech)
The Mythical Man Month (managing software)
Crossing the Chasm (startup)
Database Management Systems, The COW Book
Programming C#, The OSTRICH Book
Beginning iPhone Developmen, The GRAPEFRUIT Book

Each book was amazing but the Innovator's Dilemma by Clayton Christensen (1997!!!) is really a fantastic book, and it got me really thinking about the modern software world. The challenge addressed is disruptive technology, and how disk drive companies and non-technical companies are always disrupted by new, game changing technology. It gives one a new perspective when thinking about Google, probably the biggest 'web' company. Why do they have their hands in EVERYTHING? It's because they don't want to have their position disrupted by something new. The preview on google is plenty to get the idea. Read it!

link|flag
vote up 3 vote down

Adding to the great ones mentioned above:

Patterns of Enterprise Application Architecture

Enterprise Integration Patterns

link|flag
vote up 3 vote down

First read the best books regarding your language of choice and then regarding you OS of choice.

Then once you get the grasp of the language, please go through these language agnostic books. 1) Code Complete - Steve McConnell http://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670

2)Design Patterns: Elements of Reusable Object-Oriented Software - Erich Gamma Erich Gamma , Richard Helm, Ralph Johnson, John M. Vlissides http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612/ref=sr_1_1?ie=UTF8&qid=1248974754&sr=8-1

3)The Pragmatic Programmer - Andrew Hunt and Dave Thomas http://www.amazon.com/Pragmatic-Programmer-Journeyman-Master/dp/020161622X/ref=sr_1_1?ie=UTF8&qid=1248974843&sr=8-1

4)Refactoring: Improving the Design of Existing Code - Martin Fowler, Kent Beck, John Brant, and William Opdyke http://www.amazon.com/Refactoring-Improving-Existing-Addison-Wesley-Technology/dp/0201485672/ref=sr_1_1?ie=UTF8&qid=1248974905&sr=8-1

link|flag
vote up 3 vote down

Extreme Programming Explained: Embrace Change by Kent Beck. While I don't advocate a hardcore XP-or-the-highway take on software development, I wish I had been introduced to the principles in this book much earlier in my career. Unit testing, refactoring, simplicity, continuous integration, cost/time/quality/scope - these changed the way I looked at development. Before Agile, it was all about the debugger and fear of change requests. After Agile, those demons did not loom as large.

link|flag
vote up 3 vote down

All the Thinking in... books.

Bruce Eckel is THE genious of pedagogy! It's so easy to understand the implementation of polymorphism in C++. It contains all that you should known about C++, basic and advanced concepts. Way better than the Stroustrup's. I learnt Java with him too.

And last but not the least:

The C++ one is free !

http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html

link|flag
vote up 3 vote down

Another book that has not been mentioned yet, and SHOULD be required reading for EVERY programmer, newbies on up to gurus, in ANY programming language, is Michael Howard's Writing Secure Code (2nd Edition) from MSPress.

alt text

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

I'm going old school with this: I think the most influential book on programming ever written is The Art of Computer Programming.

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 2 vote down

Mr. Bunny's Big Cup O' Java

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