diff --git a/docs/体系结构/CSAPP.en.md b/docs/体系结构/CSAPP.en.md
index 76b40a85..2dd8c2f2 100644
--- a/docs/体系结构/CSAPP.en.md
+++ b/docs/体系结构/CSAPP.en.md
@@ -23,6 +23,6 @@ After completing this course, your understanding of computer systems will defini
- Course Website:
- Recordings:
- Textbook: Computer Systems: A Programmer's Perspective, 3/E
-- Assignments:11 Projects, [skeleton code all open source](http://csapp.cs.cmu.edu/3e/labs.html)
+- Assignments: 11 Projects, [skeleton code all open source](http://csapp.cs.cmu.edu/3e/labs.html)
If you have trouble with Chapter 7 Linking, I recommend reading the book *Programmer's Self-Cultivation*, subtitled link. load and library. This book can complete our understanding of program linking, and I believe after reading this book you will have a deeper comprehension of program linking, ELF files, and dynamic libraries. It is highly recommended to be read as a supplementary material after reading CSAPP and having a certain understanding of computer systems.
diff --git a/docs/体系结构/N2T.en.md b/docs/体系结构/N2T.en.md
index 19b27773..91d74b37 100644
--- a/docs/体系结构/N2T.en.md
+++ b/docs/体系结构/N2T.en.md
@@ -26,10 +26,10 @@ This course extracts the essence of computers while omitting the tedious and com
## Course Resources
-- Course Website:[Nand2Tetris I](https://www.coursera.org/learn/build-a-computer/home/week/1), [Nand2Tetris II](https://www.coursera.org/learn/nand2tetris2/home/welcome)
-- Recordings:Refer to course website
+- Course Website: [Nand2Tetris I](https://www.coursera.org/learn/build-a-computer/home/week/1), [Nand2Tetris II](https://www.coursera.org/learn/nand2tetris2/home/welcome)
+- Recordings: Refer to course website
- Textbook: [The Elements of Computing Systems: Building a Modern Computer from First Principles (CN-zh version)](book)
-- Assignments:10 projects to construct a computer, refer to the course website for more details
+- Assignments: 10 projects to construct a computer, refer to the course website for more details
[book]: https://github.com/PKUFlyingPig/NandToTetris/blob/master/%5B%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%B3%BB%E7%BB%9F%E8%A6%81%E7%B4%A0%EF%BC%9A%E4%BB%8E%E9%9B%B6%E5%BC%80%E5%A7%8B%E6%9E%84%E5%BB%BA%E7%8E%B0%E4%BB%A3%E8%AE%A1%E7%AE%97%E6%9C%BA%5D.(%E5%B0%BC%E8%90%A8).%E5%91%A8%E7%BB%B4.%E6%89%AB%E6%8F%8F%E7%89%88.pdf
diff --git a/docs/操作系统/CS162.en.md b/docs/操作系统/CS162.en.md
new file mode 100644
index 00000000..c9f4fe90
--- /dev/null
+++ b/docs/操作系统/CS162.en.md
@@ -0,0 +1,32 @@
+# CS162: Operating System
+
+## Descriptions
+
+- Offered by: UC Berkeley
+- Prerequisites: CS61A, CS61B, CS61C
+- Programming Languages: C, x86 Assembly
+- Difficulty: 🌟🌟🌟🌟🌟🌟
+- Class Hour: 200 hours+
+
+The course impressed me in two aspects:
+
+Firstly, the textbook: *Operating Systems: Principles and Practice (2nd Edition)* is written in an insightful but easy-to-understand way, well compensated for the lack of theoretical knowledge in MIT6.S081, I highly recommend you to read this book.
+
+Secondly, the project for this course *Pintos* is is a great journey for system hackers. *Pintos* is a toy operating system developed at Stanford for educational use. The author Ben Pfaff even published a [paper](https://benpfaff.org/papers/pintos.pdf) to explain the design principles of *Pintos*.
+
+Unlike the small but comprehensive design philosophy in MIT's xv6 labs, *Pintos* emphasizes system design and implementation more. The codebase is about 10,000 LOC and only provides the basic functions of a working operating system. The four projects let you add scheduler (Project1), system calls (Project2), virtual memory (Project3), and the file system (Project4) to this extremely simple operating system. All projects leave a a big design space for students and require more than 2000 LOC. Based on the [feedback](https://www.quora.com/What-is-it-like-to-take-CS-140-Operating-Systems-at-Stanford) from Stanford students, the latter two projects take over 40 hours per person even in teams of 3-4 people.
+
+Although it is tough, Stanford, Berkeley, JHU and many other top U.S. colleges have chosen *Pintos* as their OS course project. If you're really interested in operating systems, it will greatly improve your ability to write and debug low-level system code. For me, it is an invaluable experience to design, implement, and debug a large system independently.
+
+*Pintos* will also be introduced as a course project in Peking University's OS Course. In the Spring 2022 semester, I worked with [another TA](https://github.com/AlfredThiel) to write a comprehensive [lab documentation](https://alfredthiel.gitbook.io/pintosbook/) and provided a docker image for the ease of cross-platform development. In the last semester before graduation, I hope such an attempt can make more people fall in love with systems and contribute to the field of systems in China.
+
+## Course Resources
+
+- Course Website:
+- Lecture Videos: , videos for each lecture can be found on the course website.
+- Textbook: [Operating Systems: Principles and Practice (2nd Edition)](http://ospp.cs.washington.edu/)
+- Assignments: , 6 Homework, 3 Projects, the course website has specific requirements
+
+## Personal Resources
+
+Since the Operating System Course at PKU uses the project, my implementation is not open source to prevent plagiarism.
diff --git a/docs/操作系统/MIT6.S081.en.md b/docs/操作系统/MIT6.S081.en.md
index e33843da..54fe5a5c 100644
--- a/docs/操作系统/MIT6.S081.en.md
+++ b/docs/操作系统/MIT6.S081.en.md
@@ -5,8 +5,8 @@
- Offered by: MIT
- Prerequisites: Computer Architecture + Solid C Programming Skills + RISC-V Assembly
- Programming Languages: C, RISC-V
-- Difficulty:🌟🌟🌟🌟🌟
-- Class Hour:150 hours
+- Difficulty: 🌟🌟🌟🌟🌟
+- Class Hour: 150 hours
This is the undergraduate operating system course at MIT, offered by the well-known PDOS Group. One of the instructors, Robert Morris, was once a famous hacker who created 'Morris', the first worm virus in the world.
@@ -21,7 +21,7 @@ In the second half of the course, the instructors will discuss a couple of class
## Course Resources
- Course Website:
-- Lecture Videos:, videos for each lecture can be found on the course website.
+- Lecture Videos: , videos for each lecture can be found on the course website.
- Translated documentation(Chinese) of Lecture videos:
- Text Book:
- Assignments: , 11 labs, can be found on the course website.
diff --git a/docs/数学进阶/numerical.en.md b/docs/数学进阶/numerical.en.md
index 8c3537e1..0bb8bf68 100644
--- a/docs/数学进阶/numerical.en.md
+++ b/docs/数学进阶/numerical.en.md
@@ -3,7 +3,7 @@
## Descriptions
- Offered by: MIT
-- Prerequisites:Calculus, Linear Algebra, Probability theory
+- Prerequisites: Calculus, Linear Algebra, Probability theory
- Programming Languages: Julia
- Difficulty: 🌟🌟🌟🌟🌟
- Class Hour: 150 hours
diff --git a/docs/数据结构与算法/CS61B.en.md b/docs/数据结构与算法/CS61B.en.md
index de198a25..5413df6f 100644
--- a/docs/数据结构与算法/CS61B.en.md
+++ b/docs/数据结构与算法/CS61B.en.md
@@ -23,7 +23,7 @@ In addition, there are 3 projects that give you the opportunity to be exposed to
- Course Website:
- Recordings: refer to the course website
- Textbook: None
-- Assignments: Slightly different every year. In the spring semester of 2018, there are 14 Labs, 10 Homeworks and 3 Projects. Please refer to the course website for specific requirements.
+- Assignments: Slightly different every year. In the spring semester of 2018, there are 14 Labs, 10 Homework and 3 Projects. Please refer to the course website for specific requirements.
## Personal resources
diff --git a/docs/机器学习/ML.en.md b/docs/机器学习/ML.en.md
index 6fb553e1..a8c0e797 100644
--- a/docs/机器学习/ML.en.md
+++ b/docs/机器学习/ML.en.md
@@ -12,7 +12,7 @@ When it comes to Andrew Ng, no one in the AI community should be unaware of him.
The class is extremely friendly to novices, and Andrew has the ability to make machine learning as straightforward as 1+1=2. You'll learn about linear regression, logistic regression, support vector machines, unsupervised learning, dimensionality reduction, anomaly detection, and recommender systems, etc. and solidify your understanding with hands-on programming. The quality of the assignments needs no word to say. With detailed code frameworks and practical background, you can use what you've learned to solve real problems.
-Of course, as a public mooc, the difficulty of this course has been deliberately lowered, and many mathematical derivations are skimmed over. If you are interested in machine learning theory and want to investigate the mathematical theory behind these algorithms, you can refer to [CS229](. /CS229.md) and [CS189](. /CS189.md).
+Of course, as a public mooc, the difficulty of this course has been deliberately lowered, and many mathematical derivations are skimmed over. If you are interested in machine learning theory and want to investigate the mathematical theory behind these algorithms, you can refer to [CS229](./CS229.md) and [CS189](./CS189.md).
## Course Resources
diff --git a/docs/编程入门/CS110L.en.md b/docs/编程入门/CS110L.en.md
index 41104de3..22d78b38 100644
--- a/docs/编程入门/CS110L.en.md
+++ b/docs/编程入门/CS110L.en.md
@@ -21,7 +21,7 @@ Personally, I find the concept of "futures" in Rust fascinating and elegant, and
- Course Website:
- Recordings:
- Textbook: None
-- Assignments:6 Labs, 2 Projects, the course website has specific requirements. The projects are quite interesting where you will Implement a GDB-like debugger and a load balancer in Rust.
+- Assignments: 6 Labs, 2 Projects, the course website has specific requirements. The projects are quite interesting where you will Implement a GDB-like debugger and a load balancer in Rust.
## Personal Resources
diff --git a/docs/软件工程/6031.en.md b/docs/软件工程/6031.en.md
index 03946269..ac46b75e 100644
--- a/docs/软件工程/6031.en.md
+++ b/docs/软件工程/6031.en.md
@@ -24,7 +24,7 @@ In the 2016 spring, the course open-sourced all of its programming assignments,
- Course Website: [2021spring](http://web.mit.edu/6.031/www/sp21/), [2016spring](https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-005-software-construction-spring-2016/)
- Recordings: None
-- Assignments:4 Problem Sets + 1 Project
+- Assignments: 4 Problem Sets + 1 Project
## Personal Resources