-
Notifications
You must be signed in to change notification settings - Fork 440
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #618 from srcres258/my-blog
Add blogs for stage 1 and 2 of 2024A rCore Camp
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
title: 2024 秋冬季开源操作系统训练营 第1阶段(基础阶段 - Rust编程) | ||
date: 2024-11-12 21:54:11 | ||
category: srcres258 | ||
tags: srcres258 | ||
--- | ||
|
||
# 阶段目标与晋级条件 | ||
|
||
- Rust编程语言为学习操作系统设计与实现打下坚实基础 | ||
|
||
- 通过完成100道Rustling编程题,强化训练Rust编程技能 | ||
|
||
- 该阶段排行榜达到满分可晋级,进入专业阶段学习 | ||
|
||
# 阶段个人总结 | ||
|
||
Rust 语言是参加本训练营必须掌握的一门语言,因为本训练营的所有项目均基于本语言编写。由于本人已学习过 Rust 编程语言,故本阶段无太大压力,跟着晋级要求完成 rustlings习题后即达成目标。 | ||
|
||
而重点是后续专业阶段 rCore 操作系统的学习与代码理解,因操作系统相关知识早已忘记(虽然曾跟着网络教程阅读过 Linux 内核源码,但年代久远早已忘记细节),故需要一定时间重拾相关知识,并跟着实验在旧知识基础上提升自己的理解水平。 | ||
|
||
附:本人学习 Rust 语言的主要参考[视频教程](https://www.bilibili.com/video/BV1hp4y1k7SV/)。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
title: 2024 秋冬季开源操作系统训练营 第2阶段(专业阶段 - OS设计实现) | ||
date: 2024-11-12 22:04:16 | ||
category: srcres258 | ||
tags: srcres258 | ||
--- | ||
|
||
# 阶段目标与晋级条件 | ||
|
||
- 从零开始构建操作系统的各个模块,不断完善操作系统核心功能 | ||
|
||
- 完成5道rCore操作系统大实验编程题,深入领会OS重要概念,掌握必备技能 | ||
|
||
- 排行榜积分达到500分,方可进入项目阶段学习,参与团队合作完成关键任务 | ||
|
||
# 阶段个人总结 | ||
|
||
从本阶段开始本人感到明显的学习吃力,各种新概念在教学过程中如泉涌般浮现在脑海,难以在短时间内完全消化完毕。 故专门抽出一整个周末以及课余时间反复研读与理解教学文档,深入洞悉各种新概念的内涵,在彻底理解相关知识点后再结合视频直播中老师的讲解理解每一行代码的实现逻辑(5W1H原则:Why(何因)、What(何事)、Where(何地)、When(何时)、Who(何物)、How(何法))。在确保完全弄懂文档知识点与代码的实现逻辑之后,方才着手完成每个实验的习题。 | ||
|
||
通过本阶段的学习,我也认识到学习操作系统相较于其他编程实践项目需要投入更多的精力,对于陌生的技术栈需要花更多的心思去理解其技术细节与应用方式,不能向以前一样盲目自信而心不在焉地学习。同时这几次实验也建立起我实战大型编程项目的经验,为以后参与更多更繁杂的编程项目打下基础。 |