Recent activity section

This commit is contained in:
FliegendeWurst 2023-11-09 12:14:38 +01:00
parent cfe9a124b6
commit 2e7df4c403
4 changed files with 50 additions and 10 deletions

9
activity.json Normal file
View File

@ -0,0 +1,9 @@
[
{
"date": "2023-10-06",
"title": "amplified_fixed: Noise parameters to reduce flooded caves in Minecraft amplified generation",
"target": "https://github.com/FliegendeWurst/amplified_fixed",
"type": "project"
}
]

View File

@ -10,10 +10,6 @@
align-items: center;
}
article {
max-width: 45em;
}
main {
max-width: 60em;
margin-left: auto;
@ -28,6 +24,11 @@ main {
width: 30em;
padding: 3em;
}
.content-img-tall {
width: 30%;
padding: 1em;
float: right;
}
.fancy-name, .code {
font-family: monospace;
@ -39,6 +40,19 @@ main {
padding-top: 0.5em;
}
img.activity-favicon {
width: 1em;
}
ul.hide-decoration {
padding-left: 0px;
}
li.hide-decoration {
list-style-type: none;
padding-bottom: .4em;
}
@media print {
body {
background-color: white;
@ -58,5 +72,9 @@ main {
}
main {
background-color: #222;
--background-color: #222;
}
.white-svg, .activity-favicon {
filter: invert();
}
}

View File

@ -14,6 +14,10 @@
{% block content %} {% endblock %}
<hr>
<center>
<a href="https://github.com/FliegendeWurst/"><img src="/assets/GitHub FliegendeWurst.svg"></a>
<a href="https://gitlab.com/arnekeller"><img src="/assets/GitLab arnekeller.svg"></a>
<a href="https://git.fliegendewurst.eu/explore/repos"><img src="/assets/Gitea.svg"></a>
<br>
<small>
© FliegendeWurst, 2022-2023.
Source: <a href="https://github.com/FliegendeWurst/fliegendewurst.eu">github.com/FliegendeWurst/fliegendewurst.eu</a>.
@ -21,6 +25,8 @@
This work is licensed under a
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/">
Creative Commons Attribution 4.0 International License</a>.
<br>
<small>Website design inspired by <a href="https://isabelroses.com/">Isabel Roses</a>'s website and <a href="https://utdemir.com/">Utku Demir</a>'s website.</small>
</small>
</center>
</main>

View File

@ -33,22 +33,29 @@ Projects
<li> <a href="https://gitlab.com/arnekeller/symlink-dupes">symlink-dupes</a>, creates symbolic links for equal files in a directory </li>
<li> <a href="https://gitlab.com/arnekeller/kwin-toggle-window">kwin-toggle-window</a>, toggle visibility of a specific window with a hotkey </li>
<li> <a href="https://gitlab.com/arnekeller/microsoft-ergonomic-keyboard">microsoft-ergonomic-keyboard</a>, a small kernel module to re-interpret one of the keys on my keyboard </li>
<li> <a href="https://github.com/FliegendeWurst/bwinf.35.1">bwinf.35.1</a>, my solutions to a computer science contest </li>
<li> Minecraft mods: <ul>
<li> <a href="https://github.com/FliegendeWurst/ServerTPS">ServerTPS</a>, displays server TPS estimate and client threads status </li>
<li> <a href="https://github.com/FliegendeWurst/AsyncLighting">AsyncLighting</a>, a hack to queue up re-light events (= more FPS) </li>
</ul>
</ul>
Old projects:
<ul>
<li> <a href="https://github.com/FliegendeWurst/bwinf.35.1">bwinf.35.1</a>, my solutions to a computer science contest </li>
Recent activity:
<ul class="hide-decoration">
{% set data = load_data(path="activity.json") %}
{% set printed = 0 %}
{% for x in data %}
{% if printed < 10 %}
<li class="hide-decoration"><img alt="" class="activity-favicon pure-img" src="/assets/github.svg"> <small>{{x.date | date(format="%Y-%m") }}</small> <a href="{{x.target}}">{{ x.title }}</a></li>
{% endif %}
{% set printed = printed + 1 %}
{% endfor %}
</ul>
Links: <a href="https://github.com/FliegendeWurst">GitHub profile</a>, <a href="https://gitlab.com/arnekeller">GitLab profile</a>, <a href="https://git.fliegendewurst.eu/explore/repos" rel="nofollow">Gitea instance</a>, <a href="https://www.boincstats.com/stats/-5/user/detail/86482458946/overview">BOINC contributions</a>.
<br>
<!-- <a href="https://www.boincstats.com/stats/-5/user/detail/86482458946/overview">BOINC contributions</a> -->
<!--
<img src="https://www.boincstats.com/signature/-5/user/86482458946/project/sig.png" alt="BOINC profile">
-->
{% endblock content %}