-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
52 lines (48 loc) · 1.88 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
# mkdocs.yml
site_name: Computer Science from Scratch
theme:
name: material
logo: assets/favicon.png
favicon: assets/favicon.png
icon:
repo: fontawesome/brands/github
palette:
- primary: white
accent: light blue
toggle:
icon: material/lightbulb-off-outline
name: Switch to dark mode
- primary: black
accent: light blue
scheme: slate
toggle:
icon: material/lightbulb
name: Switch to light mode
repo_url: https://github.com/HMUniversity/CS101
repo_name: HMUniversity/CS101
edit_uri: edit/main/docs/
extra:
homepage: https://hmu.ac.cn/CS101/
nav:
- About the course (HMU-1.101): 'index.md'
- Tools you need to learn:
- Git: 'tools-you-need-to-learn/git.md'
- GitHub: 'tools-you-need-to-learn/github.md'
- VSCode: 'tools-you-need-to-learn/vscode.md'
- VMWare: 'tools-you-need-to-learn/vmware.md'
- Linux: 'tools-you-need-to-learn/linux.md'
- GNU Make: 'tools-you-need-to-learn/gnu-make.md'
- Docker: 'tools-you-need-to-learn/docker.md'
- Regex: 'tools-you-need-to-learn/regex.md'
- Start with creating a blog:
- Introduction: 'start-with-creating-a-blog/index.md'
- Create a blog: 'start-with-creating-a-blog/create-a-blog.md'
- Computer Network with C Language:
- C Language basic: 'computer-network-with-c-language/c-language-basic.md'
- Computer Network: 'computer-network-with-c-language/index.md'
- Implement of tcp chat room: 'computer-network-with-c-language/implement-of-tcp-chat-room.md'
- Implement of a web server: 'computer-network-with-c-language/implement-of-a-web-server.md'
- Computer Network with Java Language:
- Java Language index: 'computer-programming-with-java-language/index.md'
- Classes and objects: 'computer-programming-with-java-language/classes-and-objects.md'
- Interfaces: 'computer-programming-with-java-language/interfaces.md'