vote up 569 vote down star
831

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

277 Answers

prev 1 4 5 6 7 8 10 next
vote up 1 vote down

Hey, my favorite book, Alice in Wonderland, has been mentioned :D

Other than that... I was blown away when I read Javascript: The Definitive Guide, because at the time it was the only JS book I'd read that wasn't talking about crappy rollovers or things like that.

It may be the first time I learned the OO side of javascript, and the book was by far the most complete on the language (core, and browser-side).

I wish I'd read it before getting bad habits and a false image of JS.

Of course the situation is much different now, with many books by JS gurus who have written stylish and robust JS like jQuery and the like...

link|flag
vote up 1 vote down
  • Sedgewick's Algorithms in C++
  • Effective Java by Joshua Bloch
  • Java Performance Tuning by Shirazi
link|flag
vote up 1 vote down

Pro Spring is a superb introduction to the world of Inversion of Control and Dependency Injection. If you're not aware of these practices and their implications - the balance of topics and technical detail in Pro Spring is excellent. It builds a great case and consequent personal foundation.

Another book I'd suggest would be Robert Martin's Agile Software Development (ASD). Code smells, agile techniques, test driven dev, principles ... a well-written balance of many different programming facets.

More traditional classics would include the infamous GoF Design Patterns, Bertrand Meyer's Object Oriented Software Construction, Booch's Object Oriented Analysis and Design, Scott Meyer's "Effective C++'" series and a lesser known book I enjoyed by Gunderloy, Coder to Developer.

And while books are nice ... don't forget radio!

... let me add one more thing. If you haven't already discovered safari - take a look. It is more addictive than stack overflow :-) I've found that with my google type habits - I need the more expensive subscription so I can look at any book at any time - but I'd recommend the trial to anyone even remotely interested.

(ah yes, a little obj-C today, cocoa tomorrow, patterns? soa? what was that example in that cookbook? What did Steve say in the second edition? Should I buy this book? ... a subscription like this is great if you'd like some continuity and context to what you're googling ...)

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

"Debugging the Development Process: Practical Strategies for Staying Focused, Hitting Ship Dates, and Building Solid Teams" by Steve Maguire.

No-non-sense, down-to-earth, entertaining, profound.

[ http://beta.stackoverflow.com/questions/559/what-books-would-you-recommend-for-a-beginning-software-developer#1150 ]

link|flag
vote up 1 vote down

Since you've asked for the single most influential book, I recommend Deitel's "C++ How to Program. This is the one I kept referencing throughout University.

I actually enjoyed reading Head First Design Patterns and Joel On Software more, but they came along after I'd learned the basics

link|flag
vote up 1 vote down

I found "The art of Prolog" a very good read.

link|flag
vote up 1 vote down

Code complete, domain driven design, and Dreaming in Code to show how it can work out in the end.

link|flag
vote up 1 vote down

Roger S. Pressman - Software Engineering (A Practitioners Approach). It has got a lot of usefull information.

link|flag
vote up 1 vote down

The Unix Programming Environment by Brian Kernighan and Rob Pike. After reading this I 'got' Unix. I understood the philosophy behind it and everything suddenly started making much more sense.

It's also a brilliant introduction to the Bourne shell and C programming.

link|flag
vote up 1 vote down

"The World is Flat" by Thomas Friedman.

Excellence in programming demands an investment of mental energy and a dedication to continued learning comparable to the professions of medicine or law. It pays a fraction of what those professions pay, much less the wages paid to the mathematically savvy who head into the finance sector. And wages for constructing code are eroding because it's a profession that is relatively easy for the intelligent and self-disciplined in most economies to enter.

Programming has already eroded to the point of paying less than, say, plumbing. Plumbing can't be "offshored." You don't need to pay $2395 to attend the Professional Plumber's Conference every other year for the privilege of receiving an entirely new set of plumbing technologies that will take you a year to learn.

If you live in North America or Europe, are young, and are smart, programming is not a rational career choice. Businesses that involve programming, absolutely. Study business, know enough about programming to refine your BS detector: brilliant. But dedicating the lion's share of your mental energy to the mastery of libraries, data structures, and algorithms? That only makes sense if programming is something more to you than an economic choice.

If you love programming and for that reason intend to make it your career, then it behooves you to develop a cold-eyed understanding of the forces that are, and will continue, to make it a harder and harder profession in which to make a living. "The World is Flat" won't teach you what to name your variables, but it will immerse you for 6 or 8 hours in economic realities that have already arrived. If you can read it, and not get scared, then go out and buy "Code Complete."

link|flag
vote up 1 vote down

Great question!

After some consideration, I would have to say The Fountainhead by Ayn Rand. Not a programming book, but makes you think about what you want out of your work at a higher level.

link|flag
vote up 1 vote down

for low level entertainment i would suggest Michael Abrash's
i) -Zen of Code Optimization- and
ii) -Graphics Programming Black Book-
even if you dont do any graphics programming.

