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 4 5 6 7 8 next
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 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 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

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

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

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

Extreme Programming by Kent Beck

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

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

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

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

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

The user's manual for Robert Uiterwyk's BASIC for the SWTPC 6800. This was in high school in 1976. (You youngsters have no idea...)

http://www.swtpc.com/mholley/BASIC_2/Uiterwyk.htm

link|flag
vote up 0 vote down

Object-Oriented Software Construction by Bertrand Meyer

link|flag
vote up 2 vote down

Working effectively with legacy code

and

Refactoring to Patterns

link|flag
vote up 0 vote down

The Unix Programming Environment by Kernighan and Pike.

The Unix Programming Environment

More than any other book, it taught me the benefits in building small, easily-tested tools that can be combined to do big things.

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

Practical C Programming by Steve Oualline, if for no other reason than that it was the first programming book that I read cover to cover, then started over with again. I might've gotten into programming eventually anyway, but it definitely kickstarted what has since become a life long interest, matter of study and career.

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

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

link|flag
1  
I think that the other books of the series are much underappreciated. They might be hard to read but worth a look. – akr Sep 18 '08 at 11:20
show 2 more comments
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 3 vote down

The Pragmatic Programmer...less about the technical details that Code Complete covers well, and more about thinking at a higher level about programming.

PP and CC, and the Mythical Man-Month should be on everyone's shelves. But they should read them before they put them on the shelf. Just saying.

link|flag
vote up 0 vote down

I'm going to cheat and answer with a short list:

  1. The C Programming Language, 1ed (Kernigan & Ritchie)
  2. Large Scale C++ Design (Lakos)
  3. Mr Bunny's Guide to ActiveX (Egremont III)
link|flag
vote up 0 vote down

I enjoy the "blog Book" -- The Best Software Writing - by Joel Spoksky

link|flag
vote up 0 vote down

Two: Programming Perl by Larry Wall and Agile Web Development with Rails, by Dave Thomas and DHH

I got complex data structures reading the section on Hash of Hashes in the "camel book", and finally saw MVC as something useful with Rails, learned by reading the Rails book.

link|flag
vote up 0 vote down
  • Code Complete
  • Pragmatic Programmer
  • Refactoring by Martin Fowler
  • Mythical Man Month
link|flag
vote up 2 vote down

While not strictly a software development book, I would highly recommend that Don't Make me Think! be considered in this list.

link|flag
prev 1 4 5 6 7 8 next

Your Answer

Get an OpenID
or

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