forked from prepguides/prepguides.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent-config.json
More file actions
298 lines (298 loc) · 11.1 KB
/
content-config.json
File metadata and controls
298 lines (298 loc) · 11.1 KB
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
{
"version": "1.0.0",
"lastUpdated": "2025-01-27",
"categories": {
"kubernetes": {
"name": "Kubernetes",
"icon": "☸️",
"description": "Container orchestration and microservices architecture",
"color": {
"primary": "#3b82f6",
"secondary": "#1d4ed8"
},
"subtopics": {
"request-flow": {
"name": "Request Flow",
"description": "Understanding how requests flow through Kubernetes",
"content": [
{
"id": "k8s-request-flow",
"title": "Kubernetes Request Flow",
"description": "Interactive visualization of request flow through K8s components",
"type": "visualization",
"path": "kubernetes/request-flow.html",
"addedDate": "2025-01-20",
"status": "active"
}
]
},
"operator-guide": {
"name": "Operator Guide",
"description": "Comprehensive guide to building and managing Kubernetes operators with practical examples and best practices",
"content": [
{
"id": "kubernetes-operator-guide",
"title": "Kubernetes Operator Guide",
"description": "Comprehensive guide to building and managing Kubernetes operators with practical examples and best practices",
"repo": "prepguides/go-interviews",
"path": "operator/README.md",
"type": "guide",
"status": "active",
"addedDate": "2025-01-27"
}
]
}
}
},
"algorithms": {
"name": "Algorithms",
"icon": "🔢",
"description": "Interactive algorithm visualizations for technical interview preparation",
"color": {
"primary": "#8b5cf6",
"secondary": "#a855f7"
},
"subtopics": {
"sorting": {
"name": "Sorting Algorithms",
"description": "Visualizations of various sorting algorithms",
"content": [
{
"id": "sorting-algorithms",
"title": "Sorting Algorithms",
"description": "Master 6 essential sorting algorithms with step-by-step visualizations and performance comparisons",
"type": "visualization",
"path": "algorithms/sorting.html",
"addedDate": "2025-01-15",
"status": "active",
"features": [
"Bubble, Selection, Insertion, Merge, Quick, Heap Sort",
"Real-time performance metrics and comparisons",
"Interactive array manipulation and sorting",
"Time complexity analysis (O(n²) to O(n log n))"
],
"jsFile": "algorithms/code/sorting-visualizer.js"
}
]
},
"trees": {
"name": "Tree Structures",
"description": "Binary trees, BSTs, and tree traversal algorithms",
"content": [
{
"id": "binary-search-tree",
"title": "Binary Search Tree",
"description": "Complete BST operations with explicit left/right positioning and traversal animations",
"type": "visualization",
"path": "algorithms/binary-search-tree.html",
"addedDate": "2025-01-15",
"status": "active",
"features": [
"Insert, Delete, Search with color-coded animations",
"Inorder, Preorder, Postorder, Level-order traversals",
"Explicit left/right child positioning",
"Random tree generation with BST validation"
],
"jsFile": "algorithms/code/bst-visualizer.js"
}
]
},
"graph-traversal": {
"name": "Graph Traversal",
"description": "BFS, DFS, and graph algorithms",
"content": [
{
"id": "bfs-dfs-graph-traversal",
"title": "BFS/DFS Graph Traversal",
"description": "Master graph traversal algorithms with interactive node-by-node exploration",
"type": "visualization",
"path": "algorithms/bfs-dfs-graph-traversal.html",
"addedDate": "2025-01-15",
"status": "active",
"features": [
"Breadth-First Search (BFS) with queue visualization",
"Depth-First Search (DFS) with stack visualization",
"Interactive graph creation and manipulation",
"Path finding and shortest path algorithms"
],
"jsFile": "algorithms/code/graph-traversal-visualizer.js"
}
]
},
"trie-operations": {
"name": "Trie Operations",
"description": "Prefix tree data structure operations",
"content": [
{
"id": "trie-operations",
"title": "Trie Operations",
"description": "Master the prefix tree data structure with dynamic string operations and autocomplete simulation",
"type": "visualization",
"path": "algorithms/trie-operations.html",
"addedDate": "2025-01-15",
"status": "active",
"features": [
"Insert, Search, Delete with character-by-character animation",
"Prefix matching and autocomplete functionality",
"Dynamic trie construction and visualization",
"String manipulation and word suggestions"
],
"jsFile": "algorithms/code/trie-visualizer.js"
}
]
},
"shortest-path": {
"name": "Shortest Path",
"description": "Dijkstra's algorithm and path finding",
"content": [
{
"id": "dijkstra-algorithm",
"title": "Dijkstra's Algorithm",
"description": "Find shortest paths in weighted graphs with priority queue visualization and distance tracking",
"type": "visualization",
"path": "algorithms/dijkstra-algorithm.html",
"addedDate": "2025-01-15",
"status": "active",
"features": [
"Step-by-step shortest path calculation",
"Priority queue and distance array visualization",
"Interactive weighted graph creation",
"Path reconstruction and cost analysis"
],
"jsFile": "algorithms/code/dijkstra-visualizer.js"
}
]
},
"dynamic-programming": {
"name": "Dynamic Programming",
"description": "DP problems and memoization techniques",
"content": [
{
"id": "dynamic-programming",
"title": "Dynamic Programming",
"description": "Solve classic DP problems with memoization tables and optimal substructure visualization",
"type": "visualization",
"path": "algorithms/dynamic-programming.html",
"addedDate": "2025-01-15",
"status": "active",
"features": [
"0/1 Knapsack with weight-value optimization",
"Longest Common Subsequence (LCS) with table filling",
"Memoization vs Tabulation comparison",
"Optimal substructure and overlapping subproblems"
],
"jsFile": "algorithms/code/dp-visualizer.js"
}
]
},
"heap-operations": {
"name": "Heap Operations",
"description": "Binary heap data structure operations",
"content": [
{
"id": "binary-heap-operations",
"title": "Binary Heap Operations",
"description": "Master priority queue operations with heap property maintenance and array-based visualization",
"type": "visualization",
"path": "algorithms/binary-heap.html",
"addedDate": "2025-01-27",
"status": "active",
"features": [
"Min/Max heap with insert, extract, and heapify",
"Array-based heap representation and tree visualization",
"Priority queue operations and heap sort",
"Heap property validation and bubble operations"
],
"jsFile": "algorithms/code/heap-visualizer.js"
}
]
},
"segment-tree": {
"name": "Segment Tree",
"description": "Range queries and tree construction",
"content": [
{
"id": "segment-tree-operations",
"title": "Segment Tree",
"description": "Efficient range queries with O(log n) operations and dynamic tree construction",
"type": "visualization",
"path": "algorithms/segment-tree.html",
"addedDate": "2025-01-27",
"status": "active",
"features": [
"Range Sum, Min, Max queries with tree visualization",
"Point updates and range update operations",
"Interactive tree construction from arrays",
"Efficient O(log n) query and update complexity"
],
"jsFile": "algorithms/code/segment-tree-visualizer.js"
}
]
}
}
},
"networking": {
"name": "Networking",
"icon": "🌐",
"description": "OSI model, TCP/IP, and network protocols visualization",
"color": {
"primary": "#10b981",
"secondary": "#059669"
},
"subtopics": {
"osi-model": {
"name": "OSI Model",
"description": "Understanding the 7-layer OSI model",
"content": [
{
"id": "osi-7-layer",
"title": "OSI 7-Layer Model",
"description": "Interactive visualization of the OSI model layers",
"type": "visualization",
"path": "networking/osi-model.html",
"addedDate": "2025-01-18",
"status": "active"
}
]
}
}
},
"databases": {
"name": "Databases",
"icon": "🗄️",
"description": "Database design, replication, and scaling patterns",
"color": {
"primary": "#f59e0b",
"secondary": "#d97706"
},
"subtopics": {}
},
"microservices": {
"name": "Microservices",
"icon": "🏗️",
"description": "Service mesh, API gateways, and distributed systems",
"color": {
"primary": "#ef4444",
"secondary": "#dc2626"
},
"subtopics": {}
},
"system-design": {
"name": "System Design",
"icon": "🏛️",
"description": "Scalability patterns, caching strategies, and architecture",
"color": {
"primary": "#6366f1",
"secondary": "#4f46e5"
},
"subtopics": {}
}
},
"statistics": {
"totalContent": 11,
"totalVisualizations": 10,
"totalGuides": 1,
"categoriesWithContent": 3,
"lastContentAdded": "2025-01-27"
}
}