Also, I had fun building my own simple computers in logic gate software.
The Book That Every Programmer Should Read
21–30 of 73 posts
Re: The Book That Every Programmer Should Read
#22Earlier quoted context omitted.
I firmly believe that every programmer should be able to read and write C to some extent, and to learn it one must read K&R. So, yes, I agree that it is also one of the books that every programmer should read.
Curious why you think that? Every programmer? What does learning C provide that other programming languages (majority of which have some basis in C) don't teach you? Memory management (allocation, pointers, etc)? Pipes and buffers? They are present in other languages, and one could argue with memory management why 'every' programmer must learn those techniques even if they are never really applicable to them. I'm rea…
I used ANSI C to implement most of the algorithms we studied at the university and I can say that it helped me understand them better.
Plus, an understanding of what happens on the lower level can be quite handy when debugging some software written in a more high-level language.
Re: The Book That Every Programmer Should Read
#23Re: The Book That Every Programmer Should Read
#24Does anyone know if this book would be good on a kindle? I.e. is it straight text, or does it have graphics and sidebars, etc.
Re: The Book That Every Programmer Should Read
#25Re: The Book That Every Programmer Should Read
#26Having the benefit of an EE based undergrad degree was awesome for this reason, esp. since my first job was firmware design. The downside is that I never took a compiler course and have had very little exposure to stuff like discrete mathematics and turing machines. I didn't learn anything about OO design 'til after school, and I still haven't gotten into functional programming.
Sometimes I worry that I actually missed out on the good stuff. :/
Re: The Book That Every Programmer Should Read
#27I have given this book to 2 people who told me they wanted to know more about computers. It's very easy to read and does an excellent job of explaining basic computer concepts. Probably not too interesting for this crowd. But it's an excellent introduction to computing.
Re: The Book That Every Programmer Should Read
#28Re: The Book That Every Programmer Should Read
#29Sounds a lot like my Digital Circuits course in university. We started with a breadboard of transistors, and after we built each component we got that component as an IC to build the next level of abstraction (flip-flop → memory → adder → processor → etc) . At the end we ended up with a fully programmable computer that we were tasked to program as a sensor-driven traffic light controller. Seeing every step from the g…
I can only imagine how much easier it will be today than in 1994. Oh the gadgets I will build... Good thing my birthday is here and Christmas is coming soon!
Re: The Book That Every Programmer Should Read
#30I graduated w/ a degree in Electrical & Computer Engineering with a minor in CompSci. From the review, this sounds like all the stuff I learned that wasn't CompSci, distilled into an easy-to-read form. Stuff like flip-flops, RISC assembly, how memory works, etc. It sounds fantastic. Having the benefit of an EE based undergrad degree was awesome for this reason, esp. since my first job was firmware design. The downsid…
In my experience, of the hard sciences, CS is by far the most amenable to self-study. CS isn't easier, whatever that might mean, but CS is amazingly inviting: if you've got a computer and a textbook budget, you can learn some really neat stuff. So don't despair; get studying!