120 lines
5.2 KiB
HTML
120 lines
5.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<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>
|
|
<h2>Live projects / examples of my work</h2>
|
|
<ul>
|
|
<li>
|
|
<a href="https://haxagon.cz">Haxagon</a> -
|
|
cybersecurity e-learning platform for highschools,
|
|
with real-time data streaming, advanced permissions
|
|
and virtual machines.
|
|
</li>
|
|
<li>
|
|
<a href="https://danbulant.itch.io/heaventaker">
|
|
Heaventaker
|
|
</a>
|
|
- a short WIP Helltaker fan-game.
|
|
</li>
|
|
<li>
|
|
<a href="https://tictactoe.danbulant.eu">
|
|
Tictactoe
|
|
</a>
|
|
- ultimate tictactoe variant with (simple) online
|
|
and local multiplayer.
|
|
</li>
|
|
</ul>
|
|
<h2>Other projects</h2>
|
|
<ul>
|
|
<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>
|
|
<a href="https://github.com/danbulant/chip8">
|
|
Chip8 emulator
|
|
</a>
|
|
with support for more memory using a hack, as well
|
|
as a
|
|
<a
|
|
href="https://github.com/danbulant/chip8badapple"
|
|
>
|
|
Bad Apple ROM generator
|
|
</a>
|
|
using that hack.
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/danbulant/Mangades">
|
|
A site
|
|
</a>
|
|
for generating EPUBs and CBZs from Mangadex entries.
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/danbulant/wooting-fun">
|
|
Bad Apple on Wooting keyboards
|
|
</a>
|
|
using their addressable RGB LEDs.
|
|
</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>
|