Live data from Hacker News

Ask HN: What are some of the best well-written books on computer science?

news.ycombinator.com

1–10 of 62 posts

Re: Ask HN: What are some of the best well-written books on computer science?

#3
not sure i know (or remember) any book that covers the entire field. but i never miss a chance to tell people about "the c programming language" by k&r.

one of a kind and, for some of us, the best book on programming ever written. i would love to see it updated to modern c.

Re: Ask HN: What are some of the best well-written books on computer science?

#6
The Pragmatic Programmer is still the standard handbook of best engineering practices.

Test Driven Development by Example, by Kent Beck is a great book, and it's aged well too. There's a lot of good 3rd party material on most concepts, but for TDD the first source is still the best.

Re: Ask HN: What are some of the best well-written books on computer science?

#8
post #3

not sure i know (or remember) any book that covers the entire field. but i never miss a chance to tell people about "the c programming language" by k&r. one of a kind and, for some of us, the best book on programming ever written. i would love to see it updated to modern c.

What do you like about K&R so much? I was excited to dive into it during the C systems programming class I took in school, and it was fine, but I didn’t understand the hype. And I loved learning C / usually care about things like this.

Re: Ask HN: What are some of the best well-written books on computer science?

#9
post #3

not sure i know (or remember) any book that covers the entire field. but i never miss a chance to tell people about "the c programming language" by k&r. one of a kind and, for some of us, the best book on programming ever written. i would love to see it updated to modern c.

What do you like about K&R so much? I was excited to dive into it during the C systems programming class I took in school, and it was fine, but I didn’t understand the hype. And I loved learning C / usually care about things like this.

For at least some people, K&R just "clicks". It's written in a way that is crystal clear (to at least some people).

In my case, I read K&R over a Thanksgiving weekend, and I understood all of it[1], even without a compiler to try things out on.

[1] Except for passing command-line arguments into a program (argc and argv). Couldn't understand that one without experimental results.

Re: Ask HN: What are some of the best well-written books on computer science?

#10
Knuth's "art of Computer Programming", especially and specifically for the way it communicates things. I'm quite weak when it comes to reading advanced maths, but the code communicated to me, and taught me most of what i ever learned about how to read the weird squiggles.
Post reply on HN