vote up 591 vote down star
877

If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?

I expect this list to be varied and to cover a wide range of things. For me, the book would be Code Complete. After reading that book, I was able to get out of the immediate task mindset and begin to think about the bigger picture, quality and maintainability.

Suggest your programming books

flag
37  
One of the most important question ever asked on stackoverflow :) – Sylvain Jun 9 at 19:30
3  
Browsing this thread make me release how ugly most programming related books are. Very good thread thou! – Carl Bergquist Aug 5 at 12:09
show 3 more comments

284 Answers

prev 1 6 7 8 9 10 next
vote up 1 vote down

One of the best books on what NOT to do is AntiPatterns (Refactoring Software, Architectures and Projects in Crisis) from Wiley.

link|flag
vote up 1 vote down

George Polya's "How To Solve It"

It might seem dry, overly mathematical, and antiquated, but there are few better books on learning how to break a seemingly formidable problem into workable sub-problems and how to learn from previous problems.

link|flag
vote up 1 vote down

The key word in the question is "career". Read "How to Win Friends and Influence People". Nothing I've read made me even close to as much money and advanced my career as much as that book.

To have a successful career, you will need to interact well with other people. You've probably been exposed to dozens of technical books in college. But how much did you study how to get along with your coworkers, bosses, customers, etc. in college? "How to Win Friends and Influence People" gives you a blueprint for that. Your career will be much much more successful and smoother.

I was so astonished by this book, that I've given away about 30 copies of it. Not a single person has failed to be impressed by it.

link|flag
vote up 1 vote down

Dijkstra's "A Discipline of Programming"

link|flag
vote up 1 vote down

If you write code in C then Expert C Programming is an eye opener. It has answers to all the things you wondered why it works this way. Peter Van Der Linden has a great writing style and makes arcane concepts very readable. A must read for all C developers

link|flag
vote up 1 vote down

Mythical man month ++ Code Complete 2 ++

link|flag
vote up 1 vote down

You may take a look at

http://gleichmann.wordpress.com/2008/09/19/yet-another-book-recommendation-list-software-development/

I found thise books very valuable in the field of general software development.

Greetings

Mario

link|flag
vote up 1 vote down

The books I suggest everbody to read are: Code complete Radpid development Head first software development Web engineering

link|flag
vote up 1 vote down

Tao Te Ching - it transcends programming and will also help you deal with your own existence. Anyone unfamiliar with this text should find a copy and read through- as well as learn about the Tao. One easy way to learn is to read 'The Tao of poo' which walks through the main concepts of the Tao using Winnie the poo characters (not a childrens book).

link|flag
vote up 1 vote down

Graphics Programming in Windows is difficult to fault.

link|flag
vote up 1 vote down

Writing Solid Code by Steve Maguire

Code Complete by Steve McConnell

link|flag
vote up 1 vote down

Programming is a creative task, and there are a lot of great books about creative tasks in general. Here's one:

Whatever you think, think the opposite.

By Paul Arden.

This is a small book that helps you generate big ideas. Arden came from an advertising background, but he wrote for a general audience of creative individuals. If you don't think that's you, you should think some more.

Yes, there are great domain-specific books for programmers. But programmers, as creative professionals, should make more of an effort to tap into the broader world of books for "creatives."

link|flag
vote up 1 vote down

Definitively Software Craftsmanship alt text this book explains a lot of things about software engineering, system development. It's also extremly useful to understand the difference between different kind of product developement: web VS shrinkwrap VS IBM framework. What people had in mind when they conceived waterfall model? Read this and all we'll become clear (hopefully)

link|flag
vote up 1 vote down

Still a worthwhile classic is the Interface Hall of Shame. This website detailed a huge assortment of interface design faux pas that is quite entertaining. The original iarchitect.com no longer exists, but others have re-established the HOS on their own websites.

link|flag
vote up 1 vote down

Not a programming book, per se, but The soul of a new machine[Amazon] by Tracy Kidder. It gives a rare insight in how computers are designed, from the bus up (as it were) and the trade-offs between what's provided as machine instructions and what's left to software.

link|flag
vote up 1 vote down

How to Solve It: A new aspect of mathematical method Although not directly related to computer programming but it does teach you the art of problem solving and that's what computer programming is all about.

link|flag
vote up 1 vote down

"The Fortran Coloring Book" by Dr. Roger Kaufman (1978, ISBN:0262610264)

What a silly concept - more basic than even a "Dummies" book! But it works for any language (with a few fortran specific examples of course), explaining the basic concepts of logic, variables, i/o, etc. in a very understandable and "Painfully Funny" way.

It's enough to get a ten year old interested in programming...

alt text

(Found cover photo on a Flickr user account)

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

