Earlier quoted context omitted.
Hey, so this is a great work you did. One thing perhaps you can explain... I've stared at this example now for like 30 minutes... https://www.bottomupcs.com/chapter01.xhtml Section on "Masking" How do you get 0x09 or 0x90? I get how using & = ... so: 10100101 & 11110000 = 10100000 But I have yet to see how this is 0x90 or 0x09, perhaps I'm misunderstanding. I'm trying to understand the 'shift' piece of it
It’s a typo: he meant 0xa0 or 0x0a and the shift is the four positions to the right to extract the top nybble of the byte.
Computer Science from the Bottom Up (2016)
41–50 of 79 posts
Re: Computer Science from the Bottom Up (2016)
#42I remember reading this a few years back. I stopped reading at some point because there were so many errors, unfinished bits, and just flat-out garbage. Sorry to the author but this needs to improve. It's a good start, but you need to invite fixes and implement them. Put your email address on every single page and invite fixes and then implement them. This could be an awesome resource, but right now it's too full of…
Re: Computer Science from the Bottom Up (2016)
#43Earlier quoted context omitted.
Isn't it amazing how people pass courses, even perhaps demonstrate mastery at a point in time, but manage to get to later courses without fully understanding things? Students end up with a very strange mental framework by the time they graduate, and it seems like most students actually know shockingly little. I don't know that there's a solution, or even that it's an issue. To me, this is simply a reflection of how p…
When I did my CS programme decades ago, we all started with Scheme, which is very high-level, and forced everyone to focus on the algorithms, the math of it, instead of what the hardware is doing, or how the Scheme interpreter is implemented. It gets you going, thinking about values and execution and iteration and recursion. Starting with bits and bytes and hardware would be pretty goddamn boring, I think. You'd lose…
I first really got into things with assembly language for DOS. It was interesting to directly control the IRQ controller, real-time clock, interval timer, and keyboard interface. These were all motherboard chips that could be messed with.
Years later I passed a mandatory Scheme class. I tolerated it to get my degree, but I was furious. I handed in just enough assignments to pass the class. If the degree had started with Scheme or required very much of it, I would have found something less miserable to do with my life.
Re: Computer Science from the Bottom Up (2016)
#44Does anyone know if there's a book like this? Basically intro to OS but conceptual stuff only - for someone who didn't take it in school and wants to learn the high level details, not to the level normally covered in a college course.
Re: Computer Science from the Bottom Up (2016)
#45Re: Computer Science from the Bottom Up (2016)
#46Earlier quoted context omitted.
Hey, so this is a great work you did. One thing perhaps you can explain... I've stared at this example now for like 30 minutes... https://www.bottomupcs.com/chapter01.xhtml Section on "Masking" How do you get 0x09 or 0x90? I get how using & = ... so: 10100101 & 11110000 = 10100000 But I have yet to see how this is 0x90 or 0x09, perhaps I'm misunderstanding. I'm trying to understand the 'shift' piece of it
It’s a typo: he meant 0xa0 or 0x0a and the shift is the four positions to the right to extract the top nybble of the byte.
Re: Computer Science from the Bottom Up (2016)
#47Earlier quoted context omitted.
Isn't it amazing how people pass courses, even perhaps demonstrate mastery at a point in time, but manage to get to later courses without fully understanding things? Students end up with a very strange mental framework by the time they graduate, and it seems like most students actually know shockingly little. I don't know that there's a solution, or even that it's an issue. To me, this is simply a reflection of how p…
Most students approach courses as a form of top-down search with a cache for items they see often. It is generally difficult to get them to reason about subjects from the bottom up. A smaller proportion of students approach courses from the bottom-up (10-20%?) - they tend to start with the basic pieces and glue them together over time to understand larger concepts. I’ve read about this phenomenon (it is extensively d…
Maybe if I didn't have this prior knowledge back then the classes would be very boring.
Re: Computer Science from the Bottom Up (2016)
#48Earlier quoted context omitted.
Could someone elaborate on what they think a good developer should "learn cold"
Linear algebra, discrete math, calculus. The mathematical underpinnings of algorithms and data structures. Turing machines will be a lot more useful once you actually know how to use properties to prove more things. A kindergartner can recite the layman description of an infinitely long tape with ones and zeroes but such simplistic understanding has very little practical use if you don't understand how it fits into t…
Re: Computer Science from the Bottom Up (2016)
#49Earlier quoted context omitted.
Isn't it amazing how people pass courses, even perhaps demonstrate mastery at a point in time, but manage to get to later courses without fully understanding things? Students end up with a very strange mental framework by the time they graduate, and it seems like most students actually know shockingly little. I don't know that there's a solution, or even that it's an issue. To me, this is simply a reflection of how p…
Most students approach courses as a form of top-down search with a cache for items they see often. It is generally difficult to get them to reason about subjects from the bottom up. A smaller proportion of students approach courses from the bottom-up (10-20%?) - they tend to start with the basic pieces and glue them together over time to understand larger concepts. I’ve read about this phenomenon (it is extensively d…
Re: Computer Science from the Bottom Up (2016)
#50Earlier quoted context omitted.
It’s a typo: he meant 0xa0 or 0x0a and the shift is the four positions to the right to extract the top nybble of the byte.
Thanks, I believe this should be clearer with https://github.com/ianw/bottomupcs/commit/d8dfd3dc6be5795f4b...