78 lines
3.3 KiB
HTML
78 lines
3.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Overview of me." />
|
|
<title>Daniel Bulant - Profile</title>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link href="/assets/styles.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div class="bg-gradient"></div>
|
|
|
|
<nav>
|
|
<a href="/" class="font-bold">
|
|
Daniel Bulant
|
|
<span class="text-gray-500">></span>
|
|
Profile
|
|
</a>
|
|
<div class="links">
|
|
<a href="/profile" class="btn">/profile</a>
|
|
<a href="/projects" class="btn">/projects</a>
|
|
<a href="/group" class="btn">/group</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="nav-spacer"></div>
|
|
|
|
<main class="profile">
|
|
<div class="card">
|
|
<img src="/assets/avatar-dots-colors.svg" alt="" />
|
|
<div class="contents">
|
|
<h1>Profile</h1>
|
|
<p>
|
|
Full-stack web developer; student at Aarhus University.
|
|
</p>
|
|
<p>
|
|
I like working on different projects, sometimes useful,
|
|
sometimes silly.
|
|
</p>
|
|
<p>
|
|
I worked on a variety of
|
|
<a class="btn btn-link" href="/projects">projects</a>,
|
|
mostly websites, but also on:
|
|
</p>
|
|
<ul style="padding-left: 1rem">
|
|
<li>
|
|
A custom 32bit CPU made in logisim, with a simulator
|
|
written in Rust. Experiments with optimization like
|
|
JIT compilation, PGO and LTO. Capable of playing Bad
|
|
Apple faster than realtime on most machines.
|
|
</li>
|
|
<li>
|
|
I'm running a few servers as a sort of home lab,
|
|
where I experiment with various technologies like
|
|
Nomad, Kubernetes, Docker and more. Tictactoe
|
|
multiplayer is running there.
|
|
</li>
|
|
<li>
|
|
Tons of unpublished and mostly unfinished projects,
|
|
like a web controller for Kubernetes for easier
|
|
management, search engine tech, programming
|
|
languages as well as experiments with GUIs,
|
|
distributed computing and various cyber security
|
|
related stuff.
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|