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

219 Answers

prev 1 4 5 6 7 8 next
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 11 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 1 more comment
vote up 13 vote down

Domain Driven Design by Eric Evans

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

C++ How to Program, was very good for me as my first programing book.

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

Mine was The C Programming Language--the original "K&R" book. What fierce simplicity!

Very recently, I'm getting a lot out of Kent Beck's work.

link|flag
vote up 11 vote down

Kernighan and Richie's "The C Programming Language" - The only C book you'll ever need.

link|flag
show 2 more comments
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.