vote up 591 vote down star
874

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

284 Answers

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

I found The Practice of Programming a very good read.

link|flag
vote up 21 vote down

@lurks

The Art Of UNIX Programming by Eric S. Raymond

It is useful regardless operating system you use.

link|flag
vote up 17 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
show 1 more comment
vote up 16 vote down

The C Programming Language. Seriously!

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

Code Complete is the classic.

However, Facts and Fallacies of Software Engineering by Robert Glass has a lot of good information on topics other than coding, for example people-issues, testing and process.

cover

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

It depends on exactly what purpose you're aiming for - I like Code Complete for pure programming, and Don't Make Me Think is a great book on UI design.

link|flag
2  
I really rate 'Don't Make Me Think', its really easy to read which means its a lot easier to coax people to read it :) – Danielb Mar 18 at 15:46
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 13 vote down

Strunk, William. Elements of Style

elements of style

link|flag
1  
I heard someone talking about this book on NPR: "When it comes to 'shall' and 'will,' Strunk and White gives the following example: 'A swimmer in distress cries, "I shall drown; no one will save me!" But a suicide says, "I will drown; no one shall save me!" And I say, "You two pedantic know-it-alls deserve to drown."'" – Beska Aug 14 at 18:27
show 1 more comment
vote up 12 vote down

The Pragmatic Programmer after 12 months programming (when you can code as easy as you write). Code Complete after ~6 months industry experience.

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

I'd suggest "Modern C++ Design" by Andrei Alexandrescu, a really astonishing book about the awesome tricks and patterns you can achieve with C++, preprocessor directives and templates.

Modern C++ Design

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

This is a great book for a Java developer new or old:

Effective Java by Joshua Bloch

link|flag
1  
This was really eye-opening for me as junior developer a few years ago, and it's definitely the Java book I'd recommend (others agree: stackoverflow.com/questions/75102). But it is sufficiently Java specific that I don't think every programmer should necessarily read it. – Jonik Apr 25 at 16:00
vote up 11 vote down

How to Win Friends and Influence People by Dale Carnegie.

It taught me that in order to persuade people of your ideas, or lead them away from bad practices, you can never tell them that they are wrong. To do so will only entrench them further in their own ideas.

link|flag
1  
Of course, Microsoft's techie culture is structured around the decisive moment to call your manager brain-dead. – kmarsh Aug 5 at 12:15
vote up 10 vote down

I'm going to go a different route than the other answers so far...

Hackers: Heroes of the Computer Revolution. It's an informal history of computers that really gives you an amazing feel for how this whole "computer culture" formed. It had a very powerful effect on me when I read it, oh, sometime around 1988.

link|flag
vote up 10 vote down

alt text

link|flag
vote up 10 vote down

Pragmatic Thinking and Learning: Refactor Your Wetware by Andy Hunt.

link|flag
2  
Maybe not as important as "The Pragmatic Programmer", but still very much recommended. +1 – Jonik Jul 23 at 14:00
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 8 vote down

Here Comes Everybody: The Power of Organizing Without Organizations - Clay Shirky alt text

This is an incredible book about the social effects of the internet. A must read for anyone in the tech industry, doubly so for programmers.

Here Comes Everybody: The Power of Organizing Without Organizations is a book about what happens when people are given the tools to do things together, without needing traditional organizational structures.

link|flag
vote up 8 vote down

It's an oldie, but still worth reading:

alt text

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

The Elements Of Computing Systems

This book walks the reader through the process of building a computer system given NAND gates and flip flops. It gives a good introduction to the "big picture".

The Elements Of Computing Systems

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

I'm amazed that no one has suggested The Story About Ping yet.

If this text is displayed then the link to the image may be broken - apologies to Lynx users.

link|flag
vote up 8 vote down

I know this is a graphics book, but I am a graphics programmer and have been my whole career. Plus it's written in 'C' :)

It's as fundamental to me as the original K&R C Programming Language book.

Computer Graphics: Principles and Practice in C (2nd Edition) alt text

link|flag
vote up 7 vote down

Getting Real by 37 Signals. It doesn't matter if you don't "ship" something at the end of the day.

link|flag
vote up 7 vote down

Alice's Adventures in Wonderland Best programmers have read the book!

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.