Compare commits

...

2 commits

Author SHA1 Message Date
Daniel Bulant
81001d3290 fixup meta 2026-02-05 17:21:38 +01:00
Daniel Bulant
848d7e13c4 touch up rest of sites 2026-02-05 17:19:25 +01:00
5 changed files with 83 additions and 54 deletions

View file

@ -79,7 +79,7 @@ nav .links {
.btn {
isolation: isolate;
position: relative;
display: flex;
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.25rem 0.5rem;
@ -156,6 +156,6 @@ main {
background-image: url("/assets/icon-link.svg");
}
main.profile {
/*main.profile {
background: var(--bg-dark);
}
}*/

View file

@ -3,7 +3,8 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Daniel Bulant - Profile</title>
<meta name="description" content="My group for Web of Things." />
<title>Daniel Bulant - Group</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />

View file

@ -3,6 +3,10 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Home page for my website for Web of Things."
/>
<title>Daniel Bulant - AU Home</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />

View file

@ -3,6 +3,7 @@
<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" />
@ -43,61 +44,18 @@
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>
<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>
<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

View file

@ -3,7 +3,8 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Daniel Bulant - Profile</title>
<meta name="description" content="List of projects I've worked on." />
<title>Daniel Bulant - Projects</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
@ -33,6 +34,71 @@
<main>
<h1>Projects</h1>
<ul>
<li class="card">
<a class="btn btn-link-out" href="https://haxagon.cz"
>Haxagon</a
>
- cybersecurity e-learning platform for highschools, with
real-time data streaming, advanced permissions and virtual
machines.
</li>
<li class="card">
<a
class="btn btn-link-out"
href="https://danbulant.itch.io/heaventaker"
>
Heaventaker
</a>
- a short WIP Helltaker fan-game.
</li>
<li class="card">
<a
class="btn btn-link-out"
href="https://tictactoe.danbulant.eu"
>
Tictactoe
</a>
- ultimate tictactoe variant with (simple) online and local
multiplayer.
</li>
<li class="card">
<a
class="btn btn-link-out"
href="https://github.com/danbulant/chip8"
>
Chip8 emulator
</a>
<p>
with support for more memory using a hack, as well as a
<a
class="btn btn-link-out"
href="https://github.com/danbulant/chip8badapple"
>
Bad Apple ROM generator
</a>
using that hack.
</p>
</li>
<li class="card">
<a
class="btn btn-link-out"
href="https://github.com/danbulant/Mangades"
>
A site
</a>
for generating EPUBs and CBZs from Mangadex entries.
</li>
<li class="card">
<a
class="btn btn-link-out"
href="https://github.com/danbulant/wooting-fun"
>
Bad Apple on Wooting keyboards
</a>
using their addressable RGB LEDs.
</li>
</ul>
</main>
</body>
</html>