vote up 5 vote down star
3

So I went to the library yesterday to pick up a book ("Peopleware" by Tom Demarco ) for my software project management class because I've been hearing from my classmates that it is difficult to get off Amazon because it has been out of print for so long. I haven't been to the library since the last time I was in school (which was over 10 years ago) so it was already a little weird for me going in there because I'm used to buying all of my technical books new or slightly used.

When I went over to the shelf I started noticing how old all of the book were and when I picked out the book it looked like the binding was going to fall apart and the pages had kind of that old discolored feel to them. So immediately I wrongly jumped to the conclusion that I was going to be reading some outdated, somewhat boring book that I would just have to plow through in order to stay ahead in class.

So I decided while I was there to go ahead and just read 3 first three chapters or so and to my surprise I found them to be an absolute pleasure to read! So far, the content has been not only completely relevant but also written in a style that would attract engineers or PM's from any era that I could imagine. I think that if I would have been handed the book newly printed in text today and not told the published date that I honestly couldn't tell.

I'm wonder if there are any other books like this out there that you all know of. When ever I looked for technical books I always just head into Borders and pick-up the latest and greatest, but I never stop to think something that has been written in the past may be better then anything currently on the shelf...

...any suggestions?

flag
Should be wiki, as there's no definitive answer. – George Stocker Apr 3 at 16:11
@Gortok: seconded. – Welbog Apr 3 at 16:13
This isn't an exact duplicate. The other question is about "programming books". This one is about "technical books", which has a wider scope. – Steve Melnikoff Apr 3 at 17:30
Doh...I didn't notice that question but I think you could 'use' a C programming book that was written in the 70's if you were tackling a C program today. I think I'm a little more interested in books that were maybe more theory based, where the ideas would still be considered 'fresh' today. – matt_dev Apr 3 at 17:49
Voted to reopen, comment above that this question cites technical books is valid – Cruachan Apr 3 at 18:16

closed as exact duplicate by George Stocker, Welbog, Rich B, Bill the Lizard, jalf Apr 3 at 17:17

16 Answers

vote up 1 vote down

Structure and Interpretation of Computer Programs That book rules. Combine it with the Lectures and prepare to have your brain bent in interesting ways. :-)

link|flag
vote up 0 vote down

I've been using Awk a little bit recently. I'd looked at a lot of online references and I already had the O'Reilly "Sed and Awk" book. But a couple weeks ago I ran across a copy of The AWK Programming Language (by Aho, Kernighan, and Weinberger) at a used book store. It was printed in 1988 but this little book is a real gem; the exposition and examples explain and illustrate the programming concepts beautifully.

Awk isn't necessarily everyone's cup of tea. Sure it's old and arguably outdated, and I understand that everything it can do can be done just as well (or "at least as well"? or "almost as well"?) by Perl, Ruby, Python, etc. But the concepts in the book can be used regardless of language. And there's something to be said both for keeping things small and simple and for having a solution that's going to run on virtually any Unix machine you can find.

link|flag
vote up 4 vote down

Pragmatic Programmer, The: From Journeyman to Master

From 1999, that book is still true from cover to cover and applis to more than software engineering, lots of its concepts apply to QA team, project management etc...

A very good read.

link|flag
vote up 0 vote down

There's a very similar question on StackOverflow here:

What are some of your oldest programming books that you still use

link|flag
Doh...oh well...I didn't notice that question but I think you could 'use' a C programming book that was written in the 70's if you were tackling a C program today. I think I'm a litte more interested in books that were maybe more theory based, where the ideas could still be applied today. – matt_dev Apr 3 at 16:33
Interesting that the top 5 there are the same as the top 5 here. At least 3 of them (my 3) were posted without knowledge of your prior question :-). – tgamblin Apr 3 at 16:43
vote up 2 vote down

Mathematical Elements for Computer Graphics, by Rogers and Adams.

I have the second edition published in 1990 and it's still good solid stuff. The first edition was published in 1976.

link|flag
vote up 1 vote down

Refactoring: Improving the Design of Existing Code by Martin Fowler

link|flag
vote up 1 vote down

Being still young I didn't get to the ancient tomes, but Code Complete (the 1993 edition) is probably the oldest. And I was surprised how much of it still matters (even though code samples in Pascal, Fortran and BASIC are maybe a bit outdated).

link|flag
vote up 1 vote down

All the above books are excellent and on my list to reread every few years as they are timeless. Another one to add is Programming Pearls by Jon Bentley Bentley. It is more low level than others, but still very relevant code.

link|flag
It's bad practice to refer to other answers by their positions, because the ordering can, and will change. – Brad Gilbert Apr 3 at 17:11
vote up 6 vote down

Principles of Compiler Design (aka "The Dragon Book"), by Aho and Ullman. First published in 1977, but courses are still taught with it today.

link|flag
vote up 6 vote down

Code Complete, by Steve McConnell

link|flag
vote up 2 vote down

The Cuckoo's Egg by Cliff Stoll. (Wikipedia Link)

link|flag
vote up 6 vote down

The C Programming Language, by Kernighan and Ritchie. Published in 1978 (2nd ed. in 1988). Also incredibly relevant today.

link|flag
It's amazing the number of very sound basic guidelines in that book which seem to be continually ignored [by lazy developers] today. – mdresser Apr 3 at 16:12
I don't think the 1st ed is very relevant. The 2nd ed. covering ANSI C was published in 1988. – Neil Butterworth Apr 3 at 16:21
vote up 2 vote down

The Timeless Way of Building, by Christopher Alexander.

link|flag
I so didn't think anyone would answer with that one. That book changed my life Charlie. – matt_dev Apr 3 at 16:22
vote up 8 vote down

The Art of Computer Programming - Donald Knuth, 1968, 1969, and 1973

link|flag
vote up 12 vote down

The Mythical Man-Month, by Fred Brooks, was the first real book on software engineering. It was published in 1975, but everything in there is still relevant today.

Also, even though the book is about software engineering, even the project it discusses (OS/360) lives on today as z/OS in IBM's mainframes.

link|flag
I was literally discussing (and resembling) his chapter on the second system effect yesterday. +1 – ojrac Apr 3 at 16:08

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