Here is an essay version of my class notes from Class 1 of CS183: Startup. Errors and omissions are my own. Credit for good stuff is Peter’s entirely.
CS183: Startup—Notes Essay—The Challenge of the Future
Purpose and Preamble
| You need the terminal color codes. For linux it's the following (your system might be different, look it up): | |
| //the following are UBUNTU/LINUX, and MacOS ONLY terminal color codes. | |
| #define RESET "\033[0m" | |
| #define BLACK "\033[30m" /* Black */ | |
| #define RED "\033[31m" /* Red */ | |
| #define GREEN "\033[32m" /* Green */ | |
| #define YELLOW "\033[33m" /* Yellow */ | |
| #define BLUE "\033[34m" /* Blue */ | |
| #define MAGENTA "\033[35m" /* Magenta */ |
Here is an essay version of my class notes from Class 1 of CS183: Startup. Errors and omissions are my own. Credit for good stuff is Peter’s entirely.
CS183: Startup—Notes Essay—The Challenge of the Future
Purpose and Preamble