Mein Name ist Jan Kremer. Ich bin 27 Jahre alt und studiere Pharmazie an der Uni Regensburg. Manchmal schreibe ich über Technik und Software die ich benutze oder was ich gerade mache.
-
Wenn ich nicht gerade lerne, mache ich gerne Sport, vor allem Joggen, Kraftsport und Skifahren.
Ich las vor kurzem das Buch Geheime Botschaften. Die Kunst der Verschlüsselung von der Antike bis in die Zeiten des Internet1 von Simon Singh.
-Es stellt eine Einführung in die Geschichte der Verschlüsselung dar und ist für jeden, den das Thema interessiert, äußerst empfehlenswert.
-Daneben geht der Autor auch auf die “Entschlüsselung” antiker Sprachen wie der Hieroglyphen und Schriften wie Linear B ein.
-
In den letzten Kapiteln des Buchs erklärt Singh zudem “moderne” Verschlüsselungsmethoden wie RSA und den Diffie-Hellmann-Schlüsselaustausch.
-Nur leider zeigt sich hier deutlich, dass das Buch bereit 1999 publiziert wurde und somit die letzten 24 Jahre der Kryptographie nicht erwähnt werden konnten.
-Dadurch finden sich Themen wie zum Beispiel das Signal-Protokoll, die damit einhergehende massive Verbreitung starker Verschlüsselung und Krypto-Währungen hier nicht wieder.
-
Zum Glück kann man vieles davon selbst im Internet recherchieren.
Als ich vor ca. einem Jahr diese Domain kaufte, wusste ich noch nicht was ich damit anstellen will. Ich wusste nur: Ich will endlich eine eigene Webseite haben.
-
In meinen ersten Stunden Informatik in der Schule (vor über 10 Jahren) lernten wir die Grundlagen des Webdesigns mit HTML und CSS, und da ich zunächst nicht viel Zeit hatte erstellte ich genau mit diesen Tools eine kleine Startseite. Mehr schlecht als recht aber immerhin hatte ich etwas.
-
Im März diesen Jahres hatte ich dann ein wenig Zeit mich genauer mit dem Thema zu beschäftigen und fand dabei den sogenannten Jamstack. Jamstack sind Tools zur schnellen und einfachen Aufstellen von Webseite. Dies können große Projekte sein oder wie in meinem Fall ein kleiner Blog. Zuerst probierte ich Jekyll was mir jedoch nicht so gut taugte und stieß dann auf Hugo. Mit einer Vielzahl an modernen Designs und einer klinderleichten Handhaben konnte ich schnell überzeugt werden.
-
Heute weiß ich zwar immer noch nicht, was ich hiermit in Zukunft machen werde, aber ich denke es ist wichtiger den je ein Sprachrohr zu haben, das unabhängig ist von der Willkür großer Plattformen.
-
Bis bald und viel Spaß!
-
P.S.: Dieses wunderschöne Theme, das ich hier benutze, heißt Congo.
I tested a lot of different FTP programs including GUIs, TUIs and CLIs.
-There might be a problem with the FTP server but I don’t control that unfortunately.
-The only program working flawlessly so far is git-ftp, a plugin for Git.
-Not only is this perfectly integrated into git, which I am using anyway.
-Also no errors occurred so far.
-Plus I can automate the upload using hooks.
-
Git hooks
-
The real MVP however is Git Hooks.
-Hooks are scripts that run automatically on certain Git events.
-
I did, for example, create a hook to automacally build the website after commiting a change.
-Yes, this could introduce problems such as breaking changes and I end up with a broken website, but as I test it regularly this should not become a problem.
-
The second hook I created pushes the website to the FTP server whenever I push to the remote repository.
-
Git submodule
-
I recently discovered that I can use git submodule to add the public folder created by Hugo.
-This allows me to upload the repository to my pages repository on Codeberg and have the site mirrored there.
-Secoundly, it allows me to upload the website with git-ftp without uploading everything else.
Ursprünglich sollte es in diesem Post um git, jedoch ist mir bei Brainstorming aufgefallen, dass das Thema eigentlich deutlich umfangreicher sein sollte.
-
Meine Reise begann, als ich beschloss, diesen Blog zu starten.
-Da ich bis dahin Webseiten nur in reinem HTML und CSS geschrieben hatte, versuchte ich es zunächst damit.
-Schnell stellten sich dabei aber mehrere Probleme heraus:
-
-
Ich bin nicht gut in CSS.
-
Einen RSS-Feed von Hand zu erstellen ist umständlich und nicht sinnvoll.
-
Mehrere Seiten mit einheitlichem Design in HTML zu schreiben ist kompliziert.
-
Ich mag die HTML Syntax nicht.
-
-
Ich war überzeugt, dass ich eine bessere Lösung dafür brauche.
-Nach kurzer und intensiver Recherche fand ich heraus, dass die Lösung meine Problems “static site generator” heißt.
-Darüber hatte ich bereits hier geschrieben.
-
Im Zuge dessen lernte ich auch git kennen.
-Ich hatte zwar schon früher von git gehört, bis dato aber nur zum herunterladen von Software benutzt.
-Und damit sind wir schon im Kern meines Problems gelandet:
-
Warum kannte ich git nicht?
-
Meine ersten Erfahrungen mit dem Programmieren machte ich damals in der Schule, angefangen mit HTML und CSS, später mit Python und Java.
-Aber ohne git.
-An der Uni (4 Semester Wirtschaftsinformatik) ging es dann weiter mit Java, aber weiterhin ohne git.
-
Erst beim erstellen dieses Blogs kam ich auf die Idee mich mal ein wenig mit Versionsverwaltung auseinander zu setzen.
-Und seitdem bin ich verliebt.
-
Inzwischen denke ich, dass jeder von git profitieren könnte.
-Das einfache Zurückspringen zu früheren Versionen, falls mal was kaputt geht, oder das Auslagern und Zusammenführen von Branches sind einfach großartig.
-Zudem ermutigt wird man ermutigt, an logisch sinnvollen Stellen zu commiten und somit den bisherigen Stand zu speichern.
-
Es wäre meiner Meinung nach auch sinnvoll, Texte, wie zum Beispiel Projektarbeiten, nicht in Microsoft Word zu verfassen sondern besser in Textdokumenten und diese dann mit git zu verwalten und zusammenzufügen (merge).
-Diese könnten dann ganz leicht in LaTeX-Dokumente umgewandelt werden oder auch in Word formatiert werden.
-Darüber hinaus würde dies den Autoren die Möglichkeit geben, einen Texteditor der Wahl zu nutzen.
-Gerade auf älteren Maschinen, wie meinem MacBook Pro von 2015 braucht Word inzwischen einiges an Ressourcen.
-Dies könnte aber auch damit zusammen hängen, dass Word auf meinem Computer stolze 2.3 GB schwer ist.
-Zum Vergleich: Das gesamteLibreOffice braucht keine 800 MB.
-
Ich verstehe auch, dass nicht jeder auf der Kommandozeile zu Hause ist, jedoch gibt es ja auch Tools wie GitHub oder Programme mit grafischer Oberfläche, es sollte also für jeden was dabei sein.
-
Ich kratze hier gerade mal an der Oberfläche der Möglichkeiten, das meiste ist mir selbst noch nicht bekannt.
-Ich kann nur jedem, der git noch nicht nutzt es nur wärmstens empfehlen, es mal auszuprobieren.
-Schaden kann es nicht!
Yes, the title is correct.
-Well, actually it is 0.119 € per
-month or 14.28 € for 10 years.
-
To be fair, it was a special offer and only covers the domain.
-Fortunately, my provider, Netim has a free hosting plan with fits my needs.
-I even get email hosting with my own domain.
-There are also services like Neocities where you can host your website for free if you are willing to live with a subdomain.
-
Why should I? XYZ is free!
-
Yes, you can post wherever you want.
-𝕏 (formerly known as Twitter) is free1, Mastodon is free, Facebook, Instagram, Threads, Reddit, you name them, are all free, but you are giving up your freedoms.
-Mastodon might be a little better than the rest, but ultimately you depend on the host to let you post there.
-And they can block you and delete all your data without even giving you any notice.
-I hope you have a backup.
-
Hosting this blog allows me to write whatever I want.
-Sure, Netim could also block me and delete my data, but since I use Hugo I always have everything backed up on my system anyways.
-In a matter of hours I could be up and running on another hosting provider.
-
I can also use any format I want and have nearly endless possibilities to customize my blog.
-The sky is the limit.
-For example am I hosting my own photos instead of using Instagram and my own microblog instead of using Twitter/Mastodon.
-Whatever media I plan to share in the future, there is a solution out there.
-Want comments? I’m trying Cactus Comments at the moment.
-
-
-
-
-
-
-
diff --git a/public/blog/index.xml b/public/blog/index.xml
deleted file mode 100644
index 3416f00..0000000
--- a/public/blog/index.xml
+++ /dev/null
@@ -1,282 +0,0 @@
-
-
-
- Blog on Jan Kremer
- https://jankremer.eu/blog/
- Recent content in Blog on Jan Kremer
- Hugo -- gohugo.io
- de
- 2022-12-10 00:00
-
- Nix on macOS
- https://jankremer.eu/blog/nix/
- 2024-03-14 00:00
-
- https://jankremer.eu/blog/nix/
- <p>For about a year, I’ve been fascinated by <a href="https://nixos.org">Nix and NixOS</a>. I don’t remember exactly what fascinated me at first, probably the possibility to setup and configure my system using a single file. A few weeks ago, I decided to give it a serious try.</p>
-<h2 id="installation">Installation</h2>
-<p>To be honest this is not my first time installing Nix on my machine. I tried the official Nix installer and the “old” way to use Nix which is basically the same as any other package manager. I didn’t see the point of having two package managers so I uninstalled Nix quickly after.</p>
-<p>Then, a few weeks ago, I came across <a href="https://nixcademy.com/2024/01/15/nix-on-macos/">this guide</a> and it instantly clicked with me. Having a single file in which I declare my complete system and then have it set up in a few minutes without rebooting is just infinitely cool. In Nix, this feature is called <em>flake</em>. The guide uses the <a href="https://github.com/DeterminateSystems/nix-installer">Determinate systems installer</a> which sets up flakes by default. It also explains how to install Nix Darwin.</p>
-<h2 id="nix-darwin">Nix Darwin</h2>
-<p>Nix Darwin is a set of Nix modules that brings declarative configuration to macOS. It includes a bunch of options such as for the dock, Finder or the keyboard for example. It also gives the user basic configuration options for various programs. However I prefer to set up terminal based programs using <a href="#home-manager">Home Manager</a> instead, because it supports even more programs.</p>
-<p>What I do use extensively is the <a href="https://brew.sh/">Homebrew</a> module to install not only GUI (graphical user interface) apps from Homebrew, but also from the App Store.</p>
-<h2 id="home-manager">Home Manager</h2>
-<p>For everything else, from terminal based programs to their configuration, I use <a href="https://github.com/nix-community/home-manager?tab=readme-ov-file">Home Manager</a>. It includes a huge set of modules and allows me to setup every non-GUI program in a declarative way. Still, sometimes you have to configure the “traditional way”, meaning in the original configuration language. But still, I much prefer this over my cluttered <code>.config</code> directory.</p>
-<h2 id="nixvim">Nixvim</h2>
-<p>In the process of writing my Nix configuration, I became unsatisfied with my Neovim setup. I used to use <a href="https://www.lazyvim.org">LazyVim</a> but it felt more and more bloated and slow on my 9 year old machine. For some time I used <a href="https://helix-editor.com/">Helix</a> which has great defaults, such as language server protocol (LSP) and fuzzy finder integration. I really think Neovim should go in this direction. Unfortunately it lacks some features to make it my main editor, mostly support for <a href="https://typst.app/">Typst</a> which is already added to the <code>master</code> branch. It also lacks a plugin system, but given such great defaults, there isn’t that big of a need for it. Helix also features its own set of motions, and although I think they are not bad, maybe even better than Vim motions, the latter are so ubiquitously implemented that I would essentially use both all the time.</p>
-<p>That’s when I saw a video by <em>ThePrimeagen</em> in which he recommended <a href="https://github.com/nvim-lua/kickstart.nvim/tree/master">Kickstart</a>, a minimal Neovim starter configuration mainly written by <em>TJ DeVries</em>. It almost everything you need to get started and has insanely great documentation.</p>
-<p>The only thing that bothered me was the use of <a href="https://github.com/williamboman/mason.nvim">Mason</a> as a LSP package manager. For some people this might be the best way to install LSPs, but I don’t understand why I would use a second package manager when I can just use Nix for everything. Helix has a list of supported LSPs and all you have to do is make sure they are in your <code>$PATH</code>.</p>
-<p>Luckily, others already had the same issues and decided to write <a href="https://github.com/nix-community/nixvim">Nixvim</a>. Nixvim is a NixOS / Nix Darwin / Home manager module that lets you configure Neovim (almost) entirely using Nix. It uses Nix as the plugin manager and has great defaults and documentation.</p>
-<p>I basically recreated Kickstart using Nixvim with some minor tweaks. It feels just as snappy as Helix and I love it.</p>
-<h2 id="conclusion">Conclusion</h2>
-<p>This is just the tip of the tip of the iceberg of what is possible with Nix. Next, I want to learn to write my own flakes to set up development environments. I should probably learn a bit of Nix language too. But to sum it up so far, I’m really happy and excited about this “new” way to manage my computer.</p>
-
-
-
-
- Deploy a website using Git
- https://jankremer.eu/blog/git-deploy/
- 2023-09-25 00:00
-
- https://jankremer.eu/blog/git-deploy/
- <h2 id="git-ftp">Git-ftp</h2>
-<p>I tested a lot of different FTP programs including GUIs, TUIs and CLIs.
-There might be a problem with the FTP server but I don’t control that unfortunately.
-The only program working flawlessly so far is <a href="https://git-ftp.github.io/">git-ftp</a>, a plugin for Git.
-Not only is this perfectly integrated into git, which I am using anyway.
-Also no errors occurred so far.
-Plus I can automate the upload using <a href="#git-hooks">hooks</a>.</p>
-<h2 id="git-hooks">Git hooks</h2>
-<p>The real MVP however is <a href="https://git-scm.com/docs/githooks">Git Hooks</a>.
-Hooks are scripts that run automatically on certain Git events.</p>
-<p>I did, for example, create a hook to automacally build the website after commiting a change.
-Yes, this could introduce problems such as breaking changes and I end up with a broken website, but as I test it regularly this should not become a problem.</p>
-<p>The second hook I created pushes the website to the FTP server whenever I push to the remote repository.</p>
-<h2 id="git-submodule">Git submodule</h2>
-<p>I recently discovered that I can use <code>git submodule</code> to add the <code>public</code> folder created by Hugo.
-This allows me to upload the repository to my pages repository on Codeberg and have the site mirrored there.
-Secoundly, it allows me to upload the website with git-ftp without uploading everything else.</p>
-<hr>
-<p>What awesome features of Git are you using?</p>
-
-
-
-
- Geheime Botschaften – Simon Singh
- https://jankremer.eu/blog/geheime-botschaften/
- 2023-09-09 00:00
-
- https://jankremer.eu/blog/geheime-botschaften/
- <p>Ich las vor kurzem das Buch <em>Geheime Botschaften. Die Kunst der Verschlüsselung von der Antike bis in die Zeiten des Internet</em><sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup> von <a href="https://simonsingh.net">Simon Singh</a>.
-Es stellt eine Einführung in die Geschichte der Verschlüsselung dar und ist für jeden, den das Thema interessiert, äußerst empfehlenswert.
-Daneben geht der Autor auch auf die “Entschlüsselung” antiker Sprachen wie der <a href="https://de.wikipedia.org/wiki/Hieroglyphen">Hieroglyphen</a> und Schriften wie <a href="https://de.wikipedia.org/wiki/Linearschrift_B">Linear B</a> ein.</p>
-<p>In den letzten Kapiteln des Buchs erklärt Singh zudem “moderne” Verschlüsselungsmethoden wie <a href="https://de.wikipedia.org/wiki/RSA-Kryptosystem">RSA</a> und den <a href="https://de.wikipedia.org/wiki/Diffie-Hellman-Schl%C3%BCsselaustausch">Diffie-Hellmann-Schlüsselaustausch</a>.
-Nur leider zeigt sich hier deutlich, dass das Buch bereit 1999 publiziert wurde und somit die letzten 24 Jahre der Kryptographie nicht erwähnt werden konnten.
-Dadurch finden sich Themen wie zum Beispiel das <a href="https://www.signal.org/docs/">Signal-Protokoll</a>, die damit einhergehende massive Verbreitung starker Verschlüsselung und Krypto-Währungen hier nicht wieder.</p>
-<p>Zum Glück kann man vieles davon selbst im Internet recherchieren.</p>
-<p>Update: Signal wird in Zukunft <a href="https://signal.org/blog/pqxdh">quantumresistente Verschlüsselung</a> benutzen.</p>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>Originaltitel: <em>The Code Book. The Science of Secrecy from Ancient Egypt to Quantum Cryptography</em> <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
- RSS
- https://jankremer.eu/blog/rss/
- 2023-09-01 00:00
-
- https://jankremer.eu/blog/rss/
- <h2 id="what-is-rss">What is RSS?</h2>
-<p>Originally, RSS stood for “RDF/Rich Site Summary” but was later changed to “Really Simple Syndication”</p>
-<p>RSS is a way to subscribe to a website.
-Whenever that website updates it writes its changes to a <code>XML</code> file.
-You can then read this XML file and see what changed at a glance.</p>
-<p>Many websites use RSS including YouTube, <del>Reddit</del> Lemmy, <del>Twitter</del> Mastodon, most news sites, and almost any blog out there.
-For many blogs, RSS is the main way to distribute new posts.</p>
-<p>RSS is experiencing a Renaissance at the moment:
-Many people are now seeing the damages done by algorithmic feeds and want to go back to purely chronological feeds.
-RSS provides a perfect infrastructure for this.</p>
-<h2 id="how-to-read-rss">How to read RSS?</h2>
-<p>First, you need a feed reader. On macOS and iOS I highly recommend <a href="https://netnewswire.com">NetNewsWire</a>.
-For terminal fans <a href="https://newsboat.org">Newsboat</a> is the way to go.
-<a href="https://www.thunderbird.net/">Thunderbird</a> is also a good choice but there are tons of programs that can read RSS feeds.</p>
-<p>That’s bascially it. Now you need to add some feeds and you are ready.</p>
-<p>I recommend picking a reader that can also fetch the article without opening the browser and loading a ton of ads.</p>
-<p>Pro tip: You can export your subscibtions to a <code>OPML</code> file and import them into any RSS reader.</p>
-<h2 id="how-to-distribute-rss">How to distribute RSS?</h2>
-<p>This is the hardest question to answer about RSS as there are endless possibilities.</p>
-<p>The easiest way would probably be to use a service such as Mastodon that generates the feed automatically.
-If that platform isn’t for you, WordPress is a good way to host a blog.
-I read about people setting up their own scripts that automatically update the feed for new posts.</p>
-<p>I use <a href="https://gohugo.io">Hugo</a> which is a <em>static site generator</em>.
-It generates feeds automatically but lies somewhere between WordPress and writing your own scripts in terms of how tech savvy you should be.</p>
-<h2 id="how-to-find-rss">How to find RSS?</h2>
-<p>Go to a website you like, copy the URL and paste it into your RSS reader.
-Modern feed readers can find RSS feed on their own, you just have to provide a link to the site you want to subscribe to.
-If that is not the case, you could try adding <code>/index.xml</code> to the URL.</p>
-<p>Some sites, like this one, also link to their RSS feeds.
-Often those links are a the bottom of the website and are either marked as <code>RSS</code>, <code>Feed</code>, or just use the RSS logo.
-I additionally provide links to my subprojects such as my <a href="https://jankremer.eu/micro">microblog</a> or my <a href="https://jankremer.eu/fotos">photos</a>.
-Feel free to add them to your reader.</p>
-<h2 id="conclusion">Conclusion</h2>
-<p>I think RSS is on the rise.
-It’s an old protocol that survived numerous challenges
-It provides an escape from the algorithms and large social media companies.
-It also provides a way for content creators to distribute their content on their own without any middleman.</p>
-
-
-
-
- 12 cent blog
- https://jankremer.eu/blog/hosting/
- 2023-08-27 00:00
-
- https://jankremer.eu/blog/hosting/
- <p>Yes, the title is correct.
-<a href="https://knowyourmeme.com/photos/1191035">Well, actually</a> it is 0.119 € per
-month or 14.28 € for 10 years.</p>
-<p>To be fair, it was a special offer and only covers the domain.
-Fortunately, my provider, <a href="https://www.netim.com/en">Netim</a> has a free hosting plan with fits my needs.
-I even get email hosting with my own domain.
-There are also services like <a href="https://neocities.org">Neocities</a> where you can host your website for free if you are willing to live with a subdomain.</p>
-<h2 id="why-should-i-xyz-is-free">Why should I? XYZ is free!</h2>
-<p>Yes, you can post wherever you want.
-𝕏 (formerly known as Twitter) is free<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>, Mastodon is free, Facebook, Instagram, Threads, Reddit, you name them, are all free, but you are giving up your freedoms.
-Mastodon might be a little better than the rest, but ultimately you depend on the host to let you post there.
-And they can block you and delete all your data without even giving you any notice.
-I hope you have a backup.</p>
-<p>Hosting this blog allows me to write whatever I want.
-Sure, Netim could also block me and delete my data, but since I use <a href="https://gohugo.io">Hugo</a> I always have everything backed up on my system anyways.
-In a matter of hours I could be up and running on another hosting provider.</p>
-<p>I can also use any format I want and have nearly endless possibilities to customize my blog.
-The sky is the limit.
-For example am I hosting my own <a href="https://jankremer.eu/fotos">photos</a> instead of using Instagram and my own <a href="https://jankremer.eu/micro">microblog</a> instead of using Twitter/Mastodon.
-Whatever media I plan to share in the future, there is a solution out there.
-Want comments? I’m trying <a href="https://cactus.chat">Cactus Comments</a> at the moment.</p>
-<p>Let me know what you think!</p>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>Or is it? I’m not in the loop. <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
- git
- https://jankremer.eu/blog/git/
- 2023-03-22 16:47
-
- https://jankremer.eu/blog/git/
- <p>Ursprünglich sollte es in diesem Post um <a href="https://git-scm.com">git</a>, jedoch ist mir bei Brainstorming aufgefallen, dass das Thema eigentlich deutlich umfangreicher sein sollte.</p>
-<p>Meine Reise begann, als ich beschloss, diesen Blog zu starten.
-Da ich bis dahin Webseiten nur in reinem HTML und CSS geschrieben hatte, versuchte ich es zunächst damit.
-Schnell stellten sich dabei aber mehrere Probleme heraus:</p>
-<ol>
-<li>Ich bin nicht gut in CSS.</li>
-<li>Einen RSS-Feed von Hand zu erstellen ist umständlich und nicht sinnvoll.</li>
-<li>Mehrere Seiten mit einheitlichem Design in HTML zu schreiben ist kompliziert.</li>
-<li>Ich mag die HTML Syntax nicht.</li>
-</ol>
-<p>Ich war überzeugt, dass ich eine bessere Lösung dafür brauche.
-Nach kurzer und intensiver Recherche fand ich heraus, dass die Lösung meine Problems <em>“static site generator”</em> heißt.
-Darüber hatte ich bereits <a href="https://jankremer.eu/blog/genesis">hier</a> geschrieben.</p>
-<p>Im Zuge dessen lernte ich auch <em>git</em> kennen.
-Ich hatte zwar schon früher von <em>git</em> gehört, bis dato aber nur zum herunterladen von Software benutzt.
-Und damit sind wir schon im Kern meines Problems gelandet:</p>
-<h2 id="warum-kannte-ich-git-nicht">Warum kannte ich <em>git</em> nicht?</h2>
-<p>Meine ersten Erfahrungen mit dem Programmieren machte ich damals in der Schule, angefangen mit HTML und CSS, später mit Python und Java.
-Aber ohne <em>git</em>.
-An der Uni (4 Semester Wirtschaftsinformatik) ging es dann weiter mit Java, aber weiterhin ohne <em>git</em>.</p>
-<p>Erst beim erstellen dieses Blogs kam ich auf die Idee mich mal ein wenig mit <a href="https://de.wikipedia.org/wiki/Versionsverwaltung">Versionsverwaltung</a> auseinander zu setzen.
-Und seitdem bin ich verliebt.</p>
-<p>Inzwischen denke ich, dass jeder von <em>git</em> profitieren könnte.
-Das einfache Zurückspringen zu früheren Versionen, falls mal was kaputt geht, oder das Auslagern und Zusammenführen von <em>Branches</em> sind einfach großartig.
-Zudem ermutigt wird man ermutigt, an logisch sinnvollen Stellen zu <em>commiten</em> und somit den bisherigen Stand zu speichern.</p>
-<p>Es wäre meiner Meinung nach auch sinnvoll, Texte, wie zum Beispiel Projektarbeiten, nicht in <em>Microsoft Word</em> zu verfassen sondern besser in Textdokumenten und diese dann mit <em>git</em> zu verwalten und zusammenzufügen (merge).
-Diese könnten dann ganz leicht in <a href="https://jankremer.eu/blog/latex">LaTeX-Dokumente</a> umgewandelt werden oder auch in <em>Word</em> formatiert werden.
-Darüber hinaus würde dies den Autoren die Möglichkeit geben, einen Texteditor der Wahl zu nutzen.
-Gerade auf älteren Maschinen, wie meinem <em>MacBook Pro</em> von 2015 braucht <em>Word</em> inzwischen einiges an Ressourcen.
-Dies könnte aber auch damit zusammen hängen, dass <em>Word</em> auf meinem Computer stolze 2.3 GB schwer ist.
-Zum Vergleich: Das <strong>gesamte</strong> <em>LibreOffice</em> braucht keine 800 MB.</p>
-<p>Ich verstehe auch, dass nicht jeder auf der Kommandozeile zu Hause ist, jedoch gibt es ja auch Tools wie GitHub oder Programme mit grafischer Oberfläche, es sollte also für jeden was dabei sein.</p>
-<p>Ich kratze hier gerade mal an der Oberfläche der Möglichkeiten, das meiste ist mir selbst noch nicht bekannt.
-Ich kann nur jedem, der <em>git</em> noch nicht nutzt es nur wärmstens empfehlen, es mal auszuprobieren.
-Schaden kann es nicht!</p>
-<p>P.S.: Ja ich weiß, <em>git</em> ist kein Geheimtipp.</p>
-
-
-
-
- LaTeX
- https://jankremer.eu/blog/latex/
- 2023-01-12 15:35
-
- https://jankremer.eu/blog/latex/
- <p>Im Rahmen meines Wahlpflichtpraktikums schreibe ich aktuell an meiner zweiten größeren Projektarbeit. Die einzige andere Projektarbeit war bisher die für das Praktikum Pharmazeutische Technologie, welche, Stand jetzt, noch nicht vollständig abgeschlossen ist.</p>
-<p>Für diese Arbeit entschieden wir uns jedoch für <em>Microsoft Word</em>. Also im Grunde wurde uns diese Entscheidung fast abgenommen, da die Universität Regensburg uns das <em>Office 365</em> zur Verfügung stellt und es damit auch bei uns Studenten den De-Facto-Standard darstellt. Zudem erleichtert es das Arbeiten im Team doch sehr.</p>
-<p>Formatierungen sind jedoch immer ein Kampf. Daher wollte ich versuchen, <a href="https://www.latex-project.org">LaTeX</a> für diese Arbeit einzusetzen. Ich kannte <em>LaTeX</em> vor allem aus mathematischen Kursen an der Uni und hatte schon oft gehört, dass es Setzen (von <a href="https://de.wikipedia.org/wiki/Satz_(Druck)">Satz</a>) deutlich vereinfachen soll. Aber nicht nur das Schreiben mathematischer Arbeiten macht es deutlich angenehmer, durch das einbinden einiger zusätzlicher Pakete werden wissenschaftliche Texte zum Kinderspiel.</p>
-<h2 id="über-latex">Über LaTeX</h2>
-<blockquote>
-<p><strong>LaTeX</strong> [ˈlaːtɛç] ist ein Softwarepaket, das die Benutzung des Textsatzsystems TeX mit Hilfe von Makros vereinfacht. <em>LaTeX</em> wurde Anfang der 1980er Jahre von <em>Leslie Lamport</em> entwickelt.Der Name bedeutet so viel wie <em>Lamport TeX</em>. Die Entwicklung wurde seit den 1990er Jahren von einer Anzahl Entwicklern weitergeführt. Heute ist <em>LaTeX</em> die populärste Methode, <em>TeX</em> zu verwenden.</p>
-</blockquote>
-<p>— <!-- raw HTML omitted --><a href="https://de.wikipedia.org/wiki/LaTeX">Wikipedia: LaTeX</a><!-- raw HTML omitted --></p>
-<p><em>LaTeX</em> funktioniert ähnlich wie <em>HTML</em> oder <em>Markdown</em>: Zunächst wird die Formatierung von Text getrennt. Bei WYSIWYG<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>-Textverarbeitungsprogrammen wie <em>Word</em> sieht man direkt, wie das gedruckte Dokument hinterher aussehen wird. Das macht es für viele Nutzer einfacher, zwingt sie aber auch dazu, sich direkt und unmittelbar mit der Formatierung zu beschäftigen. <em>LaTeX</em> trennt dies zunächst, gibt aber dennoch eine übersichtliche Struktur vor. Zudem sind die Standard Formatvorlagen deutlich schlichter und zumindest für mich wesentlich ansprechender als die von <em>Word</em> (Warum ist alles blau und wieso <em>Calibri</em>?!). Ja, die Voreinstellungen von <em>Word</em> lassen sich überschreiben, aber das muss man auch erstmal machen.</p>
-<p>Funktionen wie ein Inhalts- oder Literaturvrezeichnis lassen sich in <em>Word</em> zwar auch realisieren, sind in <em>LaTeX</em> wesentlich simpler. Zudem lässt sich <em>LaTeX</em> durch Pakete nahezu unendlich erweitern und deckt dadruch auch jeden noch so speziellen Fall ab.</p>
-<p>Ein weiterer Punkt, warum ich <em>LaTeX</em> bevorzuge ist, dass ich jeden Texteditor benutzen kann. Ich nutze am liebsten <em>VS Code</em>, aber natürlich kann jeder beliebige Editor verwendet werden.</p>
-<p>Das einzige, was mit <em>Word</em> sicher einfacher wäre ist das einbinden und beschriften von Grafiken. Da ich einige davor in meine Projektarbeit verwende, brauchte ich hierfür eine Lösung. Diese habe ich mit <a href="https://inkscape.org/de/">Inkscape</a> gefunden. Hiermir lassen sich Bilder bearbeiten und beschriften und anschließend als <em>LaTeX</em>-Dokument speichern. Diese lassen sich dann ganz einfach einbinden.</p>
-<h2 id="fazit">Fazit</h2>
-<p>Für wen <em>Word</em> und ähnliches schon immer eine Qual war oder wer Vorerfahrung mit Texteditoren und Skriptsprachen hat, dem kann ich <em>LaTeX</em> nur ans Herz legen. Ganz einfach lassen sich wunderschöne Dokumente herzaubern. Vor allem der Font <em>Computer Modern</em> hat es mir sehr angetan. Eventuell werde ich die Projektarbeit demnächst hier hochladen.</p>
-<hr>
-<h2 id="technische-spezifikationen">Technische Spezifikationen</h2>
-<p>Kurzer Nachtrag über meine Arbeitsweise mit <em>LaTeX</em>: Als Texteditor benutze ich <a href="https://code.visualstudio.com">VS Code</a>, da ich diesen super übersichtlich finde und vor allem die Erweiterungsmöglichkeiten sehr schätze. Für <em>LaTeX</em> sind dies vor allem <a href="https://github.com/James-Yu/LaTeX-Workshop">LaTeX Workshop</a> und natürlich <a href="https://git-scm.com">git</a> (vorinstalliert). Des Weiteren benutze ich die <a href="https://www.tug.org/mactex/">MacTeX-Distribution</a>, welche ich über <a href="https://brew.sh">Homebrew</a> installiert habe.</p>
-<h3 id="verwendete-pakete">Verwendete Pakete</h3>
-<ul>
-<li><strong>babel</strong>: Sorgt für die Unterstützung verschiedener Sprachen. Ich schreibe die Projektarbeit zwar auf Englisch, jedoch brauche ich ab und zu mal Deutsche Begriffe und damiteinhergehend Umlaute etc.</li>
-<li><strong>biblatex</strong>: Verbessertes Literaturverzeichnis, alternative zu <strong>bibtex</strong>.</li>
-<li><strong>booktabs</strong>: Verschönert und vereinfacht Tabellen in <em>LaTeX</em>.</li>
-<li><strong>chemformula</strong>: Erleichtert das Setzen von chemischen Formeln enorm und sorgt dafür, dass diese auch richtig angezeigt werden.</li>
-<li><strong>hyperref</strong>: Für Links und Metadaten.</li>
-<li><strong>longtable</strong>: Die verwendeten Materialien habe ich alle in riesigen Listen. <em>LaTeX</em> kann standardmäßig nicht besonders gut mit großen Tabellen umgehen, dieses Paket hilft dabei.</li>
-<li><strong>microtype</strong>: Lässt alles schöner aussehen, praktisch schwarze Magie.</li>
-<li><strong>siunitx</strong>: Das wahrscheinlich beste Paket überhaupt, simple aber hat Power. Sorgt für perfektes setzen von Einheiten, mit oder ohne vorangehenden Wert. Zudem enthält es eine Funktion, die Werte in Tabellen um den Dezimalpunkt anordnen kann. Ein Traum.</li>
-<li><strong>textgreek</strong>: Erleichtert das verwenden von griechischen Buchstaben im Text.</li>
-<li>Zusätzliche Pakete die ich an der Stelle nicht weiter erleutern werden: <strong>color</strong>, <strong>csquotes</strong>, <strong>fontenc</strong>, <strong>glossaries</strong>, <strong>graphicx</strong>, <strong>tikz</strong> und <strong>tocbibind</strong>.</li>
-</ul>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>What you see is what you get. <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
- Genesis
- https://jankremer.eu/blog/genesis/
- 2022-12-10 00:00
-
- https://jankremer.eu/blog/genesis/
- <p>Als ich vor ca. einem Jahr diese Domain kaufte, wusste ich noch nicht was ich damit anstellen will. Ich wusste nur: <strong>Ich will endlich eine eigene Webseite haben.</strong></p>
-<p>In meinen ersten Stunden Informatik in der Schule (vor über 10 Jahren) lernten wir die Grundlagen des Webdesigns mit <em>HTML</em> und <em>CSS</em>, und da ich zunächst nicht viel Zeit hatte erstellte ich genau mit diesen Tools eine kleine Startseite. Mehr schlecht als recht aber immerhin hatte ich etwas.</p>
-<p>Im März diesen Jahres hatte ich dann ein wenig Zeit mich genauer mit dem Thema zu beschäftigen und fand dabei den sogenannten <a href="https://jamstack.org">Jamstack</a>. Jamstack sind Tools zur schnellen und einfachen Aufstellen von Webseite. Dies können große Projekte sein oder wie in meinem Fall ein kleiner Blog. Zuerst probierte ich <a href="https://jekyllrb.com/">Jekyll</a> was mir jedoch nicht so gut taugte und stieß dann auf <a href="https://gohugo.io/">Hugo</a>. Mit einer Vielzahl an modernen Designs und einer klinderleichten Handhaben konnte ich schnell überzeugt werden.</p>
-<p>Heute weiß ich zwar immer noch nicht, was ich hiermit in Zukunft machen werde, aber ich denke es ist wichtiger den je ein Sprachrohr zu haben, das unabhängig ist von der Willkür großer Plattformen.</p>
-<p>Bis bald und viel Spaß!</p>
-<p>P.S.: Dieses wunderschöne <em>Theme</em>, das ich hier benutze, heißt <a href="https://git.io/hugo-congo">Congo</a>.</p>
-
-
-
-
-
diff --git a/public/blog/latex/index.html b/public/blog/latex/index.html
deleted file mode 100644
index 47c8a18..0000000
--- a/public/blog/latex/index.html
+++ /dev/null
@@ -1,118 +0,0 @@
-
-
-
-
-
-
-LaTeX | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Im Rahmen meines Wahlpflichtpraktikums schreibe ich aktuell an meiner zweiten größeren Projektarbeit. Die einzige andere Projektarbeit war bisher die für das Praktikum Pharmazeutische Technologie, welche, Stand jetzt, noch nicht vollständig abgeschlossen ist.
-
Für diese Arbeit entschieden wir uns jedoch für Microsoft Word. Also im Grunde wurde uns diese Entscheidung fast abgenommen, da die Universität Regensburg uns das Office 365 zur Verfügung stellt und es damit auch bei uns Studenten den De-Facto-Standard darstellt. Zudem erleichtert es das Arbeiten im Team doch sehr.
-
Formatierungen sind jedoch immer ein Kampf. Daher wollte ich versuchen, LaTeX für diese Arbeit einzusetzen. Ich kannte LaTeX vor allem aus mathematischen Kursen an der Uni und hatte schon oft gehört, dass es Setzen (von Satz) deutlich vereinfachen soll. Aber nicht nur das Schreiben mathematischer Arbeiten macht es deutlich angenehmer, durch das einbinden einiger zusätzlicher Pakete werden wissenschaftliche Texte zum Kinderspiel.
-
Über LaTeX
-
-
LaTeX [ˈlaːtɛç] ist ein Softwarepaket, das die Benutzung des Textsatzsystems TeX mit Hilfe von Makros vereinfacht. LaTeX wurde Anfang der 1980er Jahre von Leslie Lamport entwickelt.Der Name bedeutet so viel wie Lamport TeX. Die Entwicklung wurde seit den 1990er Jahren von einer Anzahl Entwicklern weitergeführt. Heute ist LaTeX die populärste Methode, TeX zu verwenden.
LaTeX funktioniert ähnlich wie HTML oder Markdown: Zunächst wird die Formatierung von Text getrennt. Bei WYSIWYG1-Textverarbeitungsprogrammen wie Word sieht man direkt, wie das gedruckte Dokument hinterher aussehen wird. Das macht es für viele Nutzer einfacher, zwingt sie aber auch dazu, sich direkt und unmittelbar mit der Formatierung zu beschäftigen. LaTeX trennt dies zunächst, gibt aber dennoch eine übersichtliche Struktur vor. Zudem sind die Standard Formatvorlagen deutlich schlichter und zumindest für mich wesentlich ansprechender als die von Word (Warum ist alles blau und wieso Calibri?!). Ja, die Voreinstellungen von Word lassen sich überschreiben, aber das muss man auch erstmal machen.
-
Funktionen wie ein Inhalts- oder Literaturvrezeichnis lassen sich in Word zwar auch realisieren, sind in LaTeX wesentlich simpler. Zudem lässt sich LaTeX durch Pakete nahezu unendlich erweitern und deckt dadruch auch jeden noch so speziellen Fall ab.
-
Ein weiterer Punkt, warum ich LaTeX bevorzuge ist, dass ich jeden Texteditor benutzen kann. Ich nutze am liebsten VS Code, aber natürlich kann jeder beliebige Editor verwendet werden.
-
Das einzige, was mit Word sicher einfacher wäre ist das einbinden und beschriften von Grafiken. Da ich einige davor in meine Projektarbeit verwende, brauchte ich hierfür eine Lösung. Diese habe ich mit Inkscape gefunden. Hiermir lassen sich Bilder bearbeiten und beschriften und anschließend als LaTeX-Dokument speichern. Diese lassen sich dann ganz einfach einbinden.
-
Fazit
-
Für wen Word und ähnliches schon immer eine Qual war oder wer Vorerfahrung mit Texteditoren und Skriptsprachen hat, dem kann ich LaTeX nur ans Herz legen. Ganz einfach lassen sich wunderschöne Dokumente herzaubern. Vor allem der Font Computer Modern hat es mir sehr angetan. Eventuell werde ich die Projektarbeit demnächst hier hochladen.
-
-
Technische Spezifikationen
-
Kurzer Nachtrag über meine Arbeitsweise mit LaTeX: Als Texteditor benutze ich VS Code, da ich diesen super übersichtlich finde und vor allem die Erweiterungsmöglichkeiten sehr schätze. Für LaTeX sind dies vor allem LaTeX Workshop und natürlich git (vorinstalliert). Des Weiteren benutze ich die MacTeX-Distribution, welche ich über Homebrew installiert habe.
-
Verwendete Pakete
-
-
babel: Sorgt für die Unterstützung verschiedener Sprachen. Ich schreibe die Projektarbeit zwar auf Englisch, jedoch brauche ich ab und zu mal Deutsche Begriffe und damiteinhergehend Umlaute etc.
-
biblatex: Verbessertes Literaturverzeichnis, alternative zu bibtex.
-
booktabs: Verschönert und vereinfacht Tabellen in LaTeX.
-
chemformula: Erleichtert das Setzen von chemischen Formeln enorm und sorgt dafür, dass diese auch richtig angezeigt werden.
-
hyperref: Für Links und Metadaten.
-
longtable: Die verwendeten Materialien habe ich alle in riesigen Listen. LaTeX kann standardmäßig nicht besonders gut mit großen Tabellen umgehen, dieses Paket hilft dabei.
-
microtype: Lässt alles schöner aussehen, praktisch schwarze Magie.
-
siunitx: Das wahrscheinlich beste Paket überhaupt, simple aber hat Power. Sorgt für perfektes setzen von Einheiten, mit oder ohne vorangehenden Wert. Zudem enthält es eine Funktion, die Werte in Tabellen um den Dezimalpunkt anordnen kann. Ein Traum.
-
textgreek: Erleichtert das verwenden von griechischen Buchstaben im Text.
-
Zusätzliche Pakete die ich an der Stelle nicht weiter erleutern werden: color, csquotes, fontenc, glossaries, graphicx, tikz und tocbibind.
For about a year, I’ve been fascinated by Nix and NixOS. I don’t remember exactly what fascinated me at first, probably the possibility to setup and configure my system using a single file. A few weeks ago, I decided to give it a serious try.
-
Installation
-
To be honest this is not my first time installing Nix on my machine. I tried the official Nix installer and the “old” way to use Nix which is basically the same as any other package manager. I didn’t see the point of having two package managers so I uninstalled Nix quickly after.
-
Then, a few weeks ago, I came across this guide and it instantly clicked with me. Having a single file in which I declare my complete system and then have it set up in a few minutes without rebooting is just infinitely cool. In Nix, this feature is called flake. The guide uses the Determinate systems installer which sets up flakes by default. It also explains how to install Nix Darwin.
-
Nix Darwin
-
Nix Darwin is a set of Nix modules that brings declarative configuration to macOS. It includes a bunch of options such as for the dock, Finder or the keyboard for example. It also gives the user basic configuration options for various programs. However I prefer to set up terminal based programs using Home Manager instead, because it supports even more programs.
-
What I do use extensively is the Homebrew module to install not only GUI (graphical user interface) apps from Homebrew, but also from the App Store.
-
Home Manager
-
For everything else, from terminal based programs to their configuration, I use Home Manager. It includes a huge set of modules and allows me to setup every non-GUI program in a declarative way. Still, sometimes you have to configure the “traditional way”, meaning in the original configuration language. But still, I much prefer this over my cluttered .config directory.
-
Nixvim
-
In the process of writing my Nix configuration, I became unsatisfied with my Neovim setup. I used to use LazyVim but it felt more and more bloated and slow on my 9 year old machine. For some time I used Helix which has great defaults, such as language server protocol (LSP) and fuzzy finder integration. I really think Neovim should go in this direction. Unfortunately it lacks some features to make it my main editor, mostly support for Typst which is already added to the master branch. It also lacks a plugin system, but given such great defaults, there isn’t that big of a need for it. Helix also features its own set of motions, and although I think they are not bad, maybe even better than Vim motions, the latter are so ubiquitously implemented that I would essentially use both all the time.
-
That’s when I saw a video by ThePrimeagen in which he recommended Kickstart, a minimal Neovim starter configuration mainly written by TJ DeVries. It almost everything you need to get started and has insanely great documentation.
-
The only thing that bothered me was the use of Mason as a LSP package manager. For some people this might be the best way to install LSPs, but I don’t understand why I would use a second package manager when I can just use Nix for everything. Helix has a list of supported LSPs and all you have to do is make sure they are in your $PATH.
-
Luckily, others already had the same issues and decided to write Nixvim. Nixvim is a NixOS / Nix Darwin / Home manager module that lets you configure Neovim (almost) entirely using Nix. It uses Nix as the plugin manager and has great defaults and documentation.
-
I basically recreated Kickstart using Nixvim with some minor tweaks. It feels just as snappy as Helix and I love it.
-
Conclusion
-
This is just the tip of the tip of the iceberg of what is possible with Nix. Next, I want to learn to write my own flakes to set up development environments. I should probably learn a bit of Nix language too. But to sum it up so far, I’m really happy and excited about this “new” way to manage my computer.
Originally, RSS stood for “RDF/Rich Site Summary” but was later changed to “Really Simple Syndication”
-
RSS is a way to subscribe to a website.
-Whenever that website updates it writes its changes to a XML file.
-You can then read this XML file and see what changed at a glance.
-
Many websites use RSS including YouTube, Reddit Lemmy, Twitter Mastodon, most news sites, and almost any blog out there.
-For many blogs, RSS is the main way to distribute new posts.
-
RSS is experiencing a Renaissance at the moment:
-Many people are now seeing the damages done by algorithmic feeds and want to go back to purely chronological feeds.
-RSS provides a perfect infrastructure for this.
-
How to read RSS?
-
First, you need a feed reader. On macOS and iOS I highly recommend NetNewsWire.
-For terminal fans Newsboat is the way to go.
-Thunderbird is also a good choice but there are tons of programs that can read RSS feeds.
-
That’s bascially it. Now you need to add some feeds and you are ready.
-
I recommend picking a reader that can also fetch the article without opening the browser and loading a ton of ads.
-
Pro tip: You can export your subscibtions to a OPML file and import them into any RSS reader.
-
How to distribute RSS?
-
This is the hardest question to answer about RSS as there are endless possibilities.
-
The easiest way would probably be to use a service such as Mastodon that generates the feed automatically.
-If that platform isn’t for you, WordPress is a good way to host a blog.
-I read about people setting up their own scripts that automatically update the feed for new posts.
-
I use Hugo which is a static site generator.
-It generates feeds automatically but lies somewhere between WordPress and writing your own scripts in terms of how tech savvy you should be.
-
How to find RSS?
-
Go to a website you like, copy the URL and paste it into your RSS reader.
-Modern feed readers can find RSS feed on their own, you just have to provide a link to the site you want to subscribe to.
-If that is not the case, you could try adding /index.xml to the URL.
-
Some sites, like this one, also link to their RSS feeds.
-Often those links are a the bottom of the website and are either marked as RSS, Feed, or just use the RSS logo.
-I additionally provide links to my subprojects such as my microblog or my photos.
-Feel free to add them to your reader.
-
Conclusion
-
I think RSS is on the rise.
-It’s an old protocol that survived numerous challenges
-It provides an escape from the algorithms and large social media companies.
-It also provides a way for content creators to distribute their content on their own without any middleman.
-
-
-
-
-
-
-
diff --git a/public/index.xml b/public/index.xml
deleted file mode 100644
index c2143ef..0000000
--- a/public/index.xml
+++ /dev/null
@@ -1,501 +0,0 @@
-
-
-
- Jan Kremer
- https://jankremer.eu/
- Recent content on Jan Kremer
- Hugo -- gohugo.io
- de
- 2024-03-14 00:00
-
- Nix on macOS
- https://jankremer.eu/blog/nix/
- 2024-03-14 00:00
-
- https://jankremer.eu/blog/nix/
- <p>For about a year, I’ve been fascinated by <a href="https://nixos.org">Nix and NixOS</a>. I don’t remember exactly what fascinated me at first, probably the possibility to setup and configure my system using a single file. A few weeks ago, I decided to give it a serious try.</p>
-<h2 id="installation">Installation</h2>
-<p>To be honest this is not my first time installing Nix on my machine. I tried the official Nix installer and the “old” way to use Nix which is basically the same as any other package manager. I didn’t see the point of having two package managers so I uninstalled Nix quickly after.</p>
-<p>Then, a few weeks ago, I came across <a href="https://nixcademy.com/2024/01/15/nix-on-macos/">this guide</a> and it instantly clicked with me. Having a single file in which I declare my complete system and then have it set up in a few minutes without rebooting is just infinitely cool. In Nix, this feature is called <em>flake</em>. The guide uses the <a href="https://github.com/DeterminateSystems/nix-installer">Determinate systems installer</a> which sets up flakes by default. It also explains how to install Nix Darwin.</p>
-<h2 id="nix-darwin">Nix Darwin</h2>
-<p>Nix Darwin is a set of Nix modules that brings declarative configuration to macOS. It includes a bunch of options such as for the dock, Finder or the keyboard for example. It also gives the user basic configuration options for various programs. However I prefer to set up terminal based programs using <a href="#home-manager">Home Manager</a> instead, because it supports even more programs.</p>
-<p>What I do use extensively is the <a href="https://brew.sh/">Homebrew</a> module to install not only GUI (graphical user interface) apps from Homebrew, but also from the App Store.</p>
-<h2 id="home-manager">Home Manager</h2>
-<p>For everything else, from terminal based programs to their configuration, I use <a href="https://github.com/nix-community/home-manager?tab=readme-ov-file">Home Manager</a>. It includes a huge set of modules and allows me to setup every non-GUI program in a declarative way. Still, sometimes you have to configure the “traditional way”, meaning in the original configuration language. But still, I much prefer this over my cluttered <code>.config</code> directory.</p>
-<h2 id="nixvim">Nixvim</h2>
-<p>In the process of writing my Nix configuration, I became unsatisfied with my Neovim setup. I used to use <a href="https://www.lazyvim.org">LazyVim</a> but it felt more and more bloated and slow on my 9 year old machine. For some time I used <a href="https://helix-editor.com/">Helix</a> which has great defaults, such as language server protocol (LSP) and fuzzy finder integration. I really think Neovim should go in this direction. Unfortunately it lacks some features to make it my main editor, mostly support for <a href="https://typst.app/">Typst</a> which is already added to the <code>master</code> branch. It also lacks a plugin system, but given such great defaults, there isn’t that big of a need for it. Helix also features its own set of motions, and although I think they are not bad, maybe even better than Vim motions, the latter are so ubiquitously implemented that I would essentially use both all the time.</p>
-<p>That’s when I saw a video by <em>ThePrimeagen</em> in which he recommended <a href="https://github.com/nvim-lua/kickstart.nvim/tree/master">Kickstart</a>, a minimal Neovim starter configuration mainly written by <em>TJ DeVries</em>. It almost everything you need to get started and has insanely great documentation.</p>
-<p>The only thing that bothered me was the use of <a href="https://github.com/williamboman/mason.nvim">Mason</a> as a LSP package manager. For some people this might be the best way to install LSPs, but I don’t understand why I would use a second package manager when I can just use Nix for everything. Helix has a list of supported LSPs and all you have to do is make sure they are in your <code>$PATH</code>.</p>
-<p>Luckily, others already had the same issues and decided to write <a href="https://github.com/nix-community/nixvim">Nixvim</a>. Nixvim is a NixOS / Nix Darwin / Home manager module that lets you configure Neovim (almost) entirely using Nix. It uses Nix as the plugin manager and has great defaults and documentation.</p>
-<p>I basically recreated Kickstart using Nixvim with some minor tweaks. It feels just as snappy as Helix and I love it.</p>
-<h2 id="conclusion">Conclusion</h2>
-<p>This is just the tip of the tip of the iceberg of what is possible with Nix. Next, I want to learn to write my own flakes to set up development environments. I should probably learn a bit of Nix language too. But to sum it up so far, I’m really happy and excited about this “new” way to manage my computer.</p>
-
-
-
-
- What I'm currently doing
- https://jankremer.eu/now/
- 2023-12-30 08:34
-
- https://jankremer.eu/now/
- <h2 id="learning">Learning</h2>
-<ul>
-<li>Pharmazeutische Technologie</li>
-</ul>
-<h2 id="reading">Reading</h2>
-<ul>
-<li>Kaffee und Zigaretten – Ferdinand von Schirach</li>
-</ul>
-<h2 id="watching">Watching</h2>
-<ul>
-<li>Germany’s next topmodel</li>
-<li>Rosins Restaurants</li>
-<li>Batman – The animated series</li>
-<li>Band of Brothers</li>
-</ul>
-<h2 id="listening">Listening</h2>
-<ul>
-<li>Kölsche Karnevalsmusik (yeah I know Karneval is over)</li>
-</ul>
-
-
-
-
- What I use
- https://jankremer.eu/uses/
- 2023-12-30 08:03
-
- https://jankremer.eu/uses/
- <h2 id="hardware">Hardware</h2>
-<ul>
-<li>MacBook Pro 2015</li>
-<li>iPhone X</li>
-<li>Apple Watch SE</li>
-<li>AirPods Pro</li>
-<li>Logitech MX Master 3 (rarely)</li>
-</ul>
-<h2 id="software">Software</h2>
-<table>
-<thead>
-<tr>
-<th>Category</th>
-<th>Software</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>Unless otherwise stated</td>
-<td>Apple default apps</td>
-</tr>
-<tr>
-<td>RSS reader</td>
-<td><a href="https://netnewswire.com">NetNewsWire</a></td>
-</tr>
-<tr>
-<td>Notes</td>
-<td><a href="https://obsidian.md">Obsidian</a></td>
-</tr>
-<tr>
-<td>To-Do list</td>
-<td><a href="https://culturedcode.com/things">Things</a></td>
-</tr>
-<tr>
-<td>Text editor</td>
-<td><a href="https://neovim.io">Neovim</a>, <a href="https://helix-editor.com">Helix</a></td>
-</tr>
-<tr>
-<td>Word processing</td>
-<td><a href="https://typst.app">Typst</a></td>
-</tr>
-<tr>
-<td>Window manager</td>
-<td><a href="https://github.com/ianyh/Amethyst">Amethyst</a></td>
-</tr>
-<tr>
-<td>Terminal emulator</td>
-<td><a href="https://sw.kovidgoyal.net/kitty">Kitty</a></td>
-</tr>
-<tr>
-<td>Package manager</td>
-<td><a href="https://nixos.org">Nix</a>, <a href="https://brew.sh">Homebrew</a></td>
-</tr>
-</tbody>
-</table>
-
-
-
-
- Markdown Tables Suck
- https://jankremer.eu/micro/markdown-tables/
- 2023-12-25 16:28
-
- https://jankremer.eu/micro/markdown-tables/
- <p>Tables are arguably the worst part of Markdown.
-No horizontal lines except for the mandatory one at the top.
-The only feature is the possibility to align cells.</p>
-<p>Org Mode does much better, but isn’t perfect either.</p>
-<p>Don’t get me wrong. It’s nice to have a simple tool for simple tables.
-But sometimes I need more customizability.</p>
-
-
-
-
- Use Timestamps
- https://jankremer.eu/micro/timestamps/
- 2023-11-15 10:12
-
- https://jankremer.eu/micro/timestamps/
- <p>
-Every blog post should include a timestamp.
-In fact, this extends to almost anything online and even offline.</p>
-<p>
-Also, don't make me look for the date.
-Put the date as obvious as possible, preferably at the beginning of the post.</p>
-<p>
-I was reading <a href="https://jvns.ca/blog/2023/02/28/some-notes-on-using-nix/">Julia Evans post about nix</a> and it was not immediately clear to me if this was a recent post.
-Only when I copied the URL to complain about it I discovered the date there.
-Safari hides most of the URL by default.</p>
-
-
-
-
- Deploy a website using Git
- https://jankremer.eu/blog/git-deploy/
- 2023-09-25 00:00
-
- https://jankremer.eu/blog/git-deploy/
- <h2 id="git-ftp">Git-ftp</h2>
-<p>I tested a lot of different FTP programs including GUIs, TUIs and CLIs.
-There might be a problem with the FTP server but I don’t control that unfortunately.
-The only program working flawlessly so far is <a href="https://git-ftp.github.io/">git-ftp</a>, a plugin for Git.
-Not only is this perfectly integrated into git, which I am using anyway.
-Also no errors occurred so far.
-Plus I can automate the upload using <a href="#git-hooks">hooks</a>.</p>
-<h2 id="git-hooks">Git hooks</h2>
-<p>The real MVP however is <a href="https://git-scm.com/docs/githooks">Git Hooks</a>.
-Hooks are scripts that run automatically on certain Git events.</p>
-<p>I did, for example, create a hook to automacally build the website after commiting a change.
-Yes, this could introduce problems such as breaking changes and I end up with a broken website, but as I test it regularly this should not become a problem.</p>
-<p>The second hook I created pushes the website to the FTP server whenever I push to the remote repository.</p>
-<h2 id="git-submodule">Git submodule</h2>
-<p>I recently discovered that I can use <code>git submodule</code> to add the <code>public</code> folder created by Hugo.
-This allows me to upload the repository to my pages repository on Codeberg and have the site mirrored there.
-Secoundly, it allows me to upload the website with git-ftp without uploading everything else.</p>
-<hr>
-<p>What awesome features of Git are you using?</p>
-
-
-
-
- Geheime Botschaften – Simon Singh
- https://jankremer.eu/blog/geheime-botschaften/
- 2023-09-09 00:00
-
- https://jankremer.eu/blog/geheime-botschaften/
- <p>Ich las vor kurzem das Buch <em>Geheime Botschaften. Die Kunst der Verschlüsselung von der Antike bis in die Zeiten des Internet</em><sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup> von <a href="https://simonsingh.net">Simon Singh</a>.
-Es stellt eine Einführung in die Geschichte der Verschlüsselung dar und ist für jeden, den das Thema interessiert, äußerst empfehlenswert.
-Daneben geht der Autor auch auf die “Entschlüsselung” antiker Sprachen wie der <a href="https://de.wikipedia.org/wiki/Hieroglyphen">Hieroglyphen</a> und Schriften wie <a href="https://de.wikipedia.org/wiki/Linearschrift_B">Linear B</a> ein.</p>
-<p>In den letzten Kapiteln des Buchs erklärt Singh zudem “moderne” Verschlüsselungsmethoden wie <a href="https://de.wikipedia.org/wiki/RSA-Kryptosystem">RSA</a> und den <a href="https://de.wikipedia.org/wiki/Diffie-Hellman-Schl%C3%BCsselaustausch">Diffie-Hellmann-Schlüsselaustausch</a>.
-Nur leider zeigt sich hier deutlich, dass das Buch bereit 1999 publiziert wurde und somit die letzten 24 Jahre der Kryptographie nicht erwähnt werden konnten.
-Dadurch finden sich Themen wie zum Beispiel das <a href="https://www.signal.org/docs/">Signal-Protokoll</a>, die damit einhergehende massive Verbreitung starker Verschlüsselung und Krypto-Währungen hier nicht wieder.</p>
-<p>Zum Glück kann man vieles davon selbst im Internet recherchieren.</p>
-<p>Update: Signal wird in Zukunft <a href="https://signal.org/blog/pqxdh">quantumresistente Verschlüsselung</a> benutzen.</p>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>Originaltitel: <em>The Code Book. The Science of Secrecy from Ancient Egypt to Quantum Cryptography</em> <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
- RSS
- https://jankremer.eu/blog/rss/
- 2023-09-01 00:00
-
- https://jankremer.eu/blog/rss/
- <h2 id="what-is-rss">What is RSS?</h2>
-<p>Originally, RSS stood for “RDF/Rich Site Summary” but was later changed to “Really Simple Syndication”</p>
-<p>RSS is a way to subscribe to a website.
-Whenever that website updates it writes its changes to a <code>XML</code> file.
-You can then read this XML file and see what changed at a glance.</p>
-<p>Many websites use RSS including YouTube, <del>Reddit</del> Lemmy, <del>Twitter</del> Mastodon, most news sites, and almost any blog out there.
-For many blogs, RSS is the main way to distribute new posts.</p>
-<p>RSS is experiencing a Renaissance at the moment:
-Many people are now seeing the damages done by algorithmic feeds and want to go back to purely chronological feeds.
-RSS provides a perfect infrastructure for this.</p>
-<h2 id="how-to-read-rss">How to read RSS?</h2>
-<p>First, you need a feed reader. On macOS and iOS I highly recommend <a href="https://netnewswire.com">NetNewsWire</a>.
-For terminal fans <a href="https://newsboat.org">Newsboat</a> is the way to go.
-<a href="https://www.thunderbird.net/">Thunderbird</a> is also a good choice but there are tons of programs that can read RSS feeds.</p>
-<p>That’s bascially it. Now you need to add some feeds and you are ready.</p>
-<p>I recommend picking a reader that can also fetch the article without opening the browser and loading a ton of ads.</p>
-<p>Pro tip: You can export your subscibtions to a <code>OPML</code> file and import them into any RSS reader.</p>
-<h2 id="how-to-distribute-rss">How to distribute RSS?</h2>
-<p>This is the hardest question to answer about RSS as there are endless possibilities.</p>
-<p>The easiest way would probably be to use a service such as Mastodon that generates the feed automatically.
-If that platform isn’t for you, WordPress is a good way to host a blog.
-I read about people setting up their own scripts that automatically update the feed for new posts.</p>
-<p>I use <a href="https://gohugo.io">Hugo</a> which is a <em>static site generator</em>.
-It generates feeds automatically but lies somewhere between WordPress and writing your own scripts in terms of how tech savvy you should be.</p>
-<h2 id="how-to-find-rss">How to find RSS?</h2>
-<p>Go to a website you like, copy the URL and paste it into your RSS reader.
-Modern feed readers can find RSS feed on their own, you just have to provide a link to the site you want to subscribe to.
-If that is not the case, you could try adding <code>/index.xml</code> to the URL.</p>
-<p>Some sites, like this one, also link to their RSS feeds.
-Often those links are a the bottom of the website and are either marked as <code>RSS</code>, <code>Feed</code>, or just use the RSS logo.
-I additionally provide links to my subprojects such as my <a href="https://jankremer.eu/micro">microblog</a> or my <a href="https://jankremer.eu/fotos">photos</a>.
-Feel free to add them to your reader.</p>
-<h2 id="conclusion">Conclusion</h2>
-<p>I think RSS is on the rise.
-It’s an old protocol that survived numerous challenges
-It provides an escape from the algorithms and large social media companies.
-It also provides a way for content creators to distribute their content on their own without any middleman.</p>
-
-
-
-
- 12 cent blog
- https://jankremer.eu/blog/hosting/
- 2023-08-27 00:00
-
- https://jankremer.eu/blog/hosting/
- <p>Yes, the title is correct.
-<a href="https://knowyourmeme.com/photos/1191035">Well, actually</a> it is 0.119 € per
-month or 14.28 € for 10 years.</p>
-<p>To be fair, it was a special offer and only covers the domain.
-Fortunately, my provider, <a href="https://www.netim.com/en">Netim</a> has a free hosting plan with fits my needs.
-I even get email hosting with my own domain.
-There are also services like <a href="https://neocities.org">Neocities</a> where you can host your website for free if you are willing to live with a subdomain.</p>
-<h2 id="why-should-i-xyz-is-free">Why should I? XYZ is free!</h2>
-<p>Yes, you can post wherever you want.
-𝕏 (formerly known as Twitter) is free<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>, Mastodon is free, Facebook, Instagram, Threads, Reddit, you name them, are all free, but you are giving up your freedoms.
-Mastodon might be a little better than the rest, but ultimately you depend on the host to let you post there.
-And they can block you and delete all your data without even giving you any notice.
-I hope you have a backup.</p>
-<p>Hosting this blog allows me to write whatever I want.
-Sure, Netim could also block me and delete my data, but since I use <a href="https://gohugo.io">Hugo</a> I always have everything backed up on my system anyways.
-In a matter of hours I could be up and running on another hosting provider.</p>
-<p>I can also use any format I want and have nearly endless possibilities to customize my blog.
-The sky is the limit.
-For example am I hosting my own <a href="https://jankremer.eu/fotos">photos</a> instead of using Instagram and my own <a href="https://jankremer.eu/micro">microblog</a> instead of using Twitter/Mastodon.
-Whatever media I plan to share in the future, there is a solution out there.
-Want comments? I’m trying <a href="https://cactus.chat">Cactus Comments</a> at the moment.</p>
-<p>Let me know what you think!</p>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>Or is it? I’m not in the loop. <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
- Stop using Twitter.
- https://jankremer.eu/micro/twitter/
- 2023-07-22 15:57
-
- https://jankremer.eu/micro/twitter/
-
-
-
-
- Evening Cloud
- https://jankremer.eu/photos/evening-cloud/
- 2023-07-19 10:48
-
- https://jankremer.eu/photos/evening-cloud/
- <p><img src="evening-cloud.webp" alt="Evening cloud over Regensburg."></p>
-
-
-
-
- Reader mode is the antidote to bad website design.
- https://jankremer.eu/micro/reader/
- 2023-07-19 10:14
-
- https://jankremer.eu/micro/reader/
-
-
-
-
- git
- https://jankremer.eu/blog/git/
- 2023-03-22 16:47
-
- https://jankremer.eu/blog/git/
- <p>Ursprünglich sollte es in diesem Post um <a href="https://git-scm.com">git</a>, jedoch ist mir bei Brainstorming aufgefallen, dass das Thema eigentlich deutlich umfangreicher sein sollte.</p>
-<p>Meine Reise begann, als ich beschloss, diesen Blog zu starten.
-Da ich bis dahin Webseiten nur in reinem HTML und CSS geschrieben hatte, versuchte ich es zunächst damit.
-Schnell stellten sich dabei aber mehrere Probleme heraus:</p>
-<ol>
-<li>Ich bin nicht gut in CSS.</li>
-<li>Einen RSS-Feed von Hand zu erstellen ist umständlich und nicht sinnvoll.</li>
-<li>Mehrere Seiten mit einheitlichem Design in HTML zu schreiben ist kompliziert.</li>
-<li>Ich mag die HTML Syntax nicht.</li>
-</ol>
-<p>Ich war überzeugt, dass ich eine bessere Lösung dafür brauche.
-Nach kurzer und intensiver Recherche fand ich heraus, dass die Lösung meine Problems <em>“static site generator”</em> heißt.
-Darüber hatte ich bereits <a href="https://jankremer.eu/blog/genesis">hier</a> geschrieben.</p>
-<p>Im Zuge dessen lernte ich auch <em>git</em> kennen.
-Ich hatte zwar schon früher von <em>git</em> gehört, bis dato aber nur zum herunterladen von Software benutzt.
-Und damit sind wir schon im Kern meines Problems gelandet:</p>
-<h2 id="warum-kannte-ich-git-nicht">Warum kannte ich <em>git</em> nicht?</h2>
-<p>Meine ersten Erfahrungen mit dem Programmieren machte ich damals in der Schule, angefangen mit HTML und CSS, später mit Python und Java.
-Aber ohne <em>git</em>.
-An der Uni (4 Semester Wirtschaftsinformatik) ging es dann weiter mit Java, aber weiterhin ohne <em>git</em>.</p>
-<p>Erst beim erstellen dieses Blogs kam ich auf die Idee mich mal ein wenig mit <a href="https://de.wikipedia.org/wiki/Versionsverwaltung">Versionsverwaltung</a> auseinander zu setzen.
-Und seitdem bin ich verliebt.</p>
-<p>Inzwischen denke ich, dass jeder von <em>git</em> profitieren könnte.
-Das einfache Zurückspringen zu früheren Versionen, falls mal was kaputt geht, oder das Auslagern und Zusammenführen von <em>Branches</em> sind einfach großartig.
-Zudem ermutigt wird man ermutigt, an logisch sinnvollen Stellen zu <em>commiten</em> und somit den bisherigen Stand zu speichern.</p>
-<p>Es wäre meiner Meinung nach auch sinnvoll, Texte, wie zum Beispiel Projektarbeiten, nicht in <em>Microsoft Word</em> zu verfassen sondern besser in Textdokumenten und diese dann mit <em>git</em> zu verwalten und zusammenzufügen (merge).
-Diese könnten dann ganz leicht in <a href="https://jankremer.eu/blog/latex">LaTeX-Dokumente</a> umgewandelt werden oder auch in <em>Word</em> formatiert werden.
-Darüber hinaus würde dies den Autoren die Möglichkeit geben, einen Texteditor der Wahl zu nutzen.
-Gerade auf älteren Maschinen, wie meinem <em>MacBook Pro</em> von 2015 braucht <em>Word</em> inzwischen einiges an Ressourcen.
-Dies könnte aber auch damit zusammen hängen, dass <em>Word</em> auf meinem Computer stolze 2.3 GB schwer ist.
-Zum Vergleich: Das <strong>gesamte</strong> <em>LibreOffice</em> braucht keine 800 MB.</p>
-<p>Ich verstehe auch, dass nicht jeder auf der Kommandozeile zu Hause ist, jedoch gibt es ja auch Tools wie GitHub oder Programme mit grafischer Oberfläche, es sollte also für jeden was dabei sein.</p>
-<p>Ich kratze hier gerade mal an der Oberfläche der Möglichkeiten, das meiste ist mir selbst noch nicht bekannt.
-Ich kann nur jedem, der <em>git</em> noch nicht nutzt es nur wärmstens empfehlen, es mal auszuprobieren.
-Schaden kann es nicht!</p>
-<p>P.S.: Ja ich weiß, <em>git</em> ist kein Geheimtipp.</p>
-
-
-
-
- LaTeX
- https://jankremer.eu/blog/latex/
- 2023-01-12 15:35
-
- https://jankremer.eu/blog/latex/
- <p>Im Rahmen meines Wahlpflichtpraktikums schreibe ich aktuell an meiner zweiten größeren Projektarbeit. Die einzige andere Projektarbeit war bisher die für das Praktikum Pharmazeutische Technologie, welche, Stand jetzt, noch nicht vollständig abgeschlossen ist.</p>
-<p>Für diese Arbeit entschieden wir uns jedoch für <em>Microsoft Word</em>. Also im Grunde wurde uns diese Entscheidung fast abgenommen, da die Universität Regensburg uns das <em>Office 365</em> zur Verfügung stellt und es damit auch bei uns Studenten den De-Facto-Standard darstellt. Zudem erleichtert es das Arbeiten im Team doch sehr.</p>
-<p>Formatierungen sind jedoch immer ein Kampf. Daher wollte ich versuchen, <a href="https://www.latex-project.org">LaTeX</a> für diese Arbeit einzusetzen. Ich kannte <em>LaTeX</em> vor allem aus mathematischen Kursen an der Uni und hatte schon oft gehört, dass es Setzen (von <a href="https://de.wikipedia.org/wiki/Satz_(Druck)">Satz</a>) deutlich vereinfachen soll. Aber nicht nur das Schreiben mathematischer Arbeiten macht es deutlich angenehmer, durch das einbinden einiger zusätzlicher Pakete werden wissenschaftliche Texte zum Kinderspiel.</p>
-<h2 id="über-latex">Über LaTeX</h2>
-<blockquote>
-<p><strong>LaTeX</strong> [ˈlaːtɛç] ist ein Softwarepaket, das die Benutzung des Textsatzsystems TeX mit Hilfe von Makros vereinfacht. <em>LaTeX</em> wurde Anfang der 1980er Jahre von <em>Leslie Lamport</em> entwickelt.Der Name bedeutet so viel wie <em>Lamport TeX</em>. Die Entwicklung wurde seit den 1990er Jahren von einer Anzahl Entwicklern weitergeführt. Heute ist <em>LaTeX</em> die populärste Methode, <em>TeX</em> zu verwenden.</p>
-</blockquote>
-<p>— <!-- raw HTML omitted --><a href="https://de.wikipedia.org/wiki/LaTeX">Wikipedia: LaTeX</a><!-- raw HTML omitted --></p>
-<p><em>LaTeX</em> funktioniert ähnlich wie <em>HTML</em> oder <em>Markdown</em>: Zunächst wird die Formatierung von Text getrennt. Bei WYSIWYG<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>-Textverarbeitungsprogrammen wie <em>Word</em> sieht man direkt, wie das gedruckte Dokument hinterher aussehen wird. Das macht es für viele Nutzer einfacher, zwingt sie aber auch dazu, sich direkt und unmittelbar mit der Formatierung zu beschäftigen. <em>LaTeX</em> trennt dies zunächst, gibt aber dennoch eine übersichtliche Struktur vor. Zudem sind die Standard Formatvorlagen deutlich schlichter und zumindest für mich wesentlich ansprechender als die von <em>Word</em> (Warum ist alles blau und wieso <em>Calibri</em>?!). Ja, die Voreinstellungen von <em>Word</em> lassen sich überschreiben, aber das muss man auch erstmal machen.</p>
-<p>Funktionen wie ein Inhalts- oder Literaturvrezeichnis lassen sich in <em>Word</em> zwar auch realisieren, sind in <em>LaTeX</em> wesentlich simpler. Zudem lässt sich <em>LaTeX</em> durch Pakete nahezu unendlich erweitern und deckt dadruch auch jeden noch so speziellen Fall ab.</p>
-<p>Ein weiterer Punkt, warum ich <em>LaTeX</em> bevorzuge ist, dass ich jeden Texteditor benutzen kann. Ich nutze am liebsten <em>VS Code</em>, aber natürlich kann jeder beliebige Editor verwendet werden.</p>
-<p>Das einzige, was mit <em>Word</em> sicher einfacher wäre ist das einbinden und beschriften von Grafiken. Da ich einige davor in meine Projektarbeit verwende, brauchte ich hierfür eine Lösung. Diese habe ich mit <a href="https://inkscape.org/de/">Inkscape</a> gefunden. Hiermir lassen sich Bilder bearbeiten und beschriften und anschließend als <em>LaTeX</em>-Dokument speichern. Diese lassen sich dann ganz einfach einbinden.</p>
-<h2 id="fazit">Fazit</h2>
-<p>Für wen <em>Word</em> und ähnliches schon immer eine Qual war oder wer Vorerfahrung mit Texteditoren und Skriptsprachen hat, dem kann ich <em>LaTeX</em> nur ans Herz legen. Ganz einfach lassen sich wunderschöne Dokumente herzaubern. Vor allem der Font <em>Computer Modern</em> hat es mir sehr angetan. Eventuell werde ich die Projektarbeit demnächst hier hochladen.</p>
-<hr>
-<h2 id="technische-spezifikationen">Technische Spezifikationen</h2>
-<p>Kurzer Nachtrag über meine Arbeitsweise mit <em>LaTeX</em>: Als Texteditor benutze ich <a href="https://code.visualstudio.com">VS Code</a>, da ich diesen super übersichtlich finde und vor allem die Erweiterungsmöglichkeiten sehr schätze. Für <em>LaTeX</em> sind dies vor allem <a href="https://github.com/James-Yu/LaTeX-Workshop">LaTeX Workshop</a> und natürlich <a href="https://git-scm.com">git</a> (vorinstalliert). Des Weiteren benutze ich die <a href="https://www.tug.org/mactex/">MacTeX-Distribution</a>, welche ich über <a href="https://brew.sh">Homebrew</a> installiert habe.</p>
-<h3 id="verwendete-pakete">Verwendete Pakete</h3>
-<ul>
-<li><strong>babel</strong>: Sorgt für die Unterstützung verschiedener Sprachen. Ich schreibe die Projektarbeit zwar auf Englisch, jedoch brauche ich ab und zu mal Deutsche Begriffe und damiteinhergehend Umlaute etc.</li>
-<li><strong>biblatex</strong>: Verbessertes Literaturverzeichnis, alternative zu <strong>bibtex</strong>.</li>
-<li><strong>booktabs</strong>: Verschönert und vereinfacht Tabellen in <em>LaTeX</em>.</li>
-<li><strong>chemformula</strong>: Erleichtert das Setzen von chemischen Formeln enorm und sorgt dafür, dass diese auch richtig angezeigt werden.</li>
-<li><strong>hyperref</strong>: Für Links und Metadaten.</li>
-<li><strong>longtable</strong>: Die verwendeten Materialien habe ich alle in riesigen Listen. <em>LaTeX</em> kann standardmäßig nicht besonders gut mit großen Tabellen umgehen, dieses Paket hilft dabei.</li>
-<li><strong>microtype</strong>: Lässt alles schöner aussehen, praktisch schwarze Magie.</li>
-<li><strong>siunitx</strong>: Das wahrscheinlich beste Paket überhaupt, simple aber hat Power. Sorgt für perfektes setzen von Einheiten, mit oder ohne vorangehenden Wert. Zudem enthält es eine Funktion, die Werte in Tabellen um den Dezimalpunkt anordnen kann. Ein Traum.</li>
-<li><strong>textgreek</strong>: Erleichtert das verwenden von griechischen Buchstaben im Text.</li>
-<li>Zusätzliche Pakete die ich an der Stelle nicht weiter erleutern werden: <strong>color</strong>, <strong>csquotes</strong>, <strong>fontenc</strong>, <strong>glossaries</strong>, <strong>graphicx</strong>, <strong>tikz</strong> und <strong>tocbibind</strong>.</li>
-</ul>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>What you see is what you get. <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
- Bitcoin
- https://jankremer.eu/btc/
- 2022-12-10 00:00
-
- https://jankremer.eu/btc/
- <h2 id="address">Address</h2>
-<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-txt" data-lang="txt"><span style="display:flex;"><span>bc1qf8qjt4gut2la8k4v3emfv7wrj6f3pfcjrj3slplnwrldkz7hqmaqaju7ym
-</span></span></code></pre></div><h2 id="qr">QR</h2>
-<p><img src="https://jankremer.eu/btc.png" alt="BTC"></p>
-<h2 id="openalias">OpenAlias</h2>
-<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-txt" data-lang="txt"><span style="display:flex;"><span>jankremer.eu
-</span></span></code></pre></div><div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-txt" data-lang="txt"><span style="display:flex;"><span>btc.jankremer.eu
-</span></span></code></pre></div>
-
-
-
- Ethereum
- https://jankremer.eu/eth/
- 2022-12-10 00:00
-
- https://jankremer.eu/eth/
- <h2 id="address">Address</h2>
-<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-txt" data-lang="txt"><span style="display:flex;"><span>0xc4cBDf9f57cb0229d19d885D5E4033a6223EDef7
-</span></span></code></pre></div><h2 id="qr">QR</h2>
-<p><img src="https://jankremer.eu/eth.png" alt="ETH"></p>
-<h2 id="ens">ENS</h2>
-<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-txt" data-lang="txt"><span style="display:flex;"><span>jankremer.eu
-</span></span></code></pre></div><h2 id="opensea">OpenSea</h2>
-<p><a href="https://opensea.io/Echinacea">Echinacea</a></p>
-
-
-
-
- Genesis
- https://jankremer.eu/blog/genesis/
- 2022-12-10 00:00
-
- https://jankremer.eu/blog/genesis/
- <p>Als ich vor ca. einem Jahr diese Domain kaufte, wusste ich noch nicht was ich damit anstellen will. Ich wusste nur: <strong>Ich will endlich eine eigene Webseite haben.</strong></p>
-<p>In meinen ersten Stunden Informatik in der Schule (vor über 10 Jahren) lernten wir die Grundlagen des Webdesigns mit <em>HTML</em> und <em>CSS</em>, und da ich zunächst nicht viel Zeit hatte erstellte ich genau mit diesen Tools eine kleine Startseite. Mehr schlecht als recht aber immerhin hatte ich etwas.</p>
-<p>Im März diesen Jahres hatte ich dann ein wenig Zeit mich genauer mit dem Thema zu beschäftigen und fand dabei den sogenannten <a href="https://jamstack.org">Jamstack</a>. Jamstack sind Tools zur schnellen und einfachen Aufstellen von Webseite. Dies können große Projekte sein oder wie in meinem Fall ein kleiner Blog. Zuerst probierte ich <a href="https://jekyllrb.com/">Jekyll</a> was mir jedoch nicht so gut taugte und stieß dann auf <a href="https://gohugo.io/">Hugo</a>. Mit einer Vielzahl an modernen Designs und einer klinderleichten Handhaben konnte ich schnell überzeugt werden.</p>
-<p>Heute weiß ich zwar immer noch nicht, was ich hiermit in Zukunft machen werde, aber ich denke es ist wichtiger den je ein Sprachrohr zu haben, das unabhängig ist von der Willkür großer Plattformen.</p>
-<p>Bis bald und viel Spaß!</p>
-<p>P.S.: Dieses wunderschöne <em>Theme</em>, das ich hier benutze, heißt <a href="https://git.io/hugo-congo">Congo</a>.</p>
-
-
-
-
- Monero
- https://jankremer.eu/xmr/
- 2022-12-10 00:00
-
- https://jankremer.eu/xmr/
- <h2 id="address">Address</h2>
-<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-txt" data-lang="txt"><span style="display:flex;"><span>83ZtE7cBnsyTmBb5A79aDm637mCKWKuhGZZ3ZaQvjmpA5qwL6sejWEcKQnXF5Qd3N4XNCp4fbouTi9kUi8vNgPrfDQaEBMZ
-</span></span></code></pre></div><h2 id="qr">QR</h2>
-<p><img src="https://jankremer.eu/xmr.png" alt="XMR"></p>
-<h2 id="openalias">OpenAlias</h2>
-<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-txt" data-lang="txt"><span style="display:flex;"><span>jankremer.eu
-</span></span></code></pre></div><div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-txt" data-lang="txt"><span style="display:flex;"><span>xmr.jankremer.eu
-</span></span></code></pre></div>
-
-
-
- Über mich
- https://jankremer.eu/about/
- 2022-12-10 00:00
-
- https://jankremer.eu/about/
- <p>Mein Name ist Jan Kremer. Ich bin 27 Jahre alt und studiere Pharmazie an der Uni Regensburg. Manchmal schreibe ich über Technik und Software <a href="https://jankremer.eu/uses">die ich benutze</a> oder <a href="https://jankremer.eu/now">was ich gerade mache</a>.</p>
-<p>Wenn ich nicht gerade lerne, mache ich gerne Sport, vor allem Joggen, Kraftsport und Skifahren.</p>
-<h2 id="kontakt">Kontakt</h2>
-<h3 id="matrix">Matrix</h3>
-<p><a href="https://matrix.to/#/@jankremer:matrix.org">@jankremer:matrix.org</a></p>
-<h2 id="ipfs">IPFS</h2>
-<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-txt" data-lang="txt"><span style="display:flex;"><span>QmfPgBDRMVsAcdZuK26v5fxGBcUixyYqeibArBf5YYguz2
-</span></span></code></pre></div>
-
-
-
-
diff --git a/public/jankremer.asc b/public/jankremer.asc
deleted file mode 100644
index 3f8ad4a..0000000
--- a/public/jankremer.asc
+++ /dev/null
@@ -1,13 +0,0 @@
------BEGIN PGP PUBLIC KEY BLOCK-----
-
-mDMEZPMs8hYJKwYBBAHaRw8BAQdAX0e5nbopqP7IfFY1pKKiMsUC35TJfjgblEkW
-MyHWP9+0HkphbiBLcmVtZXIgPG1haWxAamFua3JlbWVyLmV1PoiZBBMWCgBBFiEE
-IK8KZZ8rk62RhBXRp9ponLOweOwFAmTzLPICGwMFCQWjmoAFCwkIBwICIgIGFQoJ
-CAsCBBYCAwECHgcCF4AACgkQp9ponLOweOwldwEAkrOJkWKWD5xb1tyjxsN7xv3Z
-/+f2jfwjOpSvzSilFxABAKfg+5uwB3VkQkVLR1FQw4n8+0601q1YPMwvEgZBoBcM
-uDgEZPMs8hIKKwYBBAGXVQEFAQEHQEAe8yDKs9UQtv9R9wZSlpYcZaB8O2Bq/vF/
-cvJg7QlpAwEIB4h+BBgWCgAmFiEEIK8KZZ8rk62RhBXRp9ponLOweOwFAmTzLPIC
-GwwFCQWjmoAACgkQp9ponLOweOyAvAD9GfldBbFfo00DuPKN6vkYUlPWvR4Et9Lx
-GLzhh3dPeVEBAI400aRQCqSNtr40aRiuPDZWOXFfVa6lCfYpiXAE4eYF
-=A2Jw
------END PGP PUBLIC KEY BLOCK-----
diff --git a/public/micro/index.html b/public/micro/index.html
deleted file mode 100644
index b0f2d18..0000000
--- a/public/micro/index.html
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
-
-
-
-Microblog | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/public/micro/index.xml b/public/micro/index.xml
deleted file mode 100644
index 88e9a9e..0000000
--- a/public/micro/index.xml
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
- Microblog on Jan Kremer
- https://jankremer.eu/micro/
- Recent content in Microblog on Jan Kremer
- Hugo -- gohugo.io
- de
- 2023-12-25 16:28
-
- Markdown Tables Suck
- https://jankremer.eu/micro/markdown-tables/
- 2023-12-25 16:28
-
- https://jankremer.eu/micro/markdown-tables/
- <p>Tables are arguably the worst part of Markdown.
-No horizontal lines except for the mandatory one at the top.
-The only feature is the possibility to align cells.</p>
-<p>Org Mode does much better, but isn’t perfect either.</p>
-<p>Don’t get me wrong. It’s nice to have a simple tool for simple tables.
-But sometimes I need more customizability.</p>
-
-
-
-
- Use Timestamps
- https://jankremer.eu/micro/timestamps/
- 2023-11-15 10:12
-
- https://jankremer.eu/micro/timestamps/
- <p>
-Every blog post should include a timestamp.
-In fact, this extends to almost anything online and even offline.</p>
-<p>
-Also, don't make me look for the date.
-Put the date as obvious as possible, preferably at the beginning of the post.</p>
-<p>
-I was reading <a href="https://jvns.ca/blog/2023/02/28/some-notes-on-using-nix/">Julia Evans post about nix</a> and it was not immediately clear to me if this was a recent post.
-Only when I copied the URL to complain about it I discovered the date there.
-Safari hides most of the URL by default.</p>
-
-
-
-
- Stop using Twitter.
- https://jankremer.eu/micro/twitter/
- 2023-07-22 15:57
-
- https://jankremer.eu/micro/twitter/
-
-
-
-
- Reader mode is the antidote to bad website design.
- https://jankremer.eu/micro/reader/
- 2023-07-19 10:14
-
- https://jankremer.eu/micro/reader/
-
-
-
-
-
diff --git a/public/micro/markdown-tables/index.html b/public/micro/markdown-tables/index.html
deleted file mode 100644
index a78e689..0000000
--- a/public/micro/markdown-tables/index.html
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
-
-Markdown Tables Suck | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Tables are arguably the worst part of Markdown.
-No horizontal lines except for the mandatory one at the top.
-The only feature is the possibility to align cells.
-
Org Mode does much better, but isn’t perfect either.
-
Don’t get me wrong. It’s nice to have a simple tool for simple tables.
-But sometimes I need more customizability.
-Every blog post should include a timestamp.
-In fact, this extends to almost anything online and even offline.
-
-Also, don't make me look for the date.
-Put the date as obvious as possible, preferably at the beginning of the post.
-
-I was reading Julia Evans post about nix and it was not immediately clear to me if this was a recent post.
-Only when I copied the URL to complain about it I discovered the date there.
-Safari hides most of the URL by default.
-
-
-
-
-
-
-
diff --git a/public/tags/bücher/index.xml b/public/tags/bücher/index.xml
deleted file mode 100644
index f32167a..0000000
--- a/public/tags/bücher/index.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- Bücher on Jan Kremer
- https://jankremer.eu/tags/b%C3%BCcher/
- Recent content in Bücher on Jan Kremer
- Hugo -- gohugo.io
- de
- 2023-09-09 00:00
-
- Geheime Botschaften – Simon Singh
- https://jankremer.eu/blog/geheime-botschaften/
- 2023-09-09 00:00
-
- https://jankremer.eu/blog/geheime-botschaften/
- <p>Ich las vor kurzem das Buch <em>Geheime Botschaften. Die Kunst der Verschlüsselung von der Antike bis in die Zeiten des Internet</em><sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup> von <a href="https://simonsingh.net">Simon Singh</a>.
-Es stellt eine Einführung in die Geschichte der Verschlüsselung dar und ist für jeden, den das Thema interessiert, äußerst empfehlenswert.
-Daneben geht der Autor auch auf die “Entschlüsselung” antiker Sprachen wie der <a href="https://de.wikipedia.org/wiki/Hieroglyphen">Hieroglyphen</a> und Schriften wie <a href="https://de.wikipedia.org/wiki/Linearschrift_B">Linear B</a> ein.</p>
-<p>In den letzten Kapiteln des Buchs erklärt Singh zudem “moderne” Verschlüsselungsmethoden wie <a href="https://de.wikipedia.org/wiki/RSA-Kryptosystem">RSA</a> und den <a href="https://de.wikipedia.org/wiki/Diffie-Hellman-Schl%C3%BCsselaustausch">Diffie-Hellmann-Schlüsselaustausch</a>.
-Nur leider zeigt sich hier deutlich, dass das Buch bereit 1999 publiziert wurde und somit die letzten 24 Jahre der Kryptographie nicht erwähnt werden konnten.
-Dadurch finden sich Themen wie zum Beispiel das <a href="https://www.signal.org/docs/">Signal-Protokoll</a>, die damit einhergehende massive Verbreitung starker Verschlüsselung und Krypto-Währungen hier nicht wieder.</p>
-<p>Zum Glück kann man vieles davon selbst im Internet recherchieren.</p>
-<p>Update: Signal wird in Zukunft <a href="https://signal.org/blog/pqxdh">quantumresistente Verschlüsselung</a> benutzen.</p>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>Originaltitel: <em>The Code Book. The Science of Secrecy from Ancient Egypt to Quantum Cryptography</em> <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
-
diff --git a/public/tags/crypto/index.html b/public/tags/crypto/index.html
deleted file mode 100644
index aa9cffb..0000000
--- a/public/tags/crypto/index.html
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-
-
-Crypto | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/public/tags/git/index.xml b/public/tags/git/index.xml
deleted file mode 100644
index 08400d1..0000000
--- a/public/tags/git/index.xml
+++ /dev/null
@@ -1,131 +0,0 @@
-
-
-
- Git on Jan Kremer
- https://jankremer.eu/tags/git/
- Recent content in Git on Jan Kremer
- Hugo -- gohugo.io
- de
- 2023-09-25 00:00
-
- Deploy a website using Git
- https://jankremer.eu/blog/git-deploy/
- 2023-09-25 00:00
-
- https://jankremer.eu/blog/git-deploy/
- <h2 id="git-ftp">Git-ftp</h2>
-<p>I tested a lot of different FTP programs including GUIs, TUIs and CLIs.
-There might be a problem with the FTP server but I don’t control that unfortunately.
-The only program working flawlessly so far is <a href="https://git-ftp.github.io/">git-ftp</a>, a plugin for Git.
-Not only is this perfectly integrated into git, which I am using anyway.
-Also no errors occurred so far.
-Plus I can automate the upload using <a href="#git-hooks">hooks</a>.</p>
-<h2 id="git-hooks">Git hooks</h2>
-<p>The real MVP however is <a href="https://git-scm.com/docs/githooks">Git Hooks</a>.
-Hooks are scripts that run automatically on certain Git events.</p>
-<p>I did, for example, create a hook to automacally build the website after commiting a change.
-Yes, this could introduce problems such as breaking changes and I end up with a broken website, but as I test it regularly this should not become a problem.</p>
-<p>The second hook I created pushes the website to the FTP server whenever I push to the remote repository.</p>
-<h2 id="git-submodule">Git submodule</h2>
-<p>I recently discovered that I can use <code>git submodule</code> to add the <code>public</code> folder created by Hugo.
-This allows me to upload the repository to my pages repository on Codeberg and have the site mirrored there.
-Secoundly, it allows me to upload the website with git-ftp without uploading everything else.</p>
-<hr>
-<p>What awesome features of Git are you using?</p>
-
-
-
-
- git
- https://jankremer.eu/blog/git/
- 2023-03-22 16:47
-
- https://jankremer.eu/blog/git/
- <p>Ursprünglich sollte es in diesem Post um <a href="https://git-scm.com">git</a>, jedoch ist mir bei Brainstorming aufgefallen, dass das Thema eigentlich deutlich umfangreicher sein sollte.</p>
-<p>Meine Reise begann, als ich beschloss, diesen Blog zu starten.
-Da ich bis dahin Webseiten nur in reinem HTML und CSS geschrieben hatte, versuchte ich es zunächst damit.
-Schnell stellten sich dabei aber mehrere Probleme heraus:</p>
-<ol>
-<li>Ich bin nicht gut in CSS.</li>
-<li>Einen RSS-Feed von Hand zu erstellen ist umständlich und nicht sinnvoll.</li>
-<li>Mehrere Seiten mit einheitlichem Design in HTML zu schreiben ist kompliziert.</li>
-<li>Ich mag die HTML Syntax nicht.</li>
-</ol>
-<p>Ich war überzeugt, dass ich eine bessere Lösung dafür brauche.
-Nach kurzer und intensiver Recherche fand ich heraus, dass die Lösung meine Problems <em>“static site generator”</em> heißt.
-Darüber hatte ich bereits <a href="https://jankremer.eu/blog/genesis">hier</a> geschrieben.</p>
-<p>Im Zuge dessen lernte ich auch <em>git</em> kennen.
-Ich hatte zwar schon früher von <em>git</em> gehört, bis dato aber nur zum herunterladen von Software benutzt.
-Und damit sind wir schon im Kern meines Problems gelandet:</p>
-<h2 id="warum-kannte-ich-git-nicht">Warum kannte ich <em>git</em> nicht?</h2>
-<p>Meine ersten Erfahrungen mit dem Programmieren machte ich damals in der Schule, angefangen mit HTML und CSS, später mit Python und Java.
-Aber ohne <em>git</em>.
-An der Uni (4 Semester Wirtschaftsinformatik) ging es dann weiter mit Java, aber weiterhin ohne <em>git</em>.</p>
-<p>Erst beim erstellen dieses Blogs kam ich auf die Idee mich mal ein wenig mit <a href="https://de.wikipedia.org/wiki/Versionsverwaltung">Versionsverwaltung</a> auseinander zu setzen.
-Und seitdem bin ich verliebt.</p>
-<p>Inzwischen denke ich, dass jeder von <em>git</em> profitieren könnte.
-Das einfache Zurückspringen zu früheren Versionen, falls mal was kaputt geht, oder das Auslagern und Zusammenführen von <em>Branches</em> sind einfach großartig.
-Zudem ermutigt wird man ermutigt, an logisch sinnvollen Stellen zu <em>commiten</em> und somit den bisherigen Stand zu speichern.</p>
-<p>Es wäre meiner Meinung nach auch sinnvoll, Texte, wie zum Beispiel Projektarbeiten, nicht in <em>Microsoft Word</em> zu verfassen sondern besser in Textdokumenten und diese dann mit <em>git</em> zu verwalten und zusammenzufügen (merge).
-Diese könnten dann ganz leicht in <a href="https://jankremer.eu/blog/latex">LaTeX-Dokumente</a> umgewandelt werden oder auch in <em>Word</em> formatiert werden.
-Darüber hinaus würde dies den Autoren die Möglichkeit geben, einen Texteditor der Wahl zu nutzen.
-Gerade auf älteren Maschinen, wie meinem <em>MacBook Pro</em> von 2015 braucht <em>Word</em> inzwischen einiges an Ressourcen.
-Dies könnte aber auch damit zusammen hängen, dass <em>Word</em> auf meinem Computer stolze 2.3 GB schwer ist.
-Zum Vergleich: Das <strong>gesamte</strong> <em>LibreOffice</em> braucht keine 800 MB.</p>
-<p>Ich verstehe auch, dass nicht jeder auf der Kommandozeile zu Hause ist, jedoch gibt es ja auch Tools wie GitHub oder Programme mit grafischer Oberfläche, es sollte also für jeden was dabei sein.</p>
-<p>Ich kratze hier gerade mal an der Oberfläche der Möglichkeiten, das meiste ist mir selbst noch nicht bekannt.
-Ich kann nur jedem, der <em>git</em> noch nicht nutzt es nur wärmstens empfehlen, es mal auszuprobieren.
-Schaden kann es nicht!</p>
-<p>P.S.: Ja ich weiß, <em>git</em> ist kein Geheimtipp.</p>
-
-
-
-
- LaTeX
- https://jankremer.eu/blog/latex/
- 2023-01-12 15:35
-
- https://jankremer.eu/blog/latex/
- <p>Im Rahmen meines Wahlpflichtpraktikums schreibe ich aktuell an meiner zweiten größeren Projektarbeit. Die einzige andere Projektarbeit war bisher die für das Praktikum Pharmazeutische Technologie, welche, Stand jetzt, noch nicht vollständig abgeschlossen ist.</p>
-<p>Für diese Arbeit entschieden wir uns jedoch für <em>Microsoft Word</em>. Also im Grunde wurde uns diese Entscheidung fast abgenommen, da die Universität Regensburg uns das <em>Office 365</em> zur Verfügung stellt und es damit auch bei uns Studenten den De-Facto-Standard darstellt. Zudem erleichtert es das Arbeiten im Team doch sehr.</p>
-<p>Formatierungen sind jedoch immer ein Kampf. Daher wollte ich versuchen, <a href="https://www.latex-project.org">LaTeX</a> für diese Arbeit einzusetzen. Ich kannte <em>LaTeX</em> vor allem aus mathematischen Kursen an der Uni und hatte schon oft gehört, dass es Setzen (von <a href="https://de.wikipedia.org/wiki/Satz_(Druck)">Satz</a>) deutlich vereinfachen soll. Aber nicht nur das Schreiben mathematischer Arbeiten macht es deutlich angenehmer, durch das einbinden einiger zusätzlicher Pakete werden wissenschaftliche Texte zum Kinderspiel.</p>
-<h2 id="über-latex">Über LaTeX</h2>
-<blockquote>
-<p><strong>LaTeX</strong> [ˈlaːtɛç] ist ein Softwarepaket, das die Benutzung des Textsatzsystems TeX mit Hilfe von Makros vereinfacht. <em>LaTeX</em> wurde Anfang der 1980er Jahre von <em>Leslie Lamport</em> entwickelt.Der Name bedeutet so viel wie <em>Lamport TeX</em>. Die Entwicklung wurde seit den 1990er Jahren von einer Anzahl Entwicklern weitergeführt. Heute ist <em>LaTeX</em> die populärste Methode, <em>TeX</em> zu verwenden.</p>
-</blockquote>
-<p>— <!-- raw HTML omitted --><a href="https://de.wikipedia.org/wiki/LaTeX">Wikipedia: LaTeX</a><!-- raw HTML omitted --></p>
-<p><em>LaTeX</em> funktioniert ähnlich wie <em>HTML</em> oder <em>Markdown</em>: Zunächst wird die Formatierung von Text getrennt. Bei WYSIWYG<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>-Textverarbeitungsprogrammen wie <em>Word</em> sieht man direkt, wie das gedruckte Dokument hinterher aussehen wird. Das macht es für viele Nutzer einfacher, zwingt sie aber auch dazu, sich direkt und unmittelbar mit der Formatierung zu beschäftigen. <em>LaTeX</em> trennt dies zunächst, gibt aber dennoch eine übersichtliche Struktur vor. Zudem sind die Standard Formatvorlagen deutlich schlichter und zumindest für mich wesentlich ansprechender als die von <em>Word</em> (Warum ist alles blau und wieso <em>Calibri</em>?!). Ja, die Voreinstellungen von <em>Word</em> lassen sich überschreiben, aber das muss man auch erstmal machen.</p>
-<p>Funktionen wie ein Inhalts- oder Literaturvrezeichnis lassen sich in <em>Word</em> zwar auch realisieren, sind in <em>LaTeX</em> wesentlich simpler. Zudem lässt sich <em>LaTeX</em> durch Pakete nahezu unendlich erweitern und deckt dadruch auch jeden noch so speziellen Fall ab.</p>
-<p>Ein weiterer Punkt, warum ich <em>LaTeX</em> bevorzuge ist, dass ich jeden Texteditor benutzen kann. Ich nutze am liebsten <em>VS Code</em>, aber natürlich kann jeder beliebige Editor verwendet werden.</p>
-<p>Das einzige, was mit <em>Word</em> sicher einfacher wäre ist das einbinden und beschriften von Grafiken. Da ich einige davor in meine Projektarbeit verwende, brauchte ich hierfür eine Lösung. Diese habe ich mit <a href="https://inkscape.org/de/">Inkscape</a> gefunden. Hiermir lassen sich Bilder bearbeiten und beschriften und anschließend als <em>LaTeX</em>-Dokument speichern. Diese lassen sich dann ganz einfach einbinden.</p>
-<h2 id="fazit">Fazit</h2>
-<p>Für wen <em>Word</em> und ähnliches schon immer eine Qual war oder wer Vorerfahrung mit Texteditoren und Skriptsprachen hat, dem kann ich <em>LaTeX</em> nur ans Herz legen. Ganz einfach lassen sich wunderschöne Dokumente herzaubern. Vor allem der Font <em>Computer Modern</em> hat es mir sehr angetan. Eventuell werde ich die Projektarbeit demnächst hier hochladen.</p>
-<hr>
-<h2 id="technische-spezifikationen">Technische Spezifikationen</h2>
-<p>Kurzer Nachtrag über meine Arbeitsweise mit <em>LaTeX</em>: Als Texteditor benutze ich <a href="https://code.visualstudio.com">VS Code</a>, da ich diesen super übersichtlich finde und vor allem die Erweiterungsmöglichkeiten sehr schätze. Für <em>LaTeX</em> sind dies vor allem <a href="https://github.com/James-Yu/LaTeX-Workshop">LaTeX Workshop</a> und natürlich <a href="https://git-scm.com">git</a> (vorinstalliert). Des Weiteren benutze ich die <a href="https://www.tug.org/mactex/">MacTeX-Distribution</a>, welche ich über <a href="https://brew.sh">Homebrew</a> installiert habe.</p>
-<h3 id="verwendete-pakete">Verwendete Pakete</h3>
-<ul>
-<li><strong>babel</strong>: Sorgt für die Unterstützung verschiedener Sprachen. Ich schreibe die Projektarbeit zwar auf Englisch, jedoch brauche ich ab und zu mal Deutsche Begriffe und damiteinhergehend Umlaute etc.</li>
-<li><strong>biblatex</strong>: Verbessertes Literaturverzeichnis, alternative zu <strong>bibtex</strong>.</li>
-<li><strong>booktabs</strong>: Verschönert und vereinfacht Tabellen in <em>LaTeX</em>.</li>
-<li><strong>chemformula</strong>: Erleichtert das Setzen von chemischen Formeln enorm und sorgt dafür, dass diese auch richtig angezeigt werden.</li>
-<li><strong>hyperref</strong>: Für Links und Metadaten.</li>
-<li><strong>longtable</strong>: Die verwendeten Materialien habe ich alle in riesigen Listen. <em>LaTeX</em> kann standardmäßig nicht besonders gut mit großen Tabellen umgehen, dieses Paket hilft dabei.</li>
-<li><strong>microtype</strong>: Lässt alles schöner aussehen, praktisch schwarze Magie.</li>
-<li><strong>siunitx</strong>: Das wahrscheinlich beste Paket überhaupt, simple aber hat Power. Sorgt für perfektes setzen von Einheiten, mit oder ohne vorangehenden Wert. Zudem enthält es eine Funktion, die Werte in Tabellen um den Dezimalpunkt anordnen kann. Ein Traum.</li>
-<li><strong>textgreek</strong>: Erleichtert das verwenden von griechischen Buchstaben im Text.</li>
-<li>Zusätzliche Pakete die ich an der Stelle nicht weiter erleutern werden: <strong>color</strong>, <strong>csquotes</strong>, <strong>fontenc</strong>, <strong>glossaries</strong>, <strong>graphicx</strong>, <strong>tikz</strong> und <strong>tocbibind</strong>.</li>
-</ul>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>What you see is what you get. <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
-
diff --git a/public/tags/index.html b/public/tags/index.html
deleted file mode 100644
index 8fb7001..0000000
--- a/public/tags/index.html
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
-
-
-
-
-Tags | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/public/tags/latex/index.xml b/public/tags/latex/index.xml
deleted file mode 100644
index 8345643..0000000
--- a/public/tags/latex/index.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
- Latex on Jan Kremer
- https://jankremer.eu/tags/latex/
- Recent content in Latex on Jan Kremer
- Hugo -- gohugo.io
- de
- 2023-01-12 15:35
-
- LaTeX
- https://jankremer.eu/blog/latex/
- 2023-01-12 15:35
-
- https://jankremer.eu/blog/latex/
- <p>Im Rahmen meines Wahlpflichtpraktikums schreibe ich aktuell an meiner zweiten größeren Projektarbeit. Die einzige andere Projektarbeit war bisher die für das Praktikum Pharmazeutische Technologie, welche, Stand jetzt, noch nicht vollständig abgeschlossen ist.</p>
-<p>Für diese Arbeit entschieden wir uns jedoch für <em>Microsoft Word</em>. Also im Grunde wurde uns diese Entscheidung fast abgenommen, da die Universität Regensburg uns das <em>Office 365</em> zur Verfügung stellt und es damit auch bei uns Studenten den De-Facto-Standard darstellt. Zudem erleichtert es das Arbeiten im Team doch sehr.</p>
-<p>Formatierungen sind jedoch immer ein Kampf. Daher wollte ich versuchen, <a href="https://www.latex-project.org">LaTeX</a> für diese Arbeit einzusetzen. Ich kannte <em>LaTeX</em> vor allem aus mathematischen Kursen an der Uni und hatte schon oft gehört, dass es Setzen (von <a href="https://de.wikipedia.org/wiki/Satz_(Druck)">Satz</a>) deutlich vereinfachen soll. Aber nicht nur das Schreiben mathematischer Arbeiten macht es deutlich angenehmer, durch das einbinden einiger zusätzlicher Pakete werden wissenschaftliche Texte zum Kinderspiel.</p>
-<h2 id="über-latex">Über LaTeX</h2>
-<blockquote>
-<p><strong>LaTeX</strong> [ˈlaːtɛç] ist ein Softwarepaket, das die Benutzung des Textsatzsystems TeX mit Hilfe von Makros vereinfacht. <em>LaTeX</em> wurde Anfang der 1980er Jahre von <em>Leslie Lamport</em> entwickelt.Der Name bedeutet so viel wie <em>Lamport TeX</em>. Die Entwicklung wurde seit den 1990er Jahren von einer Anzahl Entwicklern weitergeführt. Heute ist <em>LaTeX</em> die populärste Methode, <em>TeX</em> zu verwenden.</p>
-</blockquote>
-<p>— <!-- raw HTML omitted --><a href="https://de.wikipedia.org/wiki/LaTeX">Wikipedia: LaTeX</a><!-- raw HTML omitted --></p>
-<p><em>LaTeX</em> funktioniert ähnlich wie <em>HTML</em> oder <em>Markdown</em>: Zunächst wird die Formatierung von Text getrennt. Bei WYSIWYG<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>-Textverarbeitungsprogrammen wie <em>Word</em> sieht man direkt, wie das gedruckte Dokument hinterher aussehen wird. Das macht es für viele Nutzer einfacher, zwingt sie aber auch dazu, sich direkt und unmittelbar mit der Formatierung zu beschäftigen. <em>LaTeX</em> trennt dies zunächst, gibt aber dennoch eine übersichtliche Struktur vor. Zudem sind die Standard Formatvorlagen deutlich schlichter und zumindest für mich wesentlich ansprechender als die von <em>Word</em> (Warum ist alles blau und wieso <em>Calibri</em>?!). Ja, die Voreinstellungen von <em>Word</em> lassen sich überschreiben, aber das muss man auch erstmal machen.</p>
-<p>Funktionen wie ein Inhalts- oder Literaturvrezeichnis lassen sich in <em>Word</em> zwar auch realisieren, sind in <em>LaTeX</em> wesentlich simpler. Zudem lässt sich <em>LaTeX</em> durch Pakete nahezu unendlich erweitern und deckt dadruch auch jeden noch so speziellen Fall ab.</p>
-<p>Ein weiterer Punkt, warum ich <em>LaTeX</em> bevorzuge ist, dass ich jeden Texteditor benutzen kann. Ich nutze am liebsten <em>VS Code</em>, aber natürlich kann jeder beliebige Editor verwendet werden.</p>
-<p>Das einzige, was mit <em>Word</em> sicher einfacher wäre ist das einbinden und beschriften von Grafiken. Da ich einige davor in meine Projektarbeit verwende, brauchte ich hierfür eine Lösung. Diese habe ich mit <a href="https://inkscape.org/de/">Inkscape</a> gefunden. Hiermir lassen sich Bilder bearbeiten und beschriften und anschließend als <em>LaTeX</em>-Dokument speichern. Diese lassen sich dann ganz einfach einbinden.</p>
-<h2 id="fazit">Fazit</h2>
-<p>Für wen <em>Word</em> und ähnliches schon immer eine Qual war oder wer Vorerfahrung mit Texteditoren und Skriptsprachen hat, dem kann ich <em>LaTeX</em> nur ans Herz legen. Ganz einfach lassen sich wunderschöne Dokumente herzaubern. Vor allem der Font <em>Computer Modern</em> hat es mir sehr angetan. Eventuell werde ich die Projektarbeit demnächst hier hochladen.</p>
-<hr>
-<h2 id="technische-spezifikationen">Technische Spezifikationen</h2>
-<p>Kurzer Nachtrag über meine Arbeitsweise mit <em>LaTeX</em>: Als Texteditor benutze ich <a href="https://code.visualstudio.com">VS Code</a>, da ich diesen super übersichtlich finde und vor allem die Erweiterungsmöglichkeiten sehr schätze. Für <em>LaTeX</em> sind dies vor allem <a href="https://github.com/James-Yu/LaTeX-Workshop">LaTeX Workshop</a> und natürlich <a href="https://git-scm.com">git</a> (vorinstalliert). Des Weiteren benutze ich die <a href="https://www.tug.org/mactex/">MacTeX-Distribution</a>, welche ich über <a href="https://brew.sh">Homebrew</a> installiert habe.</p>
-<h3 id="verwendete-pakete">Verwendete Pakete</h3>
-<ul>
-<li><strong>babel</strong>: Sorgt für die Unterstützung verschiedener Sprachen. Ich schreibe die Projektarbeit zwar auf Englisch, jedoch brauche ich ab und zu mal Deutsche Begriffe und damiteinhergehend Umlaute etc.</li>
-<li><strong>biblatex</strong>: Verbessertes Literaturverzeichnis, alternative zu <strong>bibtex</strong>.</li>
-<li><strong>booktabs</strong>: Verschönert und vereinfacht Tabellen in <em>LaTeX</em>.</li>
-<li><strong>chemformula</strong>: Erleichtert das Setzen von chemischen Formeln enorm und sorgt dafür, dass diese auch richtig angezeigt werden.</li>
-<li><strong>hyperref</strong>: Für Links und Metadaten.</li>
-<li><strong>longtable</strong>: Die verwendeten Materialien habe ich alle in riesigen Listen. <em>LaTeX</em> kann standardmäßig nicht besonders gut mit großen Tabellen umgehen, dieses Paket hilft dabei.</li>
-<li><strong>microtype</strong>: Lässt alles schöner aussehen, praktisch schwarze Magie.</li>
-<li><strong>siunitx</strong>: Das wahrscheinlich beste Paket überhaupt, simple aber hat Power. Sorgt für perfektes setzen von Einheiten, mit oder ohne vorangehenden Wert. Zudem enthält es eine Funktion, die Werte in Tabellen um den Dezimalpunkt anordnen kann. Ein Traum.</li>
-<li><strong>textgreek</strong>: Erleichtert das verwenden von griechischen Buchstaben im Text.</li>
-<li>Zusätzliche Pakete die ich an der Stelle nicht weiter erleutern werden: <strong>color</strong>, <strong>csquotes</strong>, <strong>fontenc</strong>, <strong>glossaries</strong>, <strong>graphicx</strong>, <strong>tikz</strong> und <strong>tocbibind</strong>.</li>
-</ul>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>What you see is what you get. <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
-
diff --git a/public/tags/meta/index.html b/public/tags/meta/index.html
deleted file mode 100644
index 43958a9..0000000
--- a/public/tags/meta/index.html
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-Meta | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/public/tags/meta/index.xml b/public/tags/meta/index.xml
deleted file mode 100644
index 36d8384..0000000
--- a/public/tags/meta/index.xml
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
- Meta on Jan Kremer
- https://jankremer.eu/tags/meta/
- Recent content in Meta on Jan Kremer
- Hugo -- gohugo.io
- de
- 2023-12-30 08:34
-
- What I'm currently doing
- https://jankremer.eu/now/
- 2023-12-30 08:34
-
- https://jankremer.eu/now/
- <h2 id="learning">Learning</h2>
-<ul>
-<li>Pharmazeutische Technologie</li>
-</ul>
-<h2 id="reading">Reading</h2>
-<ul>
-<li>Kaffee und Zigaretten – Ferdinand von Schirach</li>
-</ul>
-<h2 id="watching">Watching</h2>
-<ul>
-<li>Germany’s next topmodel</li>
-<li>Rosins Restaurants</li>
-<li>Batman – The animated series</li>
-<li>Band of Brothers</li>
-</ul>
-<h2 id="listening">Listening</h2>
-<ul>
-<li>Kölsche Karnevalsmusik (yeah I know Karneval is over)</li>
-</ul>
-
-
-
-
- What I use
- https://jankremer.eu/uses/
- 2023-12-30 08:03
-
- https://jankremer.eu/uses/
- <h2 id="hardware">Hardware</h2>
-<ul>
-<li>MacBook Pro 2015</li>
-<li>iPhone X</li>
-<li>Apple Watch SE</li>
-<li>AirPods Pro</li>
-<li>Logitech MX Master 3 (rarely)</li>
-</ul>
-<h2 id="software">Software</h2>
-<table>
-<thead>
-<tr>
-<th>Category</th>
-<th>Software</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>Unless otherwise stated</td>
-<td>Apple default apps</td>
-</tr>
-<tr>
-<td>RSS reader</td>
-<td><a href="https://netnewswire.com">NetNewsWire</a></td>
-</tr>
-<tr>
-<td>Notes</td>
-<td><a href="https://obsidian.md">Obsidian</a></td>
-</tr>
-<tr>
-<td>To-Do list</td>
-<td><a href="https://culturedcode.com/things">Things</a></td>
-</tr>
-<tr>
-<td>Text editor</td>
-<td><a href="https://neovim.io">Neovim</a>, <a href="https://helix-editor.com">Helix</a></td>
-</tr>
-<tr>
-<td>Word processing</td>
-<td><a href="https://typst.app">Typst</a></td>
-</tr>
-<tr>
-<td>Window manager</td>
-<td><a href="https://github.com/ianyh/Amethyst">Amethyst</a></td>
-</tr>
-<tr>
-<td>Terminal emulator</td>
-<td><a href="https://sw.kovidgoyal.net/kitty">Kitty</a></td>
-</tr>
-<tr>
-<td>Package manager</td>
-<td><a href="https://nixos.org">Nix</a>, <a href="https://brew.sh">Homebrew</a></td>
-</tr>
-</tbody>
-</table>
-
-
-
-
- Deploy a website using Git
- https://jankremer.eu/blog/git-deploy/
- 2023-09-25 00:00
-
- https://jankremer.eu/blog/git-deploy/
- <h2 id="git-ftp">Git-ftp</h2>
-<p>I tested a lot of different FTP programs including GUIs, TUIs and CLIs.
-There might be a problem with the FTP server but I don’t control that unfortunately.
-The only program working flawlessly so far is <a href="https://git-ftp.github.io/">git-ftp</a>, a plugin for Git.
-Not only is this perfectly integrated into git, which I am using anyway.
-Also no errors occurred so far.
-Plus I can automate the upload using <a href="#git-hooks">hooks</a>.</p>
-<h2 id="git-hooks">Git hooks</h2>
-<p>The real MVP however is <a href="https://git-scm.com/docs/githooks">Git Hooks</a>.
-Hooks are scripts that run automatically on certain Git events.</p>
-<p>I did, for example, create a hook to automacally build the website after commiting a change.
-Yes, this could introduce problems such as breaking changes and I end up with a broken website, but as I test it regularly this should not become a problem.</p>
-<p>The second hook I created pushes the website to the FTP server whenever I push to the remote repository.</p>
-<h2 id="git-submodule">Git submodule</h2>
-<p>I recently discovered that I can use <code>git submodule</code> to add the <code>public</code> folder created by Hugo.
-This allows me to upload the repository to my pages repository on Codeberg and have the site mirrored there.
-Secoundly, it allows me to upload the website with git-ftp without uploading everything else.</p>
-<hr>
-<p>What awesome features of Git are you using?</p>
-
-
-
-
- RSS
- https://jankremer.eu/blog/rss/
- 2023-09-01 00:00
-
- https://jankremer.eu/blog/rss/
- <h2 id="what-is-rss">What is RSS?</h2>
-<p>Originally, RSS stood for “RDF/Rich Site Summary” but was later changed to “Really Simple Syndication”</p>
-<p>RSS is a way to subscribe to a website.
-Whenever that website updates it writes its changes to a <code>XML</code> file.
-You can then read this XML file and see what changed at a glance.</p>
-<p>Many websites use RSS including YouTube, <del>Reddit</del> Lemmy, <del>Twitter</del> Mastodon, most news sites, and almost any blog out there.
-For many blogs, RSS is the main way to distribute new posts.</p>
-<p>RSS is experiencing a Renaissance at the moment:
-Many people are now seeing the damages done by algorithmic feeds and want to go back to purely chronological feeds.
-RSS provides a perfect infrastructure for this.</p>
-<h2 id="how-to-read-rss">How to read RSS?</h2>
-<p>First, you need a feed reader. On macOS and iOS I highly recommend <a href="https://netnewswire.com">NetNewsWire</a>.
-For terminal fans <a href="https://newsboat.org">Newsboat</a> is the way to go.
-<a href="https://www.thunderbird.net/">Thunderbird</a> is also a good choice but there are tons of programs that can read RSS feeds.</p>
-<p>That’s bascially it. Now you need to add some feeds and you are ready.</p>
-<p>I recommend picking a reader that can also fetch the article without opening the browser and loading a ton of ads.</p>
-<p>Pro tip: You can export your subscibtions to a <code>OPML</code> file and import them into any RSS reader.</p>
-<h2 id="how-to-distribute-rss">How to distribute RSS?</h2>
-<p>This is the hardest question to answer about RSS as there are endless possibilities.</p>
-<p>The easiest way would probably be to use a service such as Mastodon that generates the feed automatically.
-If that platform isn’t for you, WordPress is a good way to host a blog.
-I read about people setting up their own scripts that automatically update the feed for new posts.</p>
-<p>I use <a href="https://gohugo.io">Hugo</a> which is a <em>static site generator</em>.
-It generates feeds automatically but lies somewhere between WordPress and writing your own scripts in terms of how tech savvy you should be.</p>
-<h2 id="how-to-find-rss">How to find RSS?</h2>
-<p>Go to a website you like, copy the URL and paste it into your RSS reader.
-Modern feed readers can find RSS feed on their own, you just have to provide a link to the site you want to subscribe to.
-If that is not the case, you could try adding <code>/index.xml</code> to the URL.</p>
-<p>Some sites, like this one, also link to their RSS feeds.
-Often those links are a the bottom of the website and are either marked as <code>RSS</code>, <code>Feed</code>, or just use the RSS logo.
-I additionally provide links to my subprojects such as my <a href="https://jankremer.eu/micro">microblog</a> or my <a href="https://jankremer.eu/fotos">photos</a>.
-Feel free to add them to your reader.</p>
-<h2 id="conclusion">Conclusion</h2>
-<p>I think RSS is on the rise.
-It’s an old protocol that survived numerous challenges
-It provides an escape from the algorithms and large social media companies.
-It also provides a way for content creators to distribute their content on their own without any middleman.</p>
-
-
-
-
- 12 cent blog
- https://jankremer.eu/blog/hosting/
- 2023-08-27 00:00
-
- https://jankremer.eu/blog/hosting/
- <p>Yes, the title is correct.
-<a href="https://knowyourmeme.com/photos/1191035">Well, actually</a> it is 0.119 € per
-month or 14.28 € for 10 years.</p>
-<p>To be fair, it was a special offer and only covers the domain.
-Fortunately, my provider, <a href="https://www.netim.com/en">Netim</a> has a free hosting plan with fits my needs.
-I even get email hosting with my own domain.
-There are also services like <a href="https://neocities.org">Neocities</a> where you can host your website for free if you are willing to live with a subdomain.</p>
-<h2 id="why-should-i-xyz-is-free">Why should I? XYZ is free!</h2>
-<p>Yes, you can post wherever you want.
-𝕏 (formerly known as Twitter) is free<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>, Mastodon is free, Facebook, Instagram, Threads, Reddit, you name them, are all free, but you are giving up your freedoms.
-Mastodon might be a little better than the rest, but ultimately you depend on the host to let you post there.
-And they can block you and delete all your data without even giving you any notice.
-I hope you have a backup.</p>
-<p>Hosting this blog allows me to write whatever I want.
-Sure, Netim could also block me and delete my data, but since I use <a href="https://gohugo.io">Hugo</a> I always have everything backed up on my system anyways.
-In a matter of hours I could be up and running on another hosting provider.</p>
-<p>I can also use any format I want and have nearly endless possibilities to customize my blog.
-The sky is the limit.
-For example am I hosting my own <a href="https://jankremer.eu/fotos">photos</a> instead of using Instagram and my own <a href="https://jankremer.eu/micro">microblog</a> instead of using Twitter/Mastodon.
-Whatever media I plan to share in the future, there is a solution out there.
-Want comments? I’m trying <a href="https://cactus.chat">Cactus Comments</a> at the moment.</p>
-<p>Let me know what you think!</p>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>Or is it? I’m not in the loop. <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
- Genesis
- https://jankremer.eu/blog/genesis/
- 2022-12-10 00:00
-
- https://jankremer.eu/blog/genesis/
- <p>Als ich vor ca. einem Jahr diese Domain kaufte, wusste ich noch nicht was ich damit anstellen will. Ich wusste nur: <strong>Ich will endlich eine eigene Webseite haben.</strong></p>
-<p>In meinen ersten Stunden Informatik in der Schule (vor über 10 Jahren) lernten wir die Grundlagen des Webdesigns mit <em>HTML</em> und <em>CSS</em>, und da ich zunächst nicht viel Zeit hatte erstellte ich genau mit diesen Tools eine kleine Startseite. Mehr schlecht als recht aber immerhin hatte ich etwas.</p>
-<p>Im März diesen Jahres hatte ich dann ein wenig Zeit mich genauer mit dem Thema zu beschäftigen und fand dabei den sogenannten <a href="https://jamstack.org">Jamstack</a>. Jamstack sind Tools zur schnellen und einfachen Aufstellen von Webseite. Dies können große Projekte sein oder wie in meinem Fall ein kleiner Blog. Zuerst probierte ich <a href="https://jekyllrb.com/">Jekyll</a> was mir jedoch nicht so gut taugte und stieß dann auf <a href="https://gohugo.io/">Hugo</a>. Mit einer Vielzahl an modernen Designs und einer klinderleichten Handhaben konnte ich schnell überzeugt werden.</p>
-<p>Heute weiß ich zwar immer noch nicht, was ich hiermit in Zukunft machen werde, aber ich denke es ist wichtiger den je ein Sprachrohr zu haben, das unabhängig ist von der Willkür großer Plattformen.</p>
-<p>Bis bald und viel Spaß!</p>
-<p>P.S.: Dieses wunderschöne <em>Theme</em>, das ich hier benutze, heißt <a href="https://git.io/hugo-congo">Congo</a>.</p>
-
-
-
-
-
diff --git a/public/tags/micro/index.html b/public/tags/micro/index.html
deleted file mode 100644
index cd5011e..0000000
--- a/public/tags/micro/index.html
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
-
-
-
-Micro | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/public/tags/micro/index.xml b/public/tags/micro/index.xml
deleted file mode 100644
index 93e0d39..0000000
--- a/public/tags/micro/index.xml
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
- Micro on Jan Kremer
- https://jankremer.eu/tags/micro/
- Recent content in Micro on Jan Kremer
- Hugo -- gohugo.io
- de
- 2023-12-25 16:28
-
- Markdown Tables Suck
- https://jankremer.eu/micro/markdown-tables/
- 2023-12-25 16:28
-
- https://jankremer.eu/micro/markdown-tables/
- <p>Tables are arguably the worst part of Markdown.
-No horizontal lines except for the mandatory one at the top.
-The only feature is the possibility to align cells.</p>
-<p>Org Mode does much better, but isn’t perfect either.</p>
-<p>Don’t get me wrong. It’s nice to have a simple tool for simple tables.
-But sometimes I need more customizability.</p>
-
-
-
-
- Use Timestamps
- https://jankremer.eu/micro/timestamps/
- 2023-11-15 10:12
-
- https://jankremer.eu/micro/timestamps/
- <p>
-Every blog post should include a timestamp.
-In fact, this extends to almost anything online and even offline.</p>
-<p>
-Also, don't make me look for the date.
-Put the date as obvious as possible, preferably at the beginning of the post.</p>
-<p>
-I was reading <a href="https://jvns.ca/blog/2023/02/28/some-notes-on-using-nix/">Julia Evans post about nix</a> and it was not immediately clear to me if this was a recent post.
-Only when I copied the URL to complain about it I discovered the date there.
-Safari hides most of the URL by default.</p>
-
-
-
-
- Stop using Twitter.
- https://jankremer.eu/micro/twitter/
- 2023-07-22 15:57
-
- https://jankremer.eu/micro/twitter/
-
-
-
-
- Reader mode is the antidote to bad website design.
- https://jankremer.eu/micro/reader/
- 2023-07-19 10:14
-
- https://jankremer.eu/micro/reader/
-
-
-
-
-
diff --git a/public/tags/money/index.html b/public/tags/money/index.html
deleted file mode 100644
index eeee04e..0000000
--- a/public/tags/money/index.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-Money | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/public/tags/money/index.xml b/public/tags/money/index.xml
deleted file mode 100644
index b35f495..0000000
--- a/public/tags/money/index.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
- Money on Jan Kremer
- https://jankremer.eu/tags/money/
- Recent content in Money on Jan Kremer
- Hugo -- gohugo.io
- de
- 2023-08-27 00:00
-
- 12 cent blog
- https://jankremer.eu/blog/hosting/
- 2023-08-27 00:00
-
- https://jankremer.eu/blog/hosting/
- <p>Yes, the title is correct.
-<a href="https://knowyourmeme.com/photos/1191035">Well, actually</a> it is 0.119 € per
-month or 14.28 € for 10 years.</p>
-<p>To be fair, it was a special offer and only covers the domain.
-Fortunately, my provider, <a href="https://www.netim.com/en">Netim</a> has a free hosting plan with fits my needs.
-I even get email hosting with my own domain.
-There are also services like <a href="https://neocities.org">Neocities</a> where you can host your website for free if you are willing to live with a subdomain.</p>
-<h2 id="why-should-i-xyz-is-free">Why should I? XYZ is free!</h2>
-<p>Yes, you can post wherever you want.
-𝕏 (formerly known as Twitter) is free<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>, Mastodon is free, Facebook, Instagram, Threads, Reddit, you name them, are all free, but you are giving up your freedoms.
-Mastodon might be a little better than the rest, but ultimately you depend on the host to let you post there.
-And they can block you and delete all your data without even giving you any notice.
-I hope you have a backup.</p>
-<p>Hosting this blog allows me to write whatever I want.
-Sure, Netim could also block me and delete my data, but since I use <a href="https://gohugo.io">Hugo</a> I always have everything backed up on my system anyways.
-In a matter of hours I could be up and running on another hosting provider.</p>
-<p>I can also use any format I want and have nearly endless possibilities to customize my blog.
-The sky is the limit.
-For example am I hosting my own <a href="https://jankremer.eu/fotos">photos</a> instead of using Instagram and my own <a href="https://jankremer.eu/micro">microblog</a> instead of using Twitter/Mastodon.
-Whatever media I plan to share in the future, there is a solution out there.
-Want comments? I’m trying <a href="https://cactus.chat">Cactus Comments</a> at the moment.</p>
-<p>Let me know what you think!</p>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>Or is it? I’m not in the loop. <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
-
diff --git a/public/tags/nix/index.html b/public/tags/nix/index.html
deleted file mode 100644
index 57ff0aa..0000000
--- a/public/tags/nix/index.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-Nix | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/public/tags/nix/index.xml b/public/tags/nix/index.xml
deleted file mode 100644
index ebaac2c..0000000
--- a/public/tags/nix/index.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- Nix on Jan Kremer
- https://jankremer.eu/tags/nix/
- Recent content in Nix on Jan Kremer
- Hugo -- gohugo.io
- de
- 2024-03-14 00:00
-
- Nix on macOS
- https://jankremer.eu/blog/nix/
- 2024-03-14 00:00
-
- https://jankremer.eu/blog/nix/
- <p>For about a year, I’ve been fascinated by <a href="https://nixos.org">Nix and NixOS</a>. I don’t remember exactly what fascinated me at first, probably the possibility to setup and configure my system using a single file. A few weeks ago, I decided to give it a serious try.</p>
-<h2 id="installation">Installation</h2>
-<p>To be honest this is not my first time installing Nix on my machine. I tried the official Nix installer and the “old” way to use Nix which is basically the same as any other package manager. I didn’t see the point of having two package managers so I uninstalled Nix quickly after.</p>
-<p>Then, a few weeks ago, I came across <a href="https://nixcademy.com/2024/01/15/nix-on-macos/">this guide</a> and it instantly clicked with me. Having a single file in which I declare my complete system and then have it set up in a few minutes without rebooting is just infinitely cool. In Nix, this feature is called <em>flake</em>. The guide uses the <a href="https://github.com/DeterminateSystems/nix-installer">Determinate systems installer</a> which sets up flakes by default. It also explains how to install Nix Darwin.</p>
-<h2 id="nix-darwin">Nix Darwin</h2>
-<p>Nix Darwin is a set of Nix modules that brings declarative configuration to macOS. It includes a bunch of options such as for the dock, Finder or the keyboard for example. It also gives the user basic configuration options for various programs. However I prefer to set up terminal based programs using <a href="#home-manager">Home Manager</a> instead, because it supports even more programs.</p>
-<p>What I do use extensively is the <a href="https://brew.sh/">Homebrew</a> module to install not only GUI (graphical user interface) apps from Homebrew, but also from the App Store.</p>
-<h2 id="home-manager">Home Manager</h2>
-<p>For everything else, from terminal based programs to their configuration, I use <a href="https://github.com/nix-community/home-manager?tab=readme-ov-file">Home Manager</a>. It includes a huge set of modules and allows me to setup every non-GUI program in a declarative way. Still, sometimes you have to configure the “traditional way”, meaning in the original configuration language. But still, I much prefer this over my cluttered <code>.config</code> directory.</p>
-<h2 id="nixvim">Nixvim</h2>
-<p>In the process of writing my Nix configuration, I became unsatisfied with my Neovim setup. I used to use <a href="https://www.lazyvim.org">LazyVim</a> but it felt more and more bloated and slow on my 9 year old machine. For some time I used <a href="https://helix-editor.com/">Helix</a> which has great defaults, such as language server protocol (LSP) and fuzzy finder integration. I really think Neovim should go in this direction. Unfortunately it lacks some features to make it my main editor, mostly support for <a href="https://typst.app/">Typst</a> which is already added to the <code>master</code> branch. It also lacks a plugin system, but given such great defaults, there isn’t that big of a need for it. Helix also features its own set of motions, and although I think they are not bad, maybe even better than Vim motions, the latter are so ubiquitously implemented that I would essentially use both all the time.</p>
-<p>That’s when I saw a video by <em>ThePrimeagen</em> in which he recommended <a href="https://github.com/nvim-lua/kickstart.nvim/tree/master">Kickstart</a>, a minimal Neovim starter configuration mainly written by <em>TJ DeVries</em>. It almost everything you need to get started and has insanely great documentation.</p>
-<p>The only thing that bothered me was the use of <a href="https://github.com/williamboman/mason.nvim">Mason</a> as a LSP package manager. For some people this might be the best way to install LSPs, but I don’t understand why I would use a second package manager when I can just use Nix for everything. Helix has a list of supported LSPs and all you have to do is make sure they are in your <code>$PATH</code>.</p>
-<p>Luckily, others already had the same issues and decided to write <a href="https://github.com/nix-community/nixvim">Nixvim</a>. Nixvim is a NixOS / Nix Darwin / Home manager module that lets you configure Neovim (almost) entirely using Nix. It uses Nix as the plugin manager and has great defaults and documentation.</p>
-<p>I basically recreated Kickstart using Nixvim with some minor tweaks. It feels just as snappy as Helix and I love it.</p>
-<h2 id="conclusion">Conclusion</h2>
-<p>This is just the tip of the tip of the iceberg of what is possible with Nix. Next, I want to learn to write my own flakes to set up development environments. I should probably learn a bit of Nix language too. But to sum it up so far, I’m really happy and excited about this “new” way to manage my computer.</p>
-
-
-
-
-
diff --git a/public/tags/regensburg/index.html b/public/tags/regensburg/index.html
deleted file mode 100644
index be779da..0000000
--- a/public/tags/regensburg/index.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-Regensburg | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/public/tags/rss/index.xml b/public/tags/rss/index.xml
deleted file mode 100644
index c03a83b..0000000
--- a/public/tags/rss/index.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
- Rss on Jan Kremer
- https://jankremer.eu/tags/rss/
- Recent content in Rss on Jan Kremer
- Hugo -- gohugo.io
- de
- 2023-09-01 00:00
-
- RSS
- https://jankremer.eu/blog/rss/
- 2023-09-01 00:00
-
- https://jankremer.eu/blog/rss/
- <h2 id="what-is-rss">What is RSS?</h2>
-<p>Originally, RSS stood for “RDF/Rich Site Summary” but was later changed to “Really Simple Syndication”</p>
-<p>RSS is a way to subscribe to a website.
-Whenever that website updates it writes its changes to a <code>XML</code> file.
-You can then read this XML file and see what changed at a glance.</p>
-<p>Many websites use RSS including YouTube, <del>Reddit</del> Lemmy, <del>Twitter</del> Mastodon, most news sites, and almost any blog out there.
-For many blogs, RSS is the main way to distribute new posts.</p>
-<p>RSS is experiencing a Renaissance at the moment:
-Many people are now seeing the damages done by algorithmic feeds and want to go back to purely chronological feeds.
-RSS provides a perfect infrastructure for this.</p>
-<h2 id="how-to-read-rss">How to read RSS?</h2>
-<p>First, you need a feed reader. On macOS and iOS I highly recommend <a href="https://netnewswire.com">NetNewsWire</a>.
-For terminal fans <a href="https://newsboat.org">Newsboat</a> is the way to go.
-<a href="https://www.thunderbird.net/">Thunderbird</a> is also a good choice but there are tons of programs that can read RSS feeds.</p>
-<p>That’s bascially it. Now you need to add some feeds and you are ready.</p>
-<p>I recommend picking a reader that can also fetch the article without opening the browser and loading a ton of ads.</p>
-<p>Pro tip: You can export your subscibtions to a <code>OPML</code> file and import them into any RSS reader.</p>
-<h2 id="how-to-distribute-rss">How to distribute RSS?</h2>
-<p>This is the hardest question to answer about RSS as there are endless possibilities.</p>
-<p>The easiest way would probably be to use a service such as Mastodon that generates the feed automatically.
-If that platform isn’t for you, WordPress is a good way to host a blog.
-I read about people setting up their own scripts that automatically update the feed for new posts.</p>
-<p>I use <a href="https://gohugo.io">Hugo</a> which is a <em>static site generator</em>.
-It generates feeds automatically but lies somewhere between WordPress and writing your own scripts in terms of how tech savvy you should be.</p>
-<h2 id="how-to-find-rss">How to find RSS?</h2>
-<p>Go to a website you like, copy the URL and paste it into your RSS reader.
-Modern feed readers can find RSS feed on their own, you just have to provide a link to the site you want to subscribe to.
-If that is not the case, you could try adding <code>/index.xml</code> to the URL.</p>
-<p>Some sites, like this one, also link to their RSS feeds.
-Often those links are a the bottom of the website and are either marked as <code>RSS</code>, <code>Feed</code>, or just use the RSS logo.
-I additionally provide links to my subprojects such as my <a href="https://jankremer.eu/micro">microblog</a> or my <a href="https://jankremer.eu/fotos">photos</a>.
-Feel free to add them to your reader.</p>
-<h2 id="conclusion">Conclusion</h2>
-<p>I think RSS is on the rise.
-It’s an old protocol that survived numerous challenges
-It provides an escape from the algorithms and large social media companies.
-It also provides a way for content creators to distribute their content on their own without any middleman.</p>
-
-
-
-
-
diff --git a/public/tags/uni/index.html b/public/tags/uni/index.html
deleted file mode 100644
index 4ee18dd..0000000
--- a/public/tags/uni/index.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-Uni | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/public/tags/uni/index.xml b/public/tags/uni/index.xml
deleted file mode 100644
index 34515c9..0000000
--- a/public/tags/uni/index.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
- Uni on Jan Kremer
- https://jankremer.eu/tags/uni/
- Recent content in Uni on Jan Kremer
- Hugo -- gohugo.io
- de
- 2023-01-12 15:35
-
- LaTeX
- https://jankremer.eu/blog/latex/
- 2023-01-12 15:35
-
- https://jankremer.eu/blog/latex/
- <p>Im Rahmen meines Wahlpflichtpraktikums schreibe ich aktuell an meiner zweiten größeren Projektarbeit. Die einzige andere Projektarbeit war bisher die für das Praktikum Pharmazeutische Technologie, welche, Stand jetzt, noch nicht vollständig abgeschlossen ist.</p>
-<p>Für diese Arbeit entschieden wir uns jedoch für <em>Microsoft Word</em>. Also im Grunde wurde uns diese Entscheidung fast abgenommen, da die Universität Regensburg uns das <em>Office 365</em> zur Verfügung stellt und es damit auch bei uns Studenten den De-Facto-Standard darstellt. Zudem erleichtert es das Arbeiten im Team doch sehr.</p>
-<p>Formatierungen sind jedoch immer ein Kampf. Daher wollte ich versuchen, <a href="https://www.latex-project.org">LaTeX</a> für diese Arbeit einzusetzen. Ich kannte <em>LaTeX</em> vor allem aus mathematischen Kursen an der Uni und hatte schon oft gehört, dass es Setzen (von <a href="https://de.wikipedia.org/wiki/Satz_(Druck)">Satz</a>) deutlich vereinfachen soll. Aber nicht nur das Schreiben mathematischer Arbeiten macht es deutlich angenehmer, durch das einbinden einiger zusätzlicher Pakete werden wissenschaftliche Texte zum Kinderspiel.</p>
-<h2 id="über-latex">Über LaTeX</h2>
-<blockquote>
-<p><strong>LaTeX</strong> [ˈlaːtɛç] ist ein Softwarepaket, das die Benutzung des Textsatzsystems TeX mit Hilfe von Makros vereinfacht. <em>LaTeX</em> wurde Anfang der 1980er Jahre von <em>Leslie Lamport</em> entwickelt.Der Name bedeutet so viel wie <em>Lamport TeX</em>. Die Entwicklung wurde seit den 1990er Jahren von einer Anzahl Entwicklern weitergeführt. Heute ist <em>LaTeX</em> die populärste Methode, <em>TeX</em> zu verwenden.</p>
-</blockquote>
-<p>— <!-- raw HTML omitted --><a href="https://de.wikipedia.org/wiki/LaTeX">Wikipedia: LaTeX</a><!-- raw HTML omitted --></p>
-<p><em>LaTeX</em> funktioniert ähnlich wie <em>HTML</em> oder <em>Markdown</em>: Zunächst wird die Formatierung von Text getrennt. Bei WYSIWYG<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>-Textverarbeitungsprogrammen wie <em>Word</em> sieht man direkt, wie das gedruckte Dokument hinterher aussehen wird. Das macht es für viele Nutzer einfacher, zwingt sie aber auch dazu, sich direkt und unmittelbar mit der Formatierung zu beschäftigen. <em>LaTeX</em> trennt dies zunächst, gibt aber dennoch eine übersichtliche Struktur vor. Zudem sind die Standard Formatvorlagen deutlich schlichter und zumindest für mich wesentlich ansprechender als die von <em>Word</em> (Warum ist alles blau und wieso <em>Calibri</em>?!). Ja, die Voreinstellungen von <em>Word</em> lassen sich überschreiben, aber das muss man auch erstmal machen.</p>
-<p>Funktionen wie ein Inhalts- oder Literaturvrezeichnis lassen sich in <em>Word</em> zwar auch realisieren, sind in <em>LaTeX</em> wesentlich simpler. Zudem lässt sich <em>LaTeX</em> durch Pakete nahezu unendlich erweitern und deckt dadruch auch jeden noch so speziellen Fall ab.</p>
-<p>Ein weiterer Punkt, warum ich <em>LaTeX</em> bevorzuge ist, dass ich jeden Texteditor benutzen kann. Ich nutze am liebsten <em>VS Code</em>, aber natürlich kann jeder beliebige Editor verwendet werden.</p>
-<p>Das einzige, was mit <em>Word</em> sicher einfacher wäre ist das einbinden und beschriften von Grafiken. Da ich einige davor in meine Projektarbeit verwende, brauchte ich hierfür eine Lösung. Diese habe ich mit <a href="https://inkscape.org/de/">Inkscape</a> gefunden. Hiermir lassen sich Bilder bearbeiten und beschriften und anschließend als <em>LaTeX</em>-Dokument speichern. Diese lassen sich dann ganz einfach einbinden.</p>
-<h2 id="fazit">Fazit</h2>
-<p>Für wen <em>Word</em> und ähnliches schon immer eine Qual war oder wer Vorerfahrung mit Texteditoren und Skriptsprachen hat, dem kann ich <em>LaTeX</em> nur ans Herz legen. Ganz einfach lassen sich wunderschöne Dokumente herzaubern. Vor allem der Font <em>Computer Modern</em> hat es mir sehr angetan. Eventuell werde ich die Projektarbeit demnächst hier hochladen.</p>
-<hr>
-<h2 id="technische-spezifikationen">Technische Spezifikationen</h2>
-<p>Kurzer Nachtrag über meine Arbeitsweise mit <em>LaTeX</em>: Als Texteditor benutze ich <a href="https://code.visualstudio.com">VS Code</a>, da ich diesen super übersichtlich finde und vor allem die Erweiterungsmöglichkeiten sehr schätze. Für <em>LaTeX</em> sind dies vor allem <a href="https://github.com/James-Yu/LaTeX-Workshop">LaTeX Workshop</a> und natürlich <a href="https://git-scm.com">git</a> (vorinstalliert). Des Weiteren benutze ich die <a href="https://www.tug.org/mactex/">MacTeX-Distribution</a>, welche ich über <a href="https://brew.sh">Homebrew</a> installiert habe.</p>
-<h3 id="verwendete-pakete">Verwendete Pakete</h3>
-<ul>
-<li><strong>babel</strong>: Sorgt für die Unterstützung verschiedener Sprachen. Ich schreibe die Projektarbeit zwar auf Englisch, jedoch brauche ich ab und zu mal Deutsche Begriffe und damiteinhergehend Umlaute etc.</li>
-<li><strong>biblatex</strong>: Verbessertes Literaturverzeichnis, alternative zu <strong>bibtex</strong>.</li>
-<li><strong>booktabs</strong>: Verschönert und vereinfacht Tabellen in <em>LaTeX</em>.</li>
-<li><strong>chemformula</strong>: Erleichtert das Setzen von chemischen Formeln enorm und sorgt dafür, dass diese auch richtig angezeigt werden.</li>
-<li><strong>hyperref</strong>: Für Links und Metadaten.</li>
-<li><strong>longtable</strong>: Die verwendeten Materialien habe ich alle in riesigen Listen. <em>LaTeX</em> kann standardmäßig nicht besonders gut mit großen Tabellen umgehen, dieses Paket hilft dabei.</li>
-<li><strong>microtype</strong>: Lässt alles schöner aussehen, praktisch schwarze Magie.</li>
-<li><strong>siunitx</strong>: Das wahrscheinlich beste Paket überhaupt, simple aber hat Power. Sorgt für perfektes setzen von Einheiten, mit oder ohne vorangehenden Wert. Zudem enthält es eine Funktion, die Werte in Tabellen um den Dezimalpunkt anordnen kann. Ein Traum.</li>
-<li><strong>textgreek</strong>: Erleichtert das verwenden von griechischen Buchstaben im Text.</li>
-<li>Zusätzliche Pakete die ich an der Stelle nicht weiter erleutern werden: <strong>color</strong>, <strong>csquotes</strong>, <strong>fontenc</strong>, <strong>glossaries</strong>, <strong>graphicx</strong>, <strong>tikz</strong> und <strong>tocbibind</strong>.</li>
-</ul>
-<div class="footnotes" role="doc-endnotes">
-<hr>
-<ol>
-<li id="fn:1">
-<p>What you see is what you get. <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
-</li>
-</ol>
-</div>
-
-
-
-
-
diff --git a/public/uses/index.html b/public/uses/index.html
deleted file mode 100644
index af97c42..0000000
--- a/public/uses/index.html
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-
-
-
-
-What I use | Jan Kremer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-