-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
128 lines (118 loc) · 5.12 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
site_name: CS Plan
site_url: https://cs-plan.com
site_author: MingLLuo
repo_name: CS-Plan
repo_url: https://github.com/MingLLuo/CS-Plan
theme:
name: material
language: zh
custom_dir: overrides
static_templates:
- 404.html
features:
- navigation.instant
# - navigation.expand
- navigation.tracking
# - navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.sections
- search.highlight
- search.share
- search.suggest
- content.code.annotate
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: light blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Noto Serif SC
code: Roboto Mono
icon:
repo: fontawesome/brands/github
extra:
analytics:
provider: google
property: G-6XJGJRLBLZ
markdown_extensions:
# https://squidfunk.github.io/mkdocs-material/reference/images/
- attr_list
- md_in_html
- pymdownx.betterem
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
extra_javascript:
- javascripts/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
nav:
- 前言: "index.md"
- CS基础:
- 导览: "CS基础/导览.md"
- 计算机导论:
- "Crash Course Computer Science": "CS基础/课程推荐/计算机导论/计算机速成课.md"
- "Harvard CS50": "CS基础/课程推荐/计算机导论/HarvardCS50.md"
- 编程基础:
- "UCB CS61A: Structure and Interpretation of Computer Programs": "CS基础/课程推荐/编程基础/UCBCS61A.md"
- "其他推荐": "CS基础/课程推荐/编程基础/基础编程资源汇总.md"
- 数学基础:
- "MIT18.06: Linear Algebra": "CS基础/课程推荐/数学基础/MITGSLA.md"
- "UCB CS70: Discrete Mathematics and Probability Theory": "CS基础/课程推荐/数学基础/UCBDM.md"
- 算法基础:
- "UCB CS61B: Data Structures": "CS基础/课程推荐/算法基础/UCBCS61B.md"
- 工具与策略: "CS基础/工具与策略.md"
- 基础深入:
- 深入导览: "基础深入/导览.md"
- 数学进阶:
- "概率论专题": "基础深入/课程推荐/数学进阶/Probability.md"
- "SCNU: A Concrete Introduction to Number Theory and Algebra": "基础深入/课程推荐/数学进阶/CINTA.md"
- 计算理论:
- "ITOC: Introduction To The Theory Of Computation": "基础深入/课程推荐/计算理论/ITOC.md"
- 算法进阶:
- "UCB CS170: Efficient Algorithms and Intractable Problems": "基础深入/课程推荐/算法进阶/UCBCS170.md"
- PL:
- 函数式编程:
- "CS3110: OCaml Programming Correct + Efficient + Beautiful": "基础深入/课程推荐/PL/函数式编程/CornellCS3110.md"
- 编译原理:
- "Modern Compiler Implementation": "基础深入/课程推荐/PL/编译原理/MordernCompilerImpl.md"
- 编译语言设计和程序分析:
- "Brown CSCI1260 / UCB CS164 Compilers and Program Analysis:": "基础深入/课程推荐/PL/编译语言设计和程序分析/BrownCSCI1260.md"
- 体系结构:
- "UCB CS61C: Great Ideas in Computer Architecture (Machine Structures)": "基础深入/课程推荐/体系结构/UCBCS61C.md"
- "Brown CSCI0300: Fundamentals of Computer Systems": "基础深入/课程推荐/体系结构/BrownCS0300.md"
- Systems:
- 操作系统:
- "操作系统专题": "基础深入/课程推荐/Systems/操作系统/OS.md"
- "MIT 6.1810: Operating System Engineering": "基础深入/课程推荐/Systems/操作系统/MIT6.S1810.md"
- "UCB CS162: Operating Systems and System Programming": "基础深入/课程推荐/Systems/操作系统/UCBCS162.md"
- 分布式系统:
- "MIT 6.5840: Distributed Systems": "基础深入/课程推荐/Systems/分布式系统/MIT6.5840.md"
- 人工智能:
- "UCB CS188: Introduction to Artificial Intelligence": "基础深入/课程推荐/人工智能/UCBCS188.md"
- "UMich EECS 498-007 / 598-005: Deep Learning for Computer Vision": "基础深入/课程推荐/深度学习/UMEECS498.md"
- 计算机安全:
- 综合:
- "UCB CS161: Computer Security": "基础深入/课程推荐/计算机安全/综合/UCBCS161.md"
- 密码学:
- "Brown CSCI1510: Introduction to Cryptography and Computer Security": "基础深入/课程推荐/计算机安全/密码学/BrownCSCI1510.md"
- "Brown CSCI1515: Applied Cryptography": "基础深入/课程推荐/计算机安全/密码学/BrownCSCI1515.md"
- 书籍推荐:
- "推荐书目" : "书籍推荐.md"
- Books:
- "Operating Systems: Three Easy Pieces" : "books/OSTEP.md"
- 贡献要求: "贡献方式及要求.md"
- 后记: "end.md"