Merge branch 'master' of git.b12f.io:b12f/benjaminbaedorf.eu

master
Benjamin Bädorf 2022-02-10 17:48:03 +01:00
commit d1c2de72e3
No known key found for this signature in database
GPG Key ID: 4406E80E13CD656C
7 changed files with 26 additions and 1 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
eval "$(lorri direnv)"

1
.gitignore vendored
View File

@ -1 +1,2 @@
old_2016/
tags

16
fonts.css Normal file
View File

@ -0,0 +1,16 @@
/* latin-ext */
@font-face {
font-family: 'Chivo';
font-style: italic;
font-weight: 900;
src: url(fonts/chivo/v12/va9D4kzIxd1KFrBteWJ4gKHuRB39fFz2lg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Chivo';
font-style: italic;
font-weight: 900;
src: url(fonts/chivo/v12/va9D4kzIxd1KFrBteWJ4gK_uRB39fFw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

Binary file not shown.

View File

@ -53,7 +53,7 @@
<h1>Hi!<br>I'm Benjamin Bädorf <span id="aka">AKA <span>b12f</span><span class="hidden">Yule</span><span class="hidden">Ben</span><span class="hidden">Kleiner</span></span> and I mainly spend my time engineering software.</h1>
<p>
A non-exhaustive list of stuff I work(ed) on that I find interesting includes
Stuff I work(ed) on that I find interesting includes
<a href="https://latenight.blue/" target="_blank" title="latenight.blue">this</a>
<sup>
@ -74,6 +74,7 @@
<a href="https://git.b12f.io/MiOM/miom.space" 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://abkommen60jahre.de/" target="_blank" title="Abkommen 60 Jahre homepage">this</a>,
<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>

6
shell.nix Normal file
View File

@ -0,0 +1,6 @@
with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixpkgs-unstable.tar.gz) {});
mkShell {
buildInputs = [
nodejs
];
}