vote up 71 vote down star
105

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
3  
Duplicate of stackoverflow.com/questions/1711 – Huppie Sep 16 '08 at 14:24
1  
This question should really be closed ... as it is a duplicate. – mattruma Sep 16 '08 at 15:23
show 3 more comments

223 Answers

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

Expert C Programming: Deep C Secrets by Peter Van Der Linden

link|flag
vote up -3 vote down

None! Books are old school, most info on the web is more current and relevant.

link|flag
vote up 0 vote down

For learning how to program: The C Programming Language by Kernigahan and Ritchie although that probably has more to do with my age. For changing my worldview with respect to developing software: Agile Software Development by Alistair Cockburn and Extreme Programming Explained by Kent Beck. More recently books on Test Driven Development.

link|flag
vote up 1 vote down

Working Effectively with Legacy Code by Feathers

I actually ordered this book one afternoon because I saw it laying in the back seat of someone's car in the parking lot at lunch. The title grabbed me because I was, at the time, trying to figure out how to deal with making a lot of small modifications to a huge code base that had been developed a decade ago and "tweaked" numerous times by people long gone since then. "Working effectively with legacy code" seemed like exactly what I needed to figure out how to do...

The book didn't disappoint.

link|flag
vote up 0 vote down

The Pragmatic Programmer is the best book I've read in years. I've read most of the other books mentioned in the answers here, but The PP (hereafter) steps back from specific languages and technologies, and focuses on practices that will make you more effective, regardless of technologies you're using now, or may encounter later on.

In that sense it's similar to (say) Design Patterns, in that it's agnostic with respect to your language etc. However it goes further into software development practices and looks at how you should be designing / writing / testing etc. I reference and recommend it in conversations with every client I deal with.

link|flag
vote up 0 vote down

I hate to be a suck-up, but I'm new to this profession and for me the most influential book so far has been More Joel on Software.

link|flag
vote up 0 vote down
  • Expert C Programming : Deep C Secrets - amazon
  • The C Programming Language - amazon
  • The C Puzzle Book - amazon
link|flag
vote up 2 vote down

Extreme Programming by Kent Beck

link|flag
vote up 0 vote down

Refactoring, Chapter 3. This will teach an intermediate/advanced programmer more about OOD than any other source I've seen.

Design patterns is good for a beginner, but by the time you are intermediate/advanced, you should be using these all anyway--so I always thought the best thing about the design patterns book was providing names so that we could discuss the things we already did.

link|flag
vote up 0 vote down

Code Complete Second Edition. Hands down opened my eyes to how development should go.

link|flag
vote up 0 vote down

A collection it was, and stunning. Edsger Dijkstra's (with some help from C.A.R. Hoare) little black book Structured Programming and particlarly the essay titled "On Our Inability To Do Much".

link|flag
vote up 0 vote down

My high school math teacher lent me a copy of http://www.amazon.com/Are-Your-Lights-Figure-Problem/dp/0932633161 that I have re-read many times. It has been invaluable, as a developer, and in life generally.

link|flag
vote up 0 vote down

It is not a book, seriously it was a blog www.codinghorror.com that introduced me to the world of good book and ideas

link|flag
vote up 1 vote down

As with others, yes, Code Complete, Bertrand Myers, and so on, are part of my SW dev foundation today. but way back the very first programming "book" was more of a booklet on the Intel 8008. Mail ordered from an ad in an electronics magazine. This had all the opcodes, programmer's model of the chip architecture, etc. No guidance on structuring code, commenting, compiling or linking, algorithms or any of that high level stuff! Now, in my career, i have a deep understanding of register-level programming, bits, pixels, interrupt handlers and all that, but am relatively an idiot at databases, networks, GUI apps, large business systems.

An interesting follow up question: has the way you started in programming been a benefit or hindrance to your career and an influence today, or was it so long ago it doesn't matter? What books helped you expand beyond your initial skills into broad new areas?

link|flag
vote up 2 vote down

The question is, "What book really made an impact of how you work as a developer?" Without any doubt, Programming Windows with MFC, by Jeff Prosise, is the book that had the greatest impact on HOW I work as a developer. It did not teach me the fundamentals of "programming" but it opened the world of Windows platform development to me and many thousands of other developers.

I had written a little Windows code previously in the "Petzold style" before MFC was developed. I quickly decided the Windows platform we just not worth the trouble as a developer. When Prosise came out with his MFC book, I realized (along with thousands of other non-Windows programmers) that I could create an easy to use interface that users would not just understand, but actually enjoy using. I devoured the book, making so many notes in it and turning down so many corners, I eventually bought a second copy.

Prosise, Jeff. Programming Windows with MFC 2nd Ed. Microsoft Press 1999 ISBN: 1-57231-695-0

link|flag
vote up 1 vote down

Most impact? K&R C second edition when I read it at college. It's effectively what started my career.

link|flag
vote up 1 vote down

The Productive Programmer by Ford

I'm not quite through this one yet, but I'm already thrilled by some of the tips/tricks I've picked up to become more...well...productive.

Sure, there's plenty of the stuff we all already know (use the keyboard shortcuts, DRY, etc). But there's plenty of new stuff to go with it. And careful readers will quickly start to see how things can be combined for even greater effect.

link|flag
vote up 1 vote down

Object Oriented Analysis and Design - by Grady Booch

link|flag
vote up 0 vote down

One of Andre La Mothe's game programming books from the mid 90's got me hooked to programming. I don't remember the original English name of the book.

link|flag
vote up 0 vote down

The C++ Series of programming books by Deitel and Deitel

link|flag
vote up 0 vote down

"Thinking in C++" by Bruce Eckel

link|flag
vote up 2 vote down

Domain Driven Design by Eric Evans

link|flag
vote up 0 vote down

Managing Gigabytes is an instant classic for thinking about the heavy lifting of information.

link|flag
vote up 0 vote down

C# for Experienced Programmers

or really anything from Dietel & Dietel. I have read several of their books, and everything has been awesome.

link|flag
vote up 0 vote down

Years ago, Bruce Eckel's Thinking in C++ taught me a great deal about C++ but also the importance of isolating an issue to a small 'sandbox' for study/analysis. This technique has greatly impacted my career and routinely helps me troubleshoot problems both for myself and others.

These days, I refer to Thinking in Java, which is written in the same style. Somehow, the style is beyond mere, simple 'examples' and profoundly gets at the heart of the issue.

I am so grateful that I will buy virtually anything by Eckel, sight unseen.

link|flag
vote up 0 vote down

Design Patterns: Elements of Reusable Object-Oriented Software AKA the Gang of Four book!

link|flag
vote up 1 vote down

Took my programing to a whole new level.

link|flag
vote up 2 vote down

The Mythical Man-Month required reading for any developer. The very fact it is as old as it is and still relevant makes it necessary reading.

link|flag
vote up 3 vote down

Actually the book that had a biggest influence on me is often not liked by the programmers: I am talking about Cooper's "Inmates are running the asylum". However this book forever changed the way I look and think about the things I am building.

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

When I first started, there was "Mastering Turbo Pascal" by Tom Swan. There is nothing terribly profound about this book. It was clear and concise with usable examples. Based on this knowledge, I spawned a software development career now 15+ years in.

link|flag
prev 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.