vote up 69 vote down star
98

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
1  
Duplicate of stackoverflow.com/questions/1711 – Huppie Sep 16 '08 at 14:24
show 3 more comments

219 Answers

1 2 3 4 5 8 next
vote up 154 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 8 vote down

The Art of Unix Programming by Eric Raymond

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

Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp by Peter Norvig

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

Design Patterns: Elements of Reusable Object-Oriented Software, by the GoF

link|flag
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 '08 at 18:24
show 3 more comments
vote up 2 vote down

Code Complete 2

Design Patterns in C#

link|flag
vote up 1 vote down

Modern C++ Design by Andrei Alexandrescu

link|flag
vote up 2 vote down

Code Complete, Second Edition

www.amazon.com

link|flag
vote up 2 vote down

I think code complete is going to be a hugely popular one for this question, for me it corrected many of my bad habits and re-affirmed my good practices.

Also for my Perl background I really like Perl Best Practices from Damian Conway. Perl can be a nasty language if you don't use style and best practices, which is what I was seeing in the scripts I was reading ( and sometimes writing ) .

I like the Head First Series, they are quite good and easy to read when your are not in the mood for more serious style books.

link|flag
vote up 1 vote down

Code Complete by Steve McConnell

link|flag
vote up 29 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 1 vote down

Code Complete followed closely by Head First Design Patterns

link|flag
vote up 1 vote down

Writing Solid Code by Steve Maguire.

link|flag
vote up 17 vote down

Patterns of Enterprise Application Architecture

link|flag
vote up 12 vote down

There are similar questions here and here.

link|flag
vote up 8 vote down

Programming Pearls b Jon Benley (both books)

link|flag
vote up 11 vote down

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

link|flag
vote up 6 vote down

This is very similar to this question.

link|flag
vote up 1 vote down

"Object-Oriented Analysis and Design with Applications" by Grady Booch. I read this a long time ago and it showed me that there could be a methodology to developing Object Oriented Software. Since then many other books have had an impact on me but this one got me started.

link|flag
vote up 0 vote down

The Interpretation of Object-Oriented Programming Languages by Ian Craig

Because it showed me how much more there was to OO than standard C++/Java idioms

link|flag
vote up 3 vote down

Programming Perl (O'Reilly)

link|flag
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 25 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 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 15 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 0 vote down

Programming in C - K & R

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.