Ask HN: Best way to learn about computing history?
51–60 of 157 posts
Re: Ask HN: Best way to learn about computing history?
#52https://www.tracykidder.com/the-soul-of-a-new-machine.html
Another comment mentioned “Pirates of Silicon Valley” as a good dramatization of MS/Apple and there’s also the miniseries “Valley of the Boom” about the rise and fall of Netscape and “Halt and Catch Fire” which is a fictional and thematic view of 80s/90s computer history.
Re: Ask HN: Best way to learn about computing history?
#53https://kpolsson.com/comphist/
Apparently the author has been maintaining that timeline since 1995 and is still doing it!
While it doesn't cover things like computer science, I think it's an excellent jumping off point for learning about notable people and events.
Not exactly what you asked for, but you may also be interested and may give you some insight I think more programmers should have.
EDIT: Also, don't stop at Babbage & Lovelace. Although Babbage's analytical engine was one of the first, if not the first programmable computers with a form of memory, there were people working on extremely primitive computers (or rather advanced calculators) way before Babbage. Schickard, Pascal, and Leibniz conceived of and developed calculating engines that did basic math with support for interim value storage, which one might consider to be the earliest form of computer memory.
Re: Ask HN: Best way to learn about computing history?
#54The history of computing is replete with really dumb ideas, from addition and multiplication tables in memory (IBM 1620) to processors optimized for Ada that ran too slowly to be useful (Intel iAPX 432). There were really smart ideas, too, such as cache (IBM System/360 Model 85) and RISC (too many systems to mention). What you want is just the smart ideas, I'd say.
If you want to get an understanding of how modern computers work, and given your CS degree, I would recommend David Patterson/John Hennessy's Computer Organization and Design, any edition. A lot of universities use this book in a second-year architecture course.
In terms of relating this information to the overall hierarchy of computer systems, I would also recommend Nisan and Schocken's Elements of Computing Systems.
Re: Ask HN: Best way to learn about computing history?
#55 * understand brainfuck or so called RAM machine as simplest computer
* read 50 pages of https://en.m.wikipedia.org/wiki/Code:_The_Hidden_Language_of_Computer_Hardware_and_Software
* read https://www.bottomupcs.com/ to understand low level stuff
* Learn some C
To understand computation I think scheme or lambda calculus is the best. Don’t know good intro.Bear in mind that what we have is just certain implementation/abstraction for computation that’s likely still suboptimal. That’s why people come with new languages/VMs. I wonder if some alternative to RAM machine exists. I’ve heard about lisp machines…
Re: Ask HN: Best way to learn about computing history?
#56Ben Eater's Youtube series "Building an 8-bit Breadboard Computer" is a really good introduction to the lowest levels of how a computer works: https://www.youtube.com/playlist?list=PLowKtXNTBypGqImE405J2... I recommended it to my daughter when she was taking a class in R and asked "But how does the COMPUTER know what to do?"
Re: Ask HN: Best way to learn about computing history?
#57Ben Eater's Youtube series "Building an 8-bit Breadboard Computer" is a really good introduction to the lowest levels of how a computer works: https://www.youtube.com/playlist?list=PLowKtXNTBypGqImE405J2... I recommended it to my daughter when she was taking a class in R and asked "But how does the COMPUTER know what to do?"
Very informative!
Re: Ask HN: Best way to learn about computing history?
#58It's tangential, but "Where Wizards Stay Up Late: The Origins of the Internet" by Katie Hafner and Matthew Lyon is one of my favorite books on the foundations of the Internet.
Re: Ask HN: Best way to learn about computing history?
#592. Check out a recent computing history book like: Thomas Haigh and Paul E. Ceruzzi (2021) A New History of Modern Computing, Cambridge, MA, USA: MIT Press.
Re: Ask HN: Best way to learn about computing history?
#60From a NAND gate to Tetris was excellent. Informative and obvious https://www.nand2tetris.org/
I cannot endorse this enough. some of it is hard and will have you wondering if you want to continue. if you do, and I highly recommend that every developer complete this course, you will find yourself thinking in new ways and understanding many problems very differently, which is a very good thing. and you will see huge performance problems in almost all software from them on, because none of this (I gesture vaguely…
>and you will see huge performance problems in almost all software from them on, because none of this (I gesture vaguely at everything everywhere) should be as slow as it is. none of it.
Hah! Yes! After finishing, the first optimization I made was to add an "inc" command to the high-level (Java-like) language you implement. It annoyed me that any time you have "i = i + 1", it translates into VM code of "push 1 onto stack, push i's value onto stack, add, pop stack to i's location", each of which translates into several machine instructions. Especially given that the CPU has an increment instruction!
So I added the inc keyword that would ensure you bypass all of that, if you just want to increment a variable, and thus use significantly fewer cycles. It was really thrilling (well, as much as a technical project can be) to have the level of insight and control needed to make a change like that.