vote up 69 vote down star
97

For me, Head First Design Patterns was a book that made Design Patterns click for me. Once I had read it, I found I could return to GoF and take more away from it and it really helped my move on as a developer.

What book really made an impact of how you work as a developer?

Note: One book per answer; upvote any you agree with ;o)

flag
show 4 more comments

219 Answers

1 2 3 4 5 8 next
vote up 153 vote down check

Code Complete

link|flag
2  
I'm reading code complete right now! It's cleared up a lot of the grey mist areas for me (should I name this variable numRecords..recordsCount...ah-hah!) – Mike Robinson Apr 27 at 13:16
4  
Doesn't make much sense to select one answer as "accepted" for a subjective poll like this, does it? – Jonik May 3 at 13:04
vote up 119 vote down

The Pragmatic Programmer

It made me think that programming is a craft, not just a job and should be something that I am proud of at the end of the day.

cover image

link|flag
vote up 58 vote down

The Mythical Man-Month is a great book; "no silver bullet", "second-system effect", "surgical teams", etc. all helped my development on a meta level. Sure, I couldn't code quick sort any better after reading, but I definitely made better programs.

cover image


Comments by David Berger:
Having started programming in the era of online tutorials, there weren't so many books per se that I would consider indispensable. But I also dropped into software development from the middle of nowhere in a company where all the developers were experienced and minded their own business, so I kind of missed a lot of the acculturation that people get with an academic program or a cohort of junior developers at a first job learning about team projects. The book is aimed rather abstractly at answering the questions "Why is large-scale software development so hard?" and "What can we do to make it more efficient?" I say rather abstractly, but truth be told there's a lot of history involved: it was a bit challenging for me to imagine what development was like in the '70s and '80s when the essays in this book were written.

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

Refactoring by Martin Fowler

cover image

link|flag
3  
Great book, it really helped me understand how to write proper object-oriented code instead of procedural code. – Rick Sep 17 '08 at 11:20
1  
Agreed, it's a superb book. I think it does help if you have a certain amount of coding experience in order to get the best out of it. It rewards re-reading too. – Jonathan Webb Sep 17 '08 at 22:53
1  
The eye-opener was the idea of working in small continuous steps to achieve radical restructuring while you keep the program working all the time. – Marius Gedminas Jul 27 at 18:18
vote up 47 vote down

alt text

Head First Design Patterns as well. Not the best book I have read, but it was fun to read and since then I started reading more general books about programming instead of the usual "XY Programming Language in 21 days".

link|flag
2  
I found the style of writing used in this book to be highly distracting. It was hard for me to stay focused on the material presented. – Ferruccio Dec 18 at 18:24
show 3 more comments
vote up 33 vote down

As a team lead, PeopleWare was invaluable on helping my fellow developers.

alt text

link|flag
vote up 28 vote down

Godel, Escher, Bach: An Eternal Golden Braid (A Metaphorical Fugue on Minds and Machines in the Spirit of Lewis Carroll) by Douglas Hofstadter.

OK, this isn't a programming book, but it was a big influence on me in my career as a software engineer. When I first read it way back when it got me excited about math, algorithms, and abstract thinking. Before reading this I had been toying with going back to school to finish my degree. By chance I stumbled upon this book while browsing in a book store. After reading this I knew I wanted to learn more and enrolled, finished my degree, and have been gainfully employed writing various kinds of code ever since.

link|flag
show 3 more comments
vote up 28 vote down

Working Effectively with Legacy Code by Michael C. Feathers.

alt text

The title doesn't do justice to how useful this book is in learning how to better structure software.

link|flag
vote up 25 vote down

Effective C++ by Scott Meyers. It's an oldie, but by far the best book on coding I've ever read.

Effective C++ by Scott Meyers

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

The Structure and Interpretation of Computer Programs by s Harold Abelson and Gerald Jay Sussman, with Julie Sussman. It's available online for free, and there are even video lectures to go along with it.

link|flag
2  
Just as a note - many people (myself included) find those oft-linked-to videos too big to download. As it turns out, MIT's OpenCourseWare website has re-encoded the videos to ~300MB MP4s. ocw.mit.edu/OcwWeb/… – Lucas Jones Jul 27 at 19:22
show 2 more comments
vote up 17 vote down

Patterns of Enterprise Application Architecture

link|flag
vote up 17 vote down

Looking for a real development book, I think Design Patterns (the Gang of four book) opened my eyes most. I started to get interested in TDD, reading about XP and Unit Testing. This changed my focus and interest in Software Development forever.

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

Effective Java by Joshua Bloch

link|flag
1  
Amen. By far the best Java book I know of. This, "The Pragmatic Programmer" and "Refactoring" are the top 3 books with most impact on me professionally. – Jonik Jan 25 at 17:03
show 1 more comment
vote up 13 vote down

Domain Driven Design by Eric Evans

link|flag
vote up 12 vote down

There are similar questions here and here.

link|flag
vote up 11 vote down

Writing Solid Code, by Steve Maguire. Code Complete is a close runner-up.

link|flag
vote up 11 vote down

Kernighan and Richie's "The C Programming Language" - The only C book you'll ever need.

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

The Art of Computer Programming vol I, by D. Knuth

link|flag
1  
I think that the other books of the series are much underappreciated. They might be hard to read but worth a look. – akr Sep 18 '08 at 11:20
show 1 more comment
vote up 10 vote down

Richard Feynman, "Surely You're Joking, Mr. Feynman"

link|flag
vote up 9 vote down

Many of the books already mentioned opened my eyes and influenced me, but a book every programmer should read is Test-Driven Development by Example. It really showed me the importance of unit tests and TDD and got me started very quick.

link|flag
vote up 8 vote down

The Art of Unix Programming by Eric Raymond

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

Programming Pearls b Jon Benley (both books)

link|flag
vote up 7 vote down

Effective C++ and More Effective C++ by Scott Myers.

link|flag
vote up 6 vote down

This is very similar to this question.

link|flag
vote up 6 vote down

I'm really surprised that nobody has mentioned Advanced Programming in the UNIX Environment by W. Richard Stevens. It's not necessarily the book that had the most impact on me, but it definitely deserves a place among many of the other greats mentioned here.

Even though I mostly did (and do) Perl programming, reading this book really helped me understand more about what's going on under the hood. It covers a ton of really critical low-level concepts like File IO, system files (passwd, group, etc), process control, signals, and so on.

Having some idea of how this stuff works at the C level is very useful, even if you never write any C code, because every language you use (on a Unix system) is using these APIs under the hood.

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

Code Complete by Steven McConnell 1993 version of Code Complete

I really should buy the updated version!

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

About Face - The Essentials of Interaction Design (now in third edition)

This book opened my eyes to a very different viewpoint of development, focused on the interactions of the end user. It also helped me realize that creating great software is about more than just patterns and architecture, it's about helping people achieve their goals.

link|flag
vote up 4 vote down

It's not strictly a development book and I believe that I've mentioned it in another answer somewhere but it's a book I really believe all developers should read, from php to Java to assembly developers.

Code

It really brings together what's under the hood in a computer, why memory shouldn't be wasted and some of the more interesting parts of the history of computing. It's an introduction to the computer and what it is. It gave me my ultimate passion for low level programming and helped me understand pointers and memory more than any other computer.

link|flag
vote up 4 vote down

Modern c++ Design.

by Andrei Alexandrescu

link|flag
show 1 more comment
1 2 3 4 5 8 next

Your Answer

Get an OpenID
or

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