-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
145 lines (115 loc) · 3.7 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
site_name: Scheme MkDocs
site_url: https://Kian-Chen.github.io/Scheme2024Winter
site_author: Kian-Chen
site_description: >-
A scheme for 2024 Winter
repo_url: https://github.com/Kian-Chen/Scheme2024Winter
repo_name: Scheme2024Winter
copyright: Copyright © 2024-present <a href="https://github.com/Kian-Chen" target="_blank" rel="noopener noreferrer">Kian Chen</a>
theme:
name: material
language: zh
features:
- header.autohide
- navigation.tracking
- navigation.top
- search.highlight
- search.share
- search.suggest
- content.code.annotate
include_search_page: false
search_index_only: true
shortcuts:
open_help: 191 # ?
navigate_next: 78 # n
navigate_next_alt: 39 # ->
navigate_previous: 80 # p
navigate_previous_alt: 37 # <-
open_search: 83 # s
open_search_alt: 191 # ?
toggle_dark_mode: 84 # t
toggle_header: 72 # h
toggle_navigation: 77 # m
toggle_search: 83 # s
toggle_toolbar: 85 # u
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: light blue
accent: deep purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: cyan
accent: deep purple
toggle:
icon: material/weather-night
name: Switch to light mode
font:
text: Roboto Slab
code: Roboto Mono
icon:
repo: fontawesome/brands/github
custom_dir: overrides
plugins:
- search
- minify:
minify_html: true
- git-revision-date-localized
- git-authors
extra:
social:
- icon: fontawesome/brands/github
link: https://Kian-Chen.github.io/Scheme2024Winter
markdown_extensions:
- toc:
permalink: true
- pymdownx.arithmatex
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
nav:
- Home: index.md
- Useful Tools:
- "GNU Make": "Useful Tools/Makefile.md"
- "Docker": "Useful Tools/Docker.md"
- "CMake": "Useful Tools/CMake.md"
- "GNU Debuger": "Useful Tools/GDB.md"
- "Regex": "Useful Tools/Regex.md"
- "MIT-Missing-Semester": "Useful Tools/MIT-Missing-Semester.md"
- Potpourri:
- "Manim": "Potpourri/Manim.md"
- "Socket.IO": "Potpourri/SocketIO.md"
- "CUDA": "Potpourri/CUDA.md"
- "Huggingface": "Potpourri/Huggingface.md"
- Functional Programming:
- "Haskell": "Functional Programming/Haskell.md"
- "Lean4": "Functional Programming/Lean4.md"
- Large Language Model:
- "Llama2": "LLM Development/Llama2.md"
- "LangChain": "LLM Development/LangChain.md"
- Object-Oriented Programming:
- "C++": "OOP/C++.md"
- "Java": "OOP/Java.md"
- Web Framework:
- "MkDocs": "Web Framework/MkDocs.md"
- "Streamlit": "Web Framework/Streamlit.md"
- "Vue.js": "Web Framework/Vue.md"
- "React": "Web Framework/React.md"
- "Flask": "Web Framework/Flask.md"
- "Django": "Web Framework/Django.md"
- Computer Network:
- "Stanford CS144: Computer Network": "Computer Network/CS144.md"
- "Computer Networking: A Top-Down Approach": "Computer Network/topdown.md"
- Database Systems:
- "CMU 15-445: Database Systems": "Datebase Systems/CMU15-445.md"
- Machine Learning:
- "UCB CS189: Introduction to Machine Learning": "Machine Learning/CS189.md"
- Deep Learning:
- "Stanford CS224n: Natural Language Processing": "Deep Learning/CS224n.md"
- Computer Vision:
- "OpenCV": "Computer Vision/OpenCV.md"
- "UMich EECS 498-007 / 598-005: Deep Learning for Computer Vision": "Computer Vision/EECS-498.md"
- Useful Blogs:
- "blogs": "Useful Blogs/blogs.md"