vote up 0 vote down star
5

It took me a while to realize that simply knowing all about a language's syntax and semantics and things like design patterns didn't necessarily make me a better programmer.

But reading about algorithms did a lot for me.

Which books, tutorials and online resources have made you a better programmer?

Edit: Also please state a short reason why a particular book increased your skills.

flag

closed as exact duplicate by csl Dec 29 '08 at 11:57

15 Answers

vote up 8 vote down check

You can also reasd this thread where a lot answers were written regarding your question

what-is-the-single-most-influential-book-every-programmer-should-read

link|flag
vote up 3 vote down

SICP

link|flag
vote up 13 vote down

Code Complete

link|flag
vote up 2 vote down

Mastering Regular Expressions

Regular expressions should be in the basic toolbox of every programmer. Learning how they work (and what their limits are) is essential to string processing - which is a big chunk of practical programming.

link|flag
vote up 1 vote down

Almost all the books by, PHJPlauger, Gerald Weinberg, Bentley.Also some of the writings of Constanine, Booch, Stroustrup.

link|flag
vote up 2 vote down

Cormen et al's Introduction to Algorithms, because it made me able to analyze running times in programs and functions and how one could make them run much faster.

link|flag
vote up 2 vote down

Domain Driven Design and Patterns of enterprise application architecture because no developer should be without them.

link|flag
vote up 1 vote down

Coder to Developer: Tools and Strategies for Delivering Your Software by Mike Gunderloy is a great book.

And Head First Design Patterns is an excellent read too.

link|flag
I didn't rate Coder to Developer. I thought that it was a nice idea but too Windows/.net specific to be useful in the long term. I also had doubts about the accuracy of some of the "facts" (iterative development "invented" by Microsoft and Rational?!). – Stephen Darlington Dec 1 '08 at 10:27
vote up 12 vote down

The Pragmatic Programmer: From Journeyman to Master from Andrew Hunt and David Thomas

It is full of practical tips, each of them helping you improve.

link|flag
vote up 2 vote down

Just a few on the list:

link|flag
vote up 0 vote down

Besides the books already mentioned:

Strictly for C++:

link|flag
vote up 0 vote down

19 Deadly Sins of Software Security

Packs a nice payload of general risks that manifest themselves in a variety of languages, and the selection there-in I found opens ones mind more to comprehending the security mindset.

After reading it, going through old code made me just scream "oh damn, look at all these massive glowing red danger points! must fix!", and as a result I highly recommend that book.

A constant mindfulness of security issues is a surprisingly lacking trait in this day-and-age, which is unfortunate, because now is the time when we've needed to be mindful of it more than ever.

One Such Example:

I was before this book not taught anything about using

printf("%s", var );

instead of

printf(var);

In C. To a novice programmer there may seem nothing wrong with that. But theres a little problem where you can use the value of var to read and write to arbitrary memory locations, which can lead to memory injection based corruption, execution of arbitrary code, and as a result, local machine access.

Yuck. So much badness for such a simple thing. And apparently that simple mistake is grossly prolific in the real world.

( See http://en.wikipedia.org/wiki/Format_string_attack for a full article on this problem )

link|flag
vote up 1 vote down

These two books helped me immensely in creating safer code. The contain hints on just about any pitfalls you might unawaringly be getting yourself into while writing C or C++. I highly recommend both.

The last one is freely available on-line here.

link|flag
vote up 1 vote down

I'll put in a vote for Code Complete, but also this: Clean Code

link|flag
vote up 1 vote down

Test driven development by example by Kent Beck

Design Patterns

Design Patterns Explained

link|flag

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