81 lines
1.8 KiB
HTML
81 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Today Dashboard</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background: #f4f6f8;
|
|
margin: 0;
|
|
padding: 40px;
|
|
color: #222;
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
font-weight: 700;
|
|
}
|
|
.section {
|
|
background: #fff;
|
|
border-radius: 12px;
|
|
padding: 24px 28px;
|
|
margin-bottom: 26px;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.07);
|
|
}
|
|
.section h2 {
|
|
margin-top: 0;
|
|
font-size: 22px;
|
|
color: #333;
|
|
border-left: 4px solid #4a90e2;
|
|
padding-left: 10px;
|
|
}
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
margin-top: 14px;
|
|
}
|
|
li {
|
|
background: #f0f3f7;
|
|
margin-bottom: 8px;
|
|
padding: 10px 14px;
|
|
border-radius: 8px;
|
|
font-size: 15px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>📌 Today Dashboard</h1>
|
|
|
|
<div class="section">
|
|
<h2>🚀 Core Dev</h2>
|
|
<ul>
|
|
<li><strong>DEFRAG</strong> — App-init afronden</li>
|
|
<li>Live console-updates + progress-bar</li>
|
|
<li><strong>Auctiora</strong> — Object-detectie verder brengen</li>
|
|
<li><strong>Scraper</strong> — Test via mobiel netwerk</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>💾 System & Ops</h2>
|
|
<ul>
|
|
<li>Lokale disk opschonen (tool)</li>
|
|
<li>Athena disk-usage inzichtelijk maken</li>
|
|
<li>Dual-boot Unix/Linux voorbereiden</li>
|
|
<li>Ruimte vrijmaken voor Ubuntu</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>🧠 Dev Experience</h2>
|
|
<ul>
|
|
<li>Athena — Autocomplete/finish verbeteren</li>
|
|
<li>Athena — Output inzichtelijker maken</li>
|
|
</ul>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|