link|flag
vote up 1 vote down

Whether you are coding in Smalltalk or not Smalltalk Best Practice Patterns is a great read. Full of small observations that will change the way you code; for the better.

link|flag
vote up 1 vote down

If you're involved with Enterprise Applications at all, Martin Fowler's Patterns of Enterprise Application Architecture is a must-have.

link|flag
vote up 1 vote down

Code Complete is the most influential by far, if I had the money I would buy copies and hand them out to every programmer I know.

Since programmers are well known for their social skills :P

How to Win Friends and Influence People

Not that all programmers have problems dealing with people, anyone can benefit from reading this book.

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

Facts and Fallacies of Software Engineering by Robert L. Glass is a really excellent book. I had been a professional hacker for almost 10 years before I read it, and a I still learned a ton of stuff.

link|flag
vote up 1 vote down

Discrete Mathematics For Computer Scientists

Discrete Mathematics For Computer Scientists by J.K. Truss.

While this doesn't teach you programming, it teaches you fundamental mathematics that every programmer should know. You may remember this stuff from university, but really, doing predicate logic will improve you programming skills, you need to learn Set Theory if you want to program using collections.

There really is a lot of interesting information in here that can get you thinking about problems in different ways. It's handy to have, just to pick up once in a while to learn something new.

link|flag
vote up 1 vote down

it was neat to see some people mention books i'd never heard of before, particularly SICP. i also think that little schemer is an awesome awesome book. i haven't seen anyone list this one yet. the art of unix programming.

the art of unix programming

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

OK, so the question is not "what's the best programming book", but "if you could tell yourself what to read in the beginning of your career"...

Probably one of "On Lisp" and SICP, plus one of CLRS or "Algorithms: a creative approach" by Udi Manber.

The first two will teach lots of programming techniques, patterns, and really open up one's mind to his/her own creativity; the other two are different. They're more theoretical, but also very important, focusing on design of correct and efficient algorithms (and requiring substantially more math).

I see lots of people recommending the three first books when the subject of "good programming books" pops up, but the last one (by Manber) is a great book, and few people know it. It's a shame! Manber focuses on the incremental development of algorithms through theorem proving using induction.

link|flag
vote up 1 vote down

It should be Paulo Coelho - The Alchemist, because many programmers have low self-worth, narcissism disorders and are approval seeking. This means that they do what others tell them to do. And that they think that being programmer is worse than being a manager. Reading The Alchemist may discover them the truth: being engineer is a reason to be proud.

link|flag
vote up 1 vote down

Applying UML and Patterns by Craig Larman.

The title of the book is slightly misleading; it does deal with UML and patterns, but it covers so much more. The subtitle of the book tells you a bit more: An Introduction to Object-Oriented Analysis and Design and Iterative Development.

link|flag
vote up 1 vote down

Systemantics: How Systems Work and Especially How They Fail. Get it used cheap. But you might not get the humor until you've worked on a few failed projects.

The beauty of the book is the copyright year.

Probably the most profound takeaway "law" presented in the book:

The Fundamental Failure-Mode Theorem (F.F.T.): Complex systems usually operate in failure mode.

The idea being that there are failing parts in any given piece of software that are masked by failures in other parts or by validations in other parts. See a real-world example at the Therac-25 radiation machine, whose software flaws were masked by hardware failsafes. When the hardware failsafes were removed, the software race condition that had gone undetected all those years resulted in the machine killing 3 people.

link|flag
vote up 1 vote down

After K&R, I'll second that vote for Programming Pearls.

Why is the Brooklyn Bridge still standing while Galloping Gertie self-destructed in weeks? Every engineer should be fluent in the skill of making "back of the envelope" calculations and mentally keeping an eye on both the "forest and the trees" of their projects. The author Bently emphasizes their importance in every essay. Standing in line at a restaurant? Estimate your wait using the same math used in data queue analysis. How much water flows out of the mouth of the Mississippi river? Four different people use four unrelated methods to estimate an answer, all applicable to CPU processing speed calculations. And so on.

These are vital, fundamental skills that, sadly, are going the way of the slide rule.

link|flag
vote up 1 vote down

I am still waiting for my copy of LiSP.

link|flag
vote up 1 vote down

Etudes for Programmers by Charles Wetherell, More Programming Pearls (Jon Bently),

link|flag
vote up 1 vote down

For me it was Design Patterns Explained it provided an 'Oh that's how it works' moment for me in regards to design patterns and has been very useful when teaching design patterns to others.

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

Your Answer

Get an OpenID
or

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