cs-plan
course | description | url |
---|---|---|
《Linux/UNIX系统编程手册》 | 《Linux/UNIX系统编程手册》是介绍Linux与UNIX编程接口的权威著作(豆瓣评分9.4),可以媲美APUE,Linux资深专家Michael Kerrisk在书中详细描述了系统编程所涉及的系统调用和库函数,并辅之以全面而清晰的代码示例,本视频用代码演示的方式讲解了一些重点内容,适合入门。 | https://www.youtube.com/watch?v=6OSeJFo6GOc |
MIT 6.828 | 现在改名了叫为 6.S081,核心就是xv6实验,带你完成一个mini os | https://pdos.csail.mit.edu/6.828/2020/index.html |
清华OS | 学堂在线上清华的操作系统,配套实验是 UCore | https://www.xuetangx.com/course/THU08091000267/5883104 |
哈工大李治军老师的操作系统 | 实验是基于 Linux 0.11 | https://www.icourse163.org/course/HIT-1002531008 |
浙大陈越姥姥和何应钦老师讲的数据结构 | https://www.icourse163.org/course/zju-93001 | |
清华邓俊辉老师的数据结构 | 上:https://www.xuetangx.com/course/THU08091000384/5883586 下:https://www.xuetangx.com/course/THU08091002048/5883385 | |
哈工大的计算机网络 | https://www.icourse163.org/course/hit-154005 | |
CS 144 | CS 144: Introduction to Computer Networking, Fall 2020 | https://cs144.github.io/ |
哈工大数据库系统 | https://www.bilibili.com/video/av70279349/ | |
MIRT 6.830 | 这是一门数据库系统的一门核心课程。前半部分比较基础的数据库的知识,后半段主要在讲Distributed Databases的东西。实验是让你写个小型关系型数据库,比如 lab1实现数据库基本的存储逻辑结构,具体包括:Tuple,TupleDesc,HeapPage,HeapFile,SeqScan,BufferPool等。 | |
哈工大计算机组成原理 | 计算机组成原理(上) | https://www.icourse163.org/course/hit-309001 |
计算机组成原理(下) | https://www.icourse163.org/course/hit-1001527001 | |
CS50 | 计算机导论课,哈佛的 CS50 | https://cs50.harvard.edu/college/2021/spring/ |
CS 110L(Rust) | Safety in Systems Programming | https://reberhardt.com/cs110l/spring-2020/ |
太素OS | 基于 RISCV 架构的 Rust 系统内核 | https://zhuanlan.zhihu.com/p/344819263 |
Moonix | Writing a RISC-V-based 64-bit operating system in C. | https://cn-guoziyang.github.io/Moonix/#/ |
CS110L | Stanford CS 110L Spring 2020 assignment starter code | https://github.com/reberhardt7/cs110l-spr-2020-starter-code |