-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
212 lines (200 loc) · 7.41 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
site_name: Wiki
docs_dir: content
site_dir: generated
site_url: https://wiki.adhadse.com/
site_description: Discover all about my note space.
theme:
name: material
custom_dir: overrides
font:
text: Inter
code: JetBrains Mono
logo: assets/adhadse.png
favicon: assets/logo-wiki.png
features:
- navigation.instant
- navigation.tracking
- navigation.indexes
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.top
- toc.follow
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotate
- content.code.copy
- navigation.footer
icon:
admonition:
info: material/alert-circle
success: material/check-circle
warning: material/alert
danger: material/alert-octagon
quote: material/alert-circle
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: blue
toggle:
icon: material/weather-night
name: Switch to light mode
extra_css:
- assets/css/extra.css
- assets/css/hl.css
- assets/css/hljs.css
extra_javascript:
- assets/js/katex.js
- assets/js/highlight.js
- assets/js/home.js
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/adhadse/
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/adhadse/
analytics:
provider: google
property: G-PEQP6Y2BMV
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
# linenums: true
linenums_style: pymdownx-inline
- pymdownx.tabbed:
alternate_style: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.mark
- pymdownx.details
- admonition
- footnotes
- attr_list
- tables
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search
- glightbox
- privacy
- social:
cards_layout_options:
background_color: "#000000"
color: "#FFFFFF"
font_family: Poppins
nav:
- Blog: "https://adhadse.com"
- ML:
- Introduction To Deep Learning:
- Neural Networks:
- "ml/intro-dl/neural-networks/week1.md"
- "ml/intro-dl/neural-networks/week2.md"
- "ml/intro-dl/neural-networks/week3.md"
- "ml/intro-dl/neural-networks/week4.md"
- Machine Learning Engineering for Production:
- Introduction to Machine Learning Engineering for production:
- "ml/mle-for-production/intro-to-mle-for-production/week1.md"
- "ml/mle-for-production/intro-to-mle-for-production/week2.md"
- "ml/mle-for-production/intro-to-mle-for-production/week3.md"
- ML Data Lifecycle:
- "ml/mle-for-production/ml-data-lifecycle/week1.md"
- "ml/mle-for-production/ml-data-lifecycle/week2.md"
- "ml/mle-for-production/ml-data-lifecycle/week3.md"
- ML Modeling Pipeline:
- "ml/mle-for-production/ml-modeling-pipeline/week1.md"
- "ml/mle-for-production/ml-modeling-pipeline/week2.md"
- "ml/mle-for-production/ml-modeling-pipeline/week3.md"
- "ml/mle-for-production/ml-modeling-pipeline/week4.md"
- Deloying ML models:
- "ml/mle-for-production/deploying-ml-models/week1.md"
- "ml/mle-for-production/deploying-ml-models/week2.md"
- "ml/mle-for-production/deploying-ml-models/week3.md"
- "ml/mle-for-production/deploying-ml-models/week4.md"
- CS:
- Rust:
- Tutorial:
- "cs/rust/tutorial/getting-started.md"
- "cs/rust/tutorial/guessing-game.md"
- "cs/rust/tutorial/common-programming-concepts.md"
- "cs/rust/tutorial/ownership.md"
- "cs/rust/tutorial/structs.md"
- "cs/rust/tutorial/enums-and-pattern-matching.md"
- "cs/rust/tutorial/module-system.md"
- "cs/rust/tutorial/common-collections.md"
- "cs/rust/tutorial/error-handling.md"
- "cs/rust/tutorial/generic-types.md"
- "cs/rust/tutorial/traits.md"
- "cs/rust/tutorial/lifetimes.md"
- Testing:
- "cs/rust/tutorial/testing/testing-in-rust.md"
- "cs/rust/tutorial/testing/testing-in-rust-2.md"
- CLI App:
- "cs/rust/tutorial/cli-app/cli-app-in-rust.md"
- "cs/rust/tutorial/cli-app/cli-app-in-rust-2.md"
- Functional:
- "cs/rust/tutorial/functional/closures.md"
- "cs/rust/tutorial/functional/iterators.md"
- Cargo:
- "cs/rust/tutorial/cargo/cargo-workspaces.md"
- "cs/rust/tutorial/cargo/publishing-crate.md"
- Smart Pointers:
- "cs/rust/tutorial/smart-pointers/deref-trait.md"
- "cs/rust/tutorial/smart-pointers/drop-trait.md"
- "cs/rust/tutorial/smart-pointers/reference-counting.md"
- "cs/rust/tutorial/smart-pointers/interior-mutability.md"
- "cs/rust/tutorial/smart-pointers/reference-cycles.md"
- "cs/rust/tutorial/smart-pointers/box-smart-pointer.md"
- Concurrency:
- "cs/rust/tutorial/concurrency/creating-threads.md"
- "cs/rust/tutorial/concurrency/message-passing.md"
- "cs/rust/tutorial/concurrency/sharing-state.md"
- OOPS:
- "cs/rust/tutorial/oops/object-oriented-programming.md"
- "cs/rust/tutorial/oops/trait-objects.md"
- "cs/rust/tutorial/oops/state-design-pattern.md"
- Patterns:
- "cs/rust/tutorial/patterns/patterns-and-matching.md"
- "cs/rust/tutorial/patterns/pattern-syntax.md"
- Advanced Rust:
- "cs/rust/tutorial/advanced/unsafe.md"
- "cs/rust/tutorial/advanced/advanced-traits.md"
- "cs/rust/tutorial/advanced/advanced-types.md"
- "cs/rust/tutorial/advanced/advanced-functions-and-closures.md"
- "cs/rust/tutorial/advanced/macros.md"
- Advanced Rust Concepts:
- "cs/rust/advanced/rust_str_types.md"
- Curriculum:
- SQL:
- "cs/curriculum/sql/common-queries.md"
- Networking:
- "cs/curriculum/networking/ipv6.md"
- DevOps:
- Terraform:
- "cs/devops/terraform/terraform-freecodecamp-course.md"
- etc:
- Regex: "etc/regular-expressions.md"
- Mathematics:
- "etc/mathematics/maths-formula.md"
- Discrete Mathematics:
- "etc/mathematics/discrete-mathematics/propositional-logic.md"
watch:
- overrides
validation:
absolute_links: ignore
copyright: Copyright © 2024, <a href="https://adhadse.com" target="_blank" rel="noopener">Anurag Dhadse</a>. All Rights Reserved.