Nixers Book Club - Book #5: Computer Science from the Bottom Up - Community & Forums Related Discussions

Users browsing this thread: 1 Guest(s)
venam
Administrators
Alright, been a long time since I posted on the forums.
The book so far is pretty classic basic CS stuff so I don't have much to say.

Chapter 1: General Unix and Advanced C

Introduction to the concept of file and input/output. The abstraction facilitates the manipulation different things by giving them the same interface.
This is done through a typical OOP-style pattern that is often used in C: defining methods in a struct that are implemented depending on the scenario.

Chapter 2: Binary and Number Representation

This is a chapter about the bottom representation of what it stored in the computer and questions about how to create useful types around that and how to represent them, size, sign, decimals, fractions, etc..


Messages In This Thread
RE: Nixers Book Club - Book #5: Computer Science from the Bottom Up - by venam - 21-08-2021, 05:56 AM