vote up 569 vote down star
832

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

A Whole New Mind, by Daniel Pink. Interesting take on the future of our industry.

I assume most of the folks reading this will have read the books at the top of the list already. So, i'll offer a book that takes a different look at our industry.

alt text

link|flag
vote up 0 vote down

Code Craft

I personally think this is a little better than the venerable Code Complete. Pete Goodliffe has a very practical approach, and the book is a lighter read.

link|flag
vote up 10 vote down

Strunk, William. Elements of Style

elements of style

link|flag
1  
I heard someone talking about this book on NPR: "When it comes to 'shall' and 'will,' Strunk and White gives the following example: 'A swimmer in distress cries, "I shall drown; no one will save me!" But a suicide says, "I will drown; no one shall save me!" And I say, "You two pedantic know-it-alls deserve to drown."'" – Beska Aug 14 at 18:27
vote up 0 vote down

Anything by Edward Tufte: The Visual Display of Quantitative Information; Envisioning Information; Visual Explanations

link|flag
vote up -1 vote down

beautiful code

link|flag
vote up 2 vote down

The Pragmatic Programmer

And its best advice is to invest in your own knowledge by reading more books :-)

link|flag
vote up 2 vote down

"clean code" by uncle bob is pretty good: http://books.slashdot.org/article.pl?sid=08/09/23/2243216&from=rss

link|flag
vote up 28 vote down

Surprised that no one has mentioned Martin Fowler's Patterns of Enterprise Application Architecture yet

alt text

crap! didn't realize there are 7 pages of responses. at least this one has the book cover img.

link|flag
show 1 more comment
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 3 vote down

Another book that has not been mentioned yet, and SHOULD be required reading for EVERY programmer, newbies on up to gurus, in ANY programming language, is Michael Howard's Writing Secure Code (2nd Edition) from MSPress.

alt text

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

alt text

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

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

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

Dijkstra's "A Discipline of Programming"

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

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

Mythical man month ++ Code Complete 2 ++

link|flag
vote up 0 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

Masters of doom. As far as motivation and love for your profession go: it won't get any better than what's been described in this book, truthfully inspiring story!

link|flag
vote up 0 vote down

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

link|flag
vote up 2 vote down

Nobody seems to have mentioned Stroustup's The C++ Programming Language which is a great book that every C++ programmer should read.

I also think that Extreme Programming Explained: Embrace Change should be read by every programmer and manager. Many of the ideas in the book are common knowledge now but the book gives an intelligent and inspiring account of the pursuit of quality in software engineering.

I would second the recommendations for Knuth and Gang of Four which are classics.

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

It's an oldie, but still worth reading:

alt text

link|flag
show 1 more comment
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 0 vote down

Graphics Programming in Windows is difficult to fault.

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