236 lines
9.1 KiB
Plaintext
236 lines
9.1 KiB
Plaintext
---
|
|
import Layout from "../layouts/Layout.astro";
|
|
import Link from "../components/Link.astro"
|
|
|
|
const now = new Date();
|
|
let years = now.getFullYear() - 2006 - 1
|
|
if (now.getMonth() > 7 || (now.getMonth() === 7 && now.getDate() >= 23)) {
|
|
years++
|
|
}
|
|
---
|
|
|
|
<style>
|
|
td {
|
|
vertical-align: top;
|
|
}
|
|
|
|
td.flex {
|
|
padding: 0.25rem 0 0.5rem 0;
|
|
}
|
|
|
|
th {
|
|
text-align: left;
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
tr {
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
tr:last-of-type {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.hashtag {
|
|
padding: 0 0.1rem;
|
|
background-color: #e8e8e8;
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
ul {
|
|
li {
|
|
list-style-type: disc;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<Layout>
|
|
<div class="w-screen h-full flex items-center justify-start flex-col">
|
|
<div class="w-1 h-10 shrink-0"/>
|
|
|
|
<div class="w-[50vw] border-solid border-black border-1 p-1 shrink-0">
|
|
<p>Note: this page has been kept simple in favor of accessibility</p>
|
|
|
|
<div class="h-4"/>
|
|
|
|
<p class="text-xl">Hi, I'm <span class="font-bold">Daniel Svitaň</span>, an {years} year-old aspiring
|
|
engineer</p>
|
|
<p>I currently reside in Bratislava, Slovakia</p>
|
|
<p>Contacts:
|
|
<a href="mailto:selfsigned-ash@proton.me" target="_blank" class="underline">selfsigned-ash@proton.me</a>
|
|
<a href="tel:+421948309804" target="_blank" class="underline ml-2">+421 948 309 804</a>
|
|
</p>
|
|
<p>Socials:
|
|
<a href="https://github.com/Streamer272" target="_blank" class="underline">GitHub</a>
|
|
<a href="https://gitea.svitan.dev/Streamer272" target="_blank" class="underline ml-2">Gitea</a>
|
|
</p>
|
|
|
|
<div class="h-6"/>
|
|
|
|
<p class="text-lg">Experience:</p>
|
|
<table class="w-full">
|
|
<tr>
|
|
<th class="w-44">When</th>
|
|
<th class="w-80 shrink-0">Occupation</th>
|
|
<th>Details</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>July, 2024 - present</td>
|
|
<td>Data Scientist<br/>
|
|
Faculty of Electronics and Informatics, Slovak Technical University in Bratislava (FEI STU)
|
|
</td>
|
|
<td>
|
|
<ul>
|
|
<li>Contributed to the ECG disease detection neural network</li>
|
|
<li>Created data labeling system for the ECG quality classification neural network</li>
|
|
<li>Contributed to the ECG quality classification neural network</li>
|
|
<li>Created quality classification system based on ECG quality classification neural
|
|
network
|
|
</li>
|
|
<li>Wrote the Tom & Jerry LabChart Text File Dynamic Sync Algorithm</li>
|
|
<li>Contributed to the Parkinson detection based on sleep patterns project</li>
|
|
</ul>
|
|
<p class="mt-2 flex items-center gap-x-1">
|
|
Reference:
|
|
<Link link="https://ieeexplore.ieee.org/document/10844607"/>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="h-6"/>
|
|
|
|
<p class="text-lg">Some of my projects:</p>
|
|
<table class="w-full">
|
|
<tr>
|
|
<th class="w-60">Name</th>
|
|
<th class="w-24">Reference</th>
|
|
<th>Description</th>
|
|
<th class="w-32">Tags</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>SOČ 2024/2025 Paper</td>
|
|
<td class="flex gap-x-2">
|
|
<Link link="https://gitea.svitan.dev/Streamer272/soc-2024"/>
|
|
<Link link="https://github.com/Streamer272/soc-2024"/>
|
|
</td>
|
|
<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>
|
|
<td>Green School / Zelená Škola</td>
|
|
<td class="flex gap-x-2">
|
|
<Link link="https://github.com/Streamer272/green-school"/>
|
|
<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>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>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>Adventná Výzva</td>
|
|
<td class="flex gap-x-2">
|
|
<Link link="https://github.com/7274-dev/AdventnaVyzva-React"/>
|
|
<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>
|
|
<td>Free Fall Sim</td>
|
|
<td class="flex gap-x-2">
|
|
<Link link="https://gitea.svitan.dev/Streamer272/free-fall-sim"/>
|
|
</td>
|
|
<td>A very, very simple free fall simulation</td>
|
|
<td class="flex gap-x-1 text-sm">
|
|
<span class="hashtag">#rust</span>
|
|
<span class="hashtag">#physics</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 class="h-6"/>
|
|
|
|
<p class="text-lg">Skills:</p>
|
|
<ul class="ml-4">
|
|
<li>Languages: Slovak (native), Czech (Native), English (C1), German (B1)</li>
|
|
<li>Frontend: HTML, CSS/SCSS, JavaScript/TypeScript, TailWindCSS, React, Vue, Nuxt</li>
|
|
<li>Backend: Ktor (Kotlin), Fiber (Go), Echo (Go), FastAPI (Python), NestJS (TypeScript)</li>
|
|
<li>Database: MySQL, PostgreSQL, Redis/Valkey, Firestore, MongoDB</li>
|
|
<li>Sysadmin: Docker, Caddy, ZFS</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="w-1 h-10 shrink-0"/>
|
|
</div>
|
|
</Layout>
|