Spaces:
Running
Running
Commit ·
4a54fbd
1
Parent(s): 8d69d5b
Add Python and Azure DevOps cards to main dashboard
Browse files- index.html +44 -0
index.html
CHANGED
|
@@ -198,6 +198,24 @@
|
|
| 198 |
border-color: #58a6ff;
|
| 199 |
box-shadow: 0 8px 24px rgba(88,166,255,0.15);
|
| 200 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 201 |
</style>
|
| 202 |
</head>
|
| 203 |
|
|
@@ -249,6 +267,32 @@
|
|
| 249 |
</div>
|
| 250 |
</a>
|
| 251 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 252 |
<a href="ml_complete-all-topics/index.html" class="card ml-card">
|
| 253 |
<div>
|
| 254 |
<span class="badge">Core</span>
|
|
|
|
| 198 |
border-color: #58a6ff;
|
| 199 |
box-shadow: 0 8px 24px rgba(88,166,255,0.15);
|
| 200 |
}
|
| 201 |
+
|
| 202 |
+
.python-card .badge {
|
| 203 |
+
background: rgba(249, 211, 70, 0.15);
|
| 204 |
+
color: #f9d346;
|
| 205 |
+
}
|
| 206 |
+
|
| 207 |
+
.python-card:hover {
|
| 208 |
+
border-color: #f9d346;
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
.devops-card .badge {
|
| 212 |
+
background: rgba(0, 120, 212, 0.15);
|
| 213 |
+
color: #0078d4;
|
| 214 |
+
}
|
| 215 |
+
|
| 216 |
+
.devops-card:hover {
|
| 217 |
+
border-color: #0078d4;
|
| 218 |
+
}
|
| 219 |
</style>
|
| 220 |
</head>
|
| 221 |
|
|
|
|
| 267 |
</div>
|
| 268 |
</a>
|
| 269 |
|
| 270 |
+
<!-- Python Masterclass -->
|
| 271 |
+
<a href="Python/index.html" class="card python-card">
|
| 272 |
+
<div>
|
| 273 |
+
<span class="badge">🐍 Core Language</span>
|
| 274 |
+
<h2>Python Masterclass</h2>
|
| 275 |
+
<p>From essential syntax to advanced production engineering. Master OOP, decorators, asynchronous programming, NumPy, and performance optimization.</p>
|
| 276 |
+
</div>
|
| 277 |
+
<div class="card-footer">
|
| 278 |
+
<span style="color: #f9d346">Learn Python</span>
|
| 279 |
+
<span class="arrow">→</span>
|
| 280 |
+
</div>
|
| 281 |
+
</a>
|
| 282 |
+
|
| 283 |
+
<!-- Azure DevOps & MLOps -->
|
| 284 |
+
<a href="AzureDevops/index.html" class="card devops-card">
|
| 285 |
+
<div>
|
| 286 |
+
<span class="badge">☁️ Infrastructure</span>
|
| 287 |
+
<h2>Azure DevOps & MLOps</h2>
|
| 288 |
+
<p>CI/CD pipelines, Docker, Kubernetes, Security, and MLOps on Azure. From Zero to Production with YAML pipelines and IaC.</p>
|
| 289 |
+
</div>
|
| 290 |
+
<div class="card-footer">
|
| 291 |
+
<span style="color: #0078d4">Master DevOps</span>
|
| 292 |
+
<span class="arrow">→</span>
|
| 293 |
+
</div>
|
| 294 |
+
</a>
|
| 295 |
+
|
| 296 |
<a href="ml_complete-all-topics/index.html" class="card ml-card">
|
| 297 |
<div>
|
| 298 |
<span class="badge">Core</span>
|