vote up 39 vote down
star
13

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?

PS. To keep Joel happy, one answer each. upmod any you agree with ;o)

offensive?
comments (3)

203 Answers:

vote up 79 vote down
check

Code Complete

link|offensive?
comments (1)
vote up 59 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.

link|offensive?
add comment
vote up 27 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.

link|offensive?
comments (1)
vote up 23 vote down

Refactoring by Martin Fowler

link|offensive?
comments (2)
vote up 19 vote down

The C Programming Language, Second Edition

link|offensive?
add comment
vote up 16 vote down

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

alt text

link|offensive?
add comment
vote up 15 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|offensive?
comments (1)
vote up 13 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|offensive?
comments (3)
vote up 12 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|offensive?
comments (2)
vote up 11 vote down

Working Effectively with Legacy Code by Michael C. Feathers.

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

link|offensive?
add comment
vote up 11 vote down

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

link|offensive?
add comment
vote up 8 vote down

There are similar questions here and here.

link|offensive?
add comment
vote up 6 vote down

Patterns of Enterprise Application Architecture

link|offensive?
add comment
vote up 6 vote down

Programming Pearls b Jon Benley (both books)

link|offensive?
add comment
vote up 6 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|offensive?
add comment
vote up 6 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|offensive?
add comment
vote up 6 vote down

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

link|offensive?
add comment
vote up 5 vote down

Code Complete by Steven McConnell 1993 version of Code Complete

I really should buy the updated version!

link|offensive?
comments (2)
vote up 5 vote down

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

link|offensive?
comments (2)
vote up 5 vote down

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

link|offensive?
comments (1)
vote up 4 vote down

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

link|offensive?
add comment
vote up 4 vote down

This is very similar to this question.

link|offensive?
add comment
vote up 4 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|offensive?
add comment
vote up 4 vote down

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

link|offensive?
add comment
vote up 3 vote down

Programming Perl (O'Reilly)

link|offensive?
add comment
vote up 3 vote down

Effective Java by Joshua Bloch

link|offensive?
add comment
vote up 3 vote down

Pragmatic Unit Testing in C# with NUnit by by Andy Hunt and Dave Thomas with Matt Hargett. It made me really understand unit testing and that affects my code in so many ways. It pushed me towards becoming better at understanding Object Orientation.

link|offensive?
add comment
vote up 3 vote down

Rapid Development by McConnell

link|offensive?
add comment
vote up 3 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|offensive?
comments (1)
vote up 3 vote down

Test Driven Development

link|offensive?
add comment

Your Answer:


hide preview
Get an OpenID.
or

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