I'm reading now Agile Software Development, Principles, Patterns and Practices. For those interested in XP and Object-Oriented Design, this is a classic reading.

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

Here's an excellent book that is not as widely applauded, but is full of deep insight: Agile Software Development: The Cooperative Game, by Alistair Cockburn.

What's so special about it? Well, clearly everyone has heard the term "Agile", and it seems most are believers these days. Whether you believe or not, though, there are some deep principles behind why the Agile movement exists. This book uncovers and articulates these principles in a precise, scientific way. Some of the principles are (btw, these are my words, not Alistair's):

  1. The hardest thing about team software development is getting everyone's brains to have the same understanding. We are building huge, elaborate, complex systems which are invisible in the tangible world. The better you are at getting more peoples' brains to share deeper understanding, the more effective your team will be at software development. This is the underlying reason that pair programming makes sense. Most people dismiss it (and I did too initially), but with this principle in mind I highly recommend that you give it another shot. You wind up with TWO people who deeply understand the subsystem you just built ... there aren't many other ways to get such a deep information transfer so quickly. It is like a Vulcan mind meld.
  2. You don't always need words to communicate deep understanding quickly. And a corollary: too many words, and you exceed the listener/reader's capacity, meaning the understanding transfer you're attempting does not happen. Consider that children learn how to speak language by being "immersed" and "absorbing". Not just language either ... he gives the example of some kids playing with trains on the floor. Along comes another kid who has never even SEEN a train before ... but by watching the other kids, he picks up the gist of the game and plays right along. This happens all the time between humans. This along with the corollary about too many words helps you see how misguided it was in the old "waterfall" days to try to write 700 page detailed requirements specifications.

There is so much more in there too. I'll shut up now, but I HIGHLY recommend this book!

link|flag
show 2 more comments
vote up 1 vote down

Difficult to get your hands on it now, but Software Tools by Brian W. Kernighan and P.J. Plauger, is always time well spent.

link|flag
vote up 1 vote down

Concepts, Techniques and Models of Computer Programming

link|flag
vote up 1 vote down

Though I agree with The Pragmatic Programmer, I would also recommend The Practice of Programming. It came out around the same time and never gained the level of notoriety as the Pragmatic series, but TPoP is a great book and, most importantly, not a massive undertaking to read. Thus, the reader gets a lot of return for his/her time investment in reading/ingesting it.

link|flag
vote up 1 vote down

I'm with many others. The C Programming Language (K&R) is probably one of the most influential book of programming :)

link|flag
vote up 1 vote down

Dijkstra's A Discipline of Programming is a true classic. It will change the readers' way of reasoning about programs - it certainly has changed mine.

An easier read would be Gries' Science of Programming - it is along the same lines, but easier to read.

As an aside, I must mention that we are still struggling to come up with a scheme that these books propose for concurrent programs.

link|flag
vote up 1 vote down

It seems most people have already touched on the some very good books. One which really helped me out was Effective C#: 50 Ways to Improve your C#. I'd be remiss if I didn't mention The Tao of Pooh. Philosophy books can be good for the soul, and the code.

link|flag
vote up 1 vote down

My career as a developper is starting, so I cannot directly answer the question. But as .NET developper, the book that helped me the most in framework and reusable libraries design is "Framework Design Guidelines" by Brad Abrams. The book solves a lot of issue you can encounter when you are thinking about naming and crucial design choices. This is the best way to produce high reusable assemblies in .NET.

alt text

I am pretty surprised that nobody mentioned that book. What is sure is that it has been really influential on my design and naming habits when writing reusable assemblies.

One thing I really appreciate in this book is the notes of .NET Framework developers giving details on issues they had when designing the .NET Framework, which I think are good advices as it is representative of a well designed framework.

link|flag
vote up 1 vote down

It's a brand new book and I've only just skimmed it but Growing Object-Oriented Software, Guided by Tests right now is THE book on TDD. It really concentrates on the "design" part of software development and how it is closely related to how you develop code writing tests first. I've enjoyed other books on TDD and unit testing but this takes it to a higher level, I'm pretty sure this one is destined to be a classic.

link|flag
vote up 1 vote down

I'm late to this question but apparently still have something unique to offer... Software Engineering Economics by Barry Boehm which, to summarize, says that if you want to really improve software productivity get better people since better tools, hardware, languages, methods, etc. will all have a marginal impact. Only better people drive up productivity by significant amounts. I emphasize, this is better engineers, not more engineers!

Not the kind of book you'd take to bed with you, like you might do with Coders At Work but the kind of book that drives home a lesson that our industry has struggled mightily to take to heart. Witness off-shoring, a false economy that Boehm's model predicts will have only a marginal positive effect, if any at all. Check it out.

link|flag
prev 1 6 7 8 9 10 next

Your Answer

Get an OpenID
or

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