vote up 69 vote down star
99

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

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

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

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

Modern C++ Design by Andrei Alexandrescu

link|flag
vote up 1 vote down

Code Complete by Steve McConnell

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

The Pragmatic Programmer

link|flag
vote up 1 vote down

It's a toss up between Head First Design Patterns, for many of the reasons cited above, and Perl Testing: A Developer's Notebook, which should be one of the bibles for any Perl programmer wanting to write maintainable code.

link|flag
vote up 1 vote down

Development books:

  • K&R, naturally
  • Apple Machine Language (for the Apple II/IIe)
  • the Macintosh Programming reference library (MacOS 6-8)
  • *NIX Network Programming/Advanced *NIX Programming
  • TCP/IP Illustrated vol 1-3
  • The early O'Reilly library (early-mid '90s)

Non-development:

  • Wargames
link|flag
vote up 1 vote down

Win32 Programming by Charles Petzold

link|flag
vote up 1 vote down

The Career Programmer: Guerilla Tactics for an Imperfect World by Christopher Duncan

link|flag
vote up 1 vote down

The Little Schemer. I've never learned as much about programming than from this book. Teaches you how to solve a problem by decomposing the problem into a step and recursively applying it.

link|flag
vote up 1 vote down

Learning C# 2005, by Jesse Liberty & Brian MacDonald (O'Reilly).

ISBN 10: 0-596-10209-7.

When I first made the jump from ASP classic procedural code to object-oriented C# code in VS2005, this book set me on the right path.

link|flag
vote up 1 vote down

Software Tools by Brian W. Kernighan and P. J. Plauger by a wide margin had the most effect on me.

link|flag
vote up 1 vote down

Inside the C++ Object Model by Stan Lippman. It made C++ finally "click" for me, before it was all "magic". This book gave me a different frame of mind when approaching a new programming language.

link|flag
vote up 1 vote down

Literate Programming by Donald Knuth, it's a great book on code structure.

link|flag
vote up 1 vote down

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

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

Took my programing to a whole new level.

link|flag
vote up 1 vote down

Structure and Interpretation of Computer Programs

link|flag
vote up 1 vote down

GOF Design Patterns Fowler's Refactoring

link|flag
vote up 1 vote down

The Art of Computer Programming by Donald Knuth.

I had to read this at University and I bitched and moaned, like everyone else. But by the end of the course I praised the book, simply for the fact that it shows you why you can't create inefficient loops (conditionals, etc) in code.

On the lighter side, The Pragmatic Programmer is a close runner-up.

link|flag
vote up 1 vote down

The Practice of Programming

link|flag
vote up 1 vote down

The Art of Computer Programming, by Donald Knuth, especially volumes I and II. (Oops, is that two books?)

link|flag
vote up 1 vote down

This might not count as a "development book" but I have to throw it in anyway: Hackers by Stephen Levy. I found that it spoke to the emotional side of programming.

link|flag
vote up 1 vote down

Agile Software Development with Scrum by Ken Schwaber and Mike Beedle.

I used this book as the starting point to understanding Agile development.

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.