website/site/en/index.html

69 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/style.css">
<title>Victor Vobis</title>
</head>
<body>
<header>
<h1>Victor Vobis</h1>
<p class="subtitle">Software Developer</p>
<nav class="nav-bar">
<a class="left" href="#projects">Projects</a>
<a href="#work">Work</a>
<a href="#about">About</a>
<a href="mailto:victor@victorvobis.org">Email</a>
<a href="https://git.victorvobis.org/victorvobis" target="_blank">Git</a>
<a class="right" href="/de">Deutsch</a>
</nav>
</header>
<main>
<section id="projects">
<h2>Projects</h2>
<a class="project-link" href="/en/minishell.html">
<div class="project">
<h3>Minishell</h3>
<p>A simple Bash-like shell built from scratch in C.</p>
</div>
</a>
<a class="project-link" href="/en/minirt.html">
<div class="project">
<h3>MiniRT</h3>
<p>Raytracing, custom engine, in C</p>
</div>
</a>
</section>
<section id="work">
<h2>Work</h2>
<div class="work">
<h3>Software Engineer @ Jobited</h3>
<p>12/2024 - 11/2025</p>
<p>Development of an internal web app for managing talent, employee and job listing data.</p>
<p>As lead developer responsible for project management and implementing features, including:</p>
<ul>
<li>Frontend and REST API with SvelteKit</li>
<li>Backend integration with PostgreSQL and Supabase</li>
<li>AI-automated analysis of talents and job listings with <a href="https://anthropic.com">Anthropic API</a></li>
<li>Talent-job matching algorithm using the embeddings API from <a href="https://voyageai.com">VoyageAI</a></li>
</ul>
</div>
</section>
<section id="about">
<h2>About</h2>
<p>
I'm finishing up my training at <a href="https://42vienna.at">42Vienna</a>.<br>
Over the past 2 years I've learned to take projects from start to finish and solve complex problems on my own or in a team.
My strength is in programming with system-level languages, especially <b>C and Rust</b>,
but I've also gained experience with higher-level languages like <b>Python, TypeScript/JavaScript and Go</b>.
I care a lot about simplicity and functionality — building complex systems with simple tools and approaches.<br/>
</p>
</section>
</main>
</body>
</html>