fliegendewurst.eu/templates/index.html

52 lines
4.1 KiB
HTML
Raw Normal View History

2023-10-02 15:52:24 +00:00
{% extends "base.html" %}
2022-02-01 14:46:34 +00:00
2023-10-02 15:52:24 +00:00
{% block html_tag %}
<html lang="en">
{% endblock html_tag %}
2022-01-26 17:34:19 +00:00
2023-10-02 15:52:24 +00:00
{% block content %}
<span>Posts</span>
2023-07-30 08:09:36 +00:00
<ul>
2023-10-02 15:52:24 +00:00
<li><a href="{{ get_url(path='@/blog/raspberry-pi-temperature-monitoring.md') }}">Raspberry Pi: temperature monitoring and more</a></li>
<li><a href="{{ get_url(path='@/blog/tree-style-tabs-new-tab-button-bottom.md') }}">Fixing the position of TST's new tab button</a></li>
<li><a href="{{ get_url(path='@/blog/z3-logic-puzzle-solving.md') }}">Solving a logic puzzle using an SMT solver</a></li>
2023-07-30 08:09:36 +00:00
<li><a href="https://gist.github.com/FliegendeWurst/6548c71a0f21a60183dbdd2bb7be16db">Repairing the filesystem on my TV's hard disk</a></li>
</ul>
2022-11-30 16:48:51 +00:00
2023-10-02 15:52:24 +00:00
Projects
2022-01-26 17:16:16 +00:00
<ul>
2023-09-29 06:53:35 +00:00
<li> <a href="https://fliegendewurst.eu/qw%C3%B6rtle/">Qwörtle</a>, a German version of Quordle</li>
2022-01-26 17:16:16 +00:00
<li> <a href="https://github.com/FliegendeWurst/KIT-ILIAS-downloader">KIT-ILIAS-downloader</a>, a tool to download files from the KIT's e-learning site </li>
2022-01-26 17:43:20 +00:00
<li> <a href="https://gitlab.com/arnekeller/yt-addiction-control">YT addiction control</a> (<a href="https://addons.mozilla.org/en-US/firefox/addon/youtube-addiction-control/">download</a>), Firefox extension to reduce Youtube's addiction potential by hiding video suggestions </li>
2023-10-02 15:52:24 +00:00
<li> <a href="{{ get_url(path='@/blog/raspberry-pi-temperature-monitoring.md') }}">raspi-oled</a>, a clock/calendar/temperature display built using a Raspberry Pi </li>
2023-09-29 06:37:23 +00:00
<li> <a href="https://gitlab.kit.edu/uskyk/kv">kv</a>, a small CLI tool / web app to create <a href="https://en.wikipedia.org/wiki/Karnaugh_map">KV diagrams</a> (<a href="https://fliegendewurst.eu/kv/">try it online!</a>) </li>
2022-01-26 17:34:19 +00:00
<li> <a href="https://github.com/FliegendeWurst/telegram_notes_bot">telegram_notes_bot</a>, a Telegram bot to interact with a <a href="https://github.com/zadam/trilium">Trilium Notes</a> database (reminders, todos, etc.) </li>
2022-01-26 17:43:20 +00:00
<li> <a href="https://github.com/FliegendeWurst/ripgrep-all/tree/mail-adapter">mail adapter</a> for ripgrep-all, really convenient to search mails <i>and</i> their attachments </li>
<li> <a href="https://github.com/FliegendeWurst/naviki-gpx-download">Naviki GPX downloader</a>, to download all recorded tracks </li>
<li> <a href="https://github.com/FliegendeWurst/borg-homedir-excludes">borg-homedir-excludes</a>, a list of cache/trash directories that are not worth backing up </li>
<li> <a href="https://github.com/FliegendeWurst/mpv-ratings-based-shuffle">mpv-ratings-based-shuffle</a> (does what the name says) </li>
<li> <a href="https://github.com/FliegendeWurst/sysinfo">sysinfo</a>, just prints CPU usage + temperature and RAM usage </li>
<li> <a href="https://github.com/FliegendeWurst/v4l-save-image">v4l-save-image</a>, to test whether a webcam works </li>
<li> <a href="https://github.com/FliegendeWurst/tmux-thumbs">tmux-thumbs</a> modified to support multi-line regexes </li>
<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>
2022-01-26 17:34:19 +00:00
<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>
2022-01-26 17:16:16 +00:00
</ul>
2022-01-26 17:13:42 +00:00
2023-09-08 11:37:36 +00:00
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>.
2022-02-07 20:25:48 +00:00
<br>
2022-05-24 10:02:28 +00:00
<!--
2022-02-07 20:25:48 +00:00
<img src="https://www.boincstats.com/signature/-5/user/86482458946/project/sig.png" alt="BOINC profile">
2022-05-24 10:02:28 +00:00
-->
2023-10-02 15:52:24 +00:00
{% endblock content %}