benjaminbaedorf.eu/index.html

123 lines
4.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Benjamin Bädorf</title>
<meta name="theme-color" content="#000000" id="theme-color" />
<meta name="description" content="Benjamin Bädorf is a frontend engineer based in Germany. I do some freelance stuff every once in a while.">
<meta name="Keywords" content="webdevelopment frontend javascript node freelance website why am i even doing this">
<link href="/fonts.css?1" rel="stylesheet">
<style>
html {
font-family: 'Urbanist', sans-serif;
font-size: 24px;
line-height: 1.3em;
color: #111111;
font-weight: normal;
}
body {
padding: 2vw;
background-color: white;
display: flex;
flex-direction: column;
}
body > * {
width: 100%;
max-width: 660px;
}
h1 {
font-size: 1.3rem;
font-weight: black;
line-height: 1.5rem;
}
p {
font-weight: black;
margin: 0px;
padding: 0px;
}
p, details {
margin-top: 1rem;
}
.hidden {
display: none;
}
</style>
</head>
<body>
<h1>Hi!</h1>
<p>I'm Benjamin Bädorf <span id="aka">AKA <span>b12f</span><span class="hidden">Yule</span><span class="hidden">Ben</span></span> and I often spend my time engineering software.</h1>
<p>
Stuff I work(ed) on that I find interesting includes
<a href="https://miom.space/" target="_blank" title="MiOM">this</a>
<sup>
<a href="https://git.b12f.io/MiOM/miom.space" target="_blank" title="Source code">[1]</a>
</sup>,
<a href="https://pub.solar/" target="_blank" title="pub.solar homepage">this</a>
<sup>
<a href="https://git.b12f.io/pub-solar/pub.solar" target="_blank" title="Source code">[1]</a>
</sup>,
<a href="https://git.b12f.io/pub-solar/os" target="_blank" title="PubSolarOS">this</a>,
<a href="https://latenight.blue/" target="_blank" title="latenight.blue">this</a>
<sup>
<a href="https://git.b12f.io/b12f/lnb-server" target="_blank" title="Server source code">[1]</a>
<a href="https://git.b12f.io/b12f/lnb-client" target="_blank" title="Client source code">[2]</a>
</sup>,
<a href="https://hosting.de/" target="_blank" title="hosting.de homepage">this</a>,
<a href="https://secure.hosting.de/" target="_blank" title="hosting.de management interface">this</a>,
<a href="https://flexbox.online/" target="_blank" title="FLEXBOX digital toolbox homepage">this</a>,
<a href="https://dashboard.flexbox.online/" target="_blank" title="FLEXBOX digital toolbox dashboard">this</a>,
<a href="https://brix.design/" target="_blank" title="Brix Design System">this</a>,
<a href="https://openproject.com/" target="_blank" title="OpenProject GmbH">this</a>
<sup>
<a href="https://github.com/opf/openproject" target="_blank" title="OpenProject source code">[1]</a>
</sup>,
<a href="https://abkommen60jahre.de/" target="_blank" title="Abkommen 60 Jahre homepage">this</a>,
<a href="https://git.b12f.io/b12f/wlstreamer" target="_blank" title="wlstreamer">this</a>,
<a href="https://git.b12f.io/b12f/unitfile-parser" target="_blank" title="unitfile parser">this</a>, and
<a href="https://git.b12f.io/b12f/schlechtenburg" target="_blank" title="Schlechtenburg">this</a>.
</p>
<p>
You can write me a mail <a href="mailto:hello@benjaminbaedorf.eu?Subject=Sup%20mate" title="Send me a mail!">here</a>,
see more of my code <a href="https://github.com/b12f" target="_blank" title="Github">here</a> and <a href="http://git.b12f.io/b12f" target="_blank" title="Private Gitea">here</a>,
and stalk my professional life <a href="https://www.linkedin.com/in/benjaminbaedorf" target="_blank" title="LinkedIn">here</a>.
</p>
<details>
<summary>GPG</summary>
<a
download
href="/public-pgp-benjamin-baedorf.asc"
>4332 E0D0 2B21 4D31 376C 366E 4406 E80E 13CD 656C</a>
</p>
<script>
var aka = document.getElementById('aka');
var akas = aka.children;
var current = 0;
setInterval(function() {
akas[current].setAttribute('class', 'hidden');
current++;
if (current >= akas.length) {
current = 0;
}
akas[current].setAttribute('class', '');
}, 2000);
console.log('Kissinger should die in prison for crimes against humanity.');
</script>
</body>
</html>