🚧 Adds project hashtags

This commit is contained in:
Daniel Svitan 2025-05-01 10:59:18 +02:00
parent 7f435ad387
commit 73afb21fe9

View File

@ -14,10 +14,8 @@ if (now.getMonth() > 7 || (now.getMonth() === 7 && now.getDate() >= 23)) {
vertical-align: top;
}
td {
a {
margin-top: 0.25rem;
}
td.flex {
padding: 0.25rem 0 0.5rem 0;
}
th {
@ -34,11 +32,17 @@ if (now.getMonth() > 7 || (now.getMonth() === 7 && now.getDate() >= 23)) {
tr:last-of-type {
border-bottom: none;
}
.hashtag {
padding: 0 0.1rem;
background-color: #e8e8e8;
border-radius: 0.25rem;
}
</style>
<Layout>
<div class="w-screen h-screen flex items-start justify-center my-10">
<div class="w-[40vw] border-solid border-black border-1 p-1">
<div class="w-[50vw] border-solid border-black border-1 p-1">
<p>Note: this page has been kept simple in favor of accessibility</p>
<div class="h-4"/>
@ -68,7 +72,7 @@ if (now.getMonth() > 7 || (now.getMonth() === 7 && now.getDate() >= 23)) {
<tr>
<td>July, 2024 - present</td>
<td>Data Scientist</td>
<td>Faculty of Electronics and Informatics, Slovak Technical University in Bratislava</td>
<td>Faculty of Electronics and Informatics, Slovak Technical University in Bratislava (FEI STU)</td>
</tr>
</table>
@ -78,8 +82,9 @@ if (now.getMonth() > 7 || (now.getMonth() === 7 && now.getDate() >= 23)) {
<table>
<tr>
<th class="w-60">Name</th>
<th class="w-32">Reference</th>
<th class="w-24">Reference</th>
<th>Description</th>
<th class="w-32">Tags</th>
</tr>
<tr>
@ -91,6 +96,10 @@ if (now.getMonth() > 7 || (now.getMonth() === 7 && now.getDate() >= 23)) {
<td>Research paper entitled "Faktory ovplyvňujúce študijné výsledky a identifikácia rizikových
skupín"
</td>
<td class="flex gap-x-1 text-sm">
<span class="hashtag">#statistics</span>
<span class="hashtag">#research</span>
</td>
</tr>
<tr>
@ -100,6 +109,10 @@ if (now.getMonth() > 7 || (now.getMonth() === 7 && now.getDate() >= 23)) {
<Link link="https://github.com/7274-dev"/>
</td>
<td>An interactive game-like app for kids with an advent theme</td>
<td class="flex gap-x-1 text-sm">
<span class="hashtag">#web-dev</span>
<span class="hashtag">#react</span>
</td>
</tr>
<tr>
@ -109,8 +122,63 @@ if (now.getMonth() > 7 || (now.getMonth() === 7 && now.getDate() >= 23)) {
<Link link="https://zelena.svr.sk/"/>
</td>
<td>A website for a school club of environmentalists</td>
<td class="flex gap-x-1 text-sm">
<span class="hashtag">#web-dev</span>
<span class="hashtag">#nuxt</span>
</td>
</tr>
<tr>
<td>Automod</td>
<td class="flex gap-x-2">
<Link link="https://github.com/Streamer272/automod"/>
</td>
<td>A discord bot for my local community</td>
<td class="flex gap-x-1 text-sm">
<span class="hashtag">#discord</span>
<span class="hashtag">#kotlin</span>
</td>
</tr>
<tr>
<td>Door alarm</td>
<td class="flex gap-x-2">
<Link link="https://gitea.svitan.dev/Streamer272/door-alarm"/>
</td>
<td>A home-made door alarm based on ultrasound sensor distance measurements (in development)</td>
<td class="flex gap-x-1 text-sm">
<span class="hashtag">#electronics</span>
<span class="hashtag">#rust</span>
</td>
</tr>
<tr>
<td>What's my acronym in Assembly</td>
<td class="flex gap-x-2">
<Link link="https://github.com/Streamer272/whats-my-acronym-asm"/>
</td>
<td>What's my acronym written in x64 Assembly, compiled with NASM</td>
<td class="flex gap-x-1 text-sm">
<span class="hashtag">#assembly</span>
<span class="hashtag">#nasm</span>
</td>
</tr>
<tr>
<td>Rat</td>
<td class="flex gap-x-2">
<Link link="https://github.com/Streamer272/rat"/>
</td>
<td>The cat clone on meth, inspired by bat (not finished)</td>
<td class="flex gap-x-1 text-sm">
<span class="hashtag">#c</span>
</td>
</tr>
</table>
<p class="mt-1">And many more, unfortunately, many closed-source, especially contracts (like NatArt) and the
tens of projects at FEI STU (including multiple algorithms and labeling / data processing systems,
mostly concerned with bio-medical signals like ECG or PPG)</p>
</div>
</div>
</Layout>