-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
116 lines (107 loc) · 3.44 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
site_name: xxrjun/cs-resources
site_author: xxrjun
repo_name: cs-resources
repo_url: https://github.com/xxrjun/cs-resources
edit_uri: edit/main/docs/
theme:
name: material
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: red
toggle:
icon: material/brightness-4
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
font:
code: Roboto Mono
text: Josefin Sans
features:
- content.tabs.link
- navigation.path
# - navigation.sections
markdown_extensions:
- abbr
- attr_list
- pymdownx.snippets
- admonition
- pymdownx.details
- pymdownx.superfences
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- Home: index.md
- Toolkits:
- Development Tools: toolkits/DevelopmentTools.md
- Daily Tools: toolkits/DailyTools.md
- Thesis: toolkits/Thesis.md
- MIS: toolkits/MIS.md
- Platforms:
- Youtube Channels: platforms/YoutubeChannels.md
- GitHub Repositories: platforms/GitHubRepositories.md
- News: platforms/News.md
- Fundamentals:
- Introduction: fundamentals/IntroductionToComputerScience.md
- Programming Languages: fundamentals/ProgrammingLanguages.md
- Data Structures and Algorithms: fundamentals/DataStructuresAndAlgorithms.md
- Computer Networking: fundamentals/ComputerNetworking.md
# - Operating Systems: fundamentals/OperatingSystems.md
# - Compilers: fundamentals/Compilers.md
# - Databases: fundamentals/Databases.md
# - Mathematics:
# - Calculus: mathematics/Calculus.md
# - Linear Algebra: mathematics/LinearAlgebra.md
# - Discrete Mathematics: mathematics/discrete-mathematics.md
- Machine Learning:
- Resources: ml/Resources.md
- News and Blogs: ml/NewsAndBlogs.md
- Web Development:
- Beginning: web/Beginning.md
# - Frontend: web/Frontend.md
- Backend: web/Backend.md
- CMS: web/CMS.md
# - LLM: ml/llm.md
# - Software Engineering: SoftwareEngineering.md
# - Specialized Fields:
# - Data Science: specialized-fields/data-science.md
# - Quantum Computing: specialized-fields/quantum-computing.md
# - DevOps: specialized-fields/devops.md
- Career:
# - Graduate Entrance Examination: careers/graduate-entrance-examination.md
- Interview Preparation: careers/Interview.md
# - Resume and Portfolio: careers/resume-and-portfolio.md
- My Setup: MySetup.md
# - About Me: AboutMe.md
- Link Status Report: links_status_report.html
extra_css:
- stylesheets/extra.css
copyright: >
Copyright © 2023 - present, xxrjun, All rights reserved.
plugins:
- search
- git-revision-date-localized:
enable_creation_date: true
- git-committers:
repository: xxrjun/cs-resources
branch: main
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/xxrjun
- icon: fontawesome/brands/x-twitter
link: https://twitter.com/xxrjun
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/leon-tsou/
- icon: fontawesome/brands/instagram
link: https://www.instagram.com/r._jun/
- icon: fontawesome/solid/paper-plane
link: mailto:a1094030@g.ncu.edu.tw
generator: false