vote up 71 vote down star
104

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

My all-time favorite was the C# Back Book, by Matthew Telles.

link|flag
vote up 0 vote down

Head First Design Patterns and Code Complete

link|flag
vote up 0 vote down

"Algorithms in C" (1st edition) by Sedgewick taught me all about algorithms as well as teaching me all about the pitfalls of documentation and copy/pasting code as all the example code in this version was taken from the "Algorithms in Pascal" version and were simply passed through a simple code translator which did not adjust for the different indexing schemes.

link|flag
vote up 2 vote down

CLR via C#, by Jeffrey Richter

link|flag
vote up 0 vote down

The pragmatic programmer and Code Complete had the most impacts on my career

link|flag
vote up 0 vote down

Tenenbaum's first operating systems book. My first look at kernal level programming.

link|flag
vote up 0 vote down

code complete

link|flag
vote up 0 vote down

Mastering C++ from Tom Swan. It was the best kind of book, it had examples which were simple enough to teach concepts but useful enough to solve other problems. It was very readable, it was the first book I read when got to college, and it only needed to be read once.

link|flag
vote up 0 vote down

Donald Norman, 'The Design of Everyday Things'

Not about programming, per se, but about how things in the world should work -- kind of the psychology of usability.

It's been invaluable for me in designing both end-user interfaces and APIs.

link|flag
vote up 0 vote down

So far it would be Joel on Software as it has guided me here (by finding his blog) and found many more good books to read.

link|flag
vote up 1 vote down

GOF Design Patterns Fowler's Refactoring

link|flag
vote up 1 vote down

Structure and Interpretation of Computer Programs

link|flag
vote up 0 vote down

C++ BlackBook. KISS all the way through

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

Took my programing to a whole new level.

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

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

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

link|flag
vote up 2 vote down

Domain Driven Design by Eric Evans

link|flag
vote up 0 vote down

"Thinking in C++" by Bruce Eckel

link|flag
vote up 0 vote down

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

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

Object Oriented Analysis and Design - by Grady Booch

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

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

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