Posts

Week 4: CST438

This week, the most interesting part of the reading to me was the history of how Google felt the need to introduce large tests as the company grew. The diagram in the book showed a sample of the micro-services a simple social media company would use. Just based the nodes in that diagram and the interconnectivity between them, it's easy to see how large tests at Google can become infinitely complex when testing various parts of the codebase at the same time. I also found the part about the ice cream cone anti-pattern interesting in how it relates to large tests at Google. In the pattern, it showed manual tests as the largest portion (the ice cream part) and unit tests as the smaller tip of the cone, with automated and integration tests somewhere in the middle. Basically, large tests were meant to cover the gap between unit tests which are encouraged and manual tests which are discouraged (they tend to take up a lot of time).

Week 4: CST334

This week we learned about how free space is managed in an operating system. Decisions on what to do with free space are based on goals such as accuracy, speed, efficiency, and minimizing fragmentation. Typically free memory is managed as a list.  We also learned about paging as a technique to virtualize memory. It avoids the fragmentation problem we saw last week with segmentation, where segments of varying size are used to store parts of a program. Because segment sizes can vary in segmentation, it creates contiguous gaps of free memory that can be too small to use for new segments of programs. With paging, this particular issue of wasted free memory is avoided by dividing program memory into frames of fixed size. This ensures that a new page will have the necessary memory to store parts of a program. Fragmentation can still occur within the page/frame, but it's less costly since isolated unused memory addresses are smaller. We also learned about how addresses are mapped to physi...

Week 3: CST438

I have limited experience in frontend development, so React would be the most complex framework I've used. I believe I've also used Next.js in a previous course (if I remember correctly). I would say React is a lot more intuitive, especially when it comes to connecting frontend components to a backend server and database. I believe Next.js was slightly more intuitive when adding custom styling and templets. But that have more to do with the type of assignments I worked on using Next.js. React seemed easier to use for more complete projects, or for coming into a new project since it's pretty popular.

Week 3: CST334

This week we learned about memory management. We learned about earlier static memory systems and how that differs from dynamic memory. Static memory was good for predictable operations, but dynamic memory was more flexible and opened the doors to more powerful computing. We also learned about virtual memory, and how it mimics a big space of memory for each individual process (even though physical memory space is limited). The lectures described how memory is allocated, and how data is transferred between RAM and disk storage. We learned about how virtual memory ensures each process appears to have its own private memory so the processes don’t get in each other’s way. We also learned about how C functions malloc(), free(), and calloc() are used to manage memory. The function malloc() is used to allocate a specified amount, free() is used to release previously allocated memory, and is used to zero out and allocate memory. We also talked about how the operating system system manages memor...

Week 2: CST438

 A mock is a an object in testing that's meant to act like a more complex service/dependency. A lot of times it can be impractical to make calls to an outside service/object/dependency like a database or a slow/expensive library just to run tests. Also, sometimes these external services might be out of our control and they may not behave the way our tests expect them to act every time, making our tests less useful and less isolated. With a mock, it's much easier to control it's simulated behavior instead of the actual object's behavior, which is often controlled by someone else or depends on other variables. Also for performance, mocks usually run a lot faster making our tests more lightweight.

Week 2: CST 334

This week we learned about process abstraction, limited direct execution, process scheduling, and multi-level feedback. It was interesting to learn about the distinction between programs (instructions stored on a computer) and processes (those programs running within the computer). Also, it's interesting to see a lot of the concepts from past courses come up again, like stacks, heaps, registers (and computer architecture topics in general). Because so much of this is abstracted by the operating system, and then user applications on top of that, it's easy to lose track of how complex it is just to run a program on one's computer. From our standpoint, we don't notice processes stopping and starting as they share the computer's processing. This week I also looked into papers I could use for a research project. One that caught my eye was a paper on Meta's service mesh. I have to look into it more to see how it relates to operating systems and what we're learning...

Week 1 - CST334

 In this week, I read one of the introductory chapters (2) to our operating systems text. It had a good overview on the features and processes within an operating system. Also, through the text and lectures, there were references to concepts I learned previously in my computer architecture class. I do find myself looking up some of these topics for additional information since it's been a while. I didn't get to review all the optional material on bash scripts and commands but I hope to go back to that since I expect it to be very useful throughout the course based on the assignments so far.