<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
    <title>Daniels website</title>
    <subtitle>Things Daniel is nerdy about and needs to share</subtitle>
    <link rel="self" type="application/atom+xml" href="https://d-rens.xyz/atom.xml"/>
    <link rel="alternate" type="text/html" href="https://d-rens.xyz"/>
    <generator uri="https://www.getzola.org/">Zola</generator>
    <updated>2026-01-10T00:00:00+00:00</updated>
    <id>https://d-rens.xyz/atom.xml</id>
    <entry xml:lang="en">
        <title>2025 in review</title>
        <published>2026-01-10T00:00:00+00:00</published>
        <updated>2026-01-10T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/2025-in-review/"/>
        <id>https://d-rens.xyz/blog/2025-in-review/</id>
        
        <summary type="html">&lt;!-- # 2025 in review # --&gt;
&lt;p&gt;Last year I’ve written a little post about things I was up to, what I enjoyed
and what helped me. Enjoyed the process and having a way to look back to it, so
here is the one for this year.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>4 - Paper (updates to my workflow)</title>
        <published>2025-07-06T00:00:00+00:00</published>
        <updated>2025-07-06T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/rss-only-club/4-paper-workflow/"/>
        <id>https://d-rens.xyz/rss-only-club/4-paper-workflow/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/rss-only-club/4-paper-workflow/">&lt;p&gt;Published a new video, figured the rss-only would be a good place to let you know.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;youtu.be&#x2F;z4Y5NZ8uANQ?feature=shared&quot;&gt;Paper (updates to my workflow)&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;p&gt;Open to hear your opinions and about your workflow via the mail in &lt;a href=&quot;&#x2F;about&quot;&gt;about&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>the compose key</title>
        <published>2025-06-10T00:00:00+00:00</published>
        <updated>2025-06-10T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/notes/the-compose-key/"/>
        <id>https://d-rens.xyz/notes/the-compose-key/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/notes/the-compose-key/">&lt;p&gt;On a daily basis I use some languages that require non-ascii characters and for
the longest time on linux&#x2F;wayland I’ve struggled to find ways to use these
characters.&lt;&#x2F;p&gt;
&lt;p&gt;The Germans characters I’ve just abbreviated:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;ä&#x2F;ö&#x2F;ü -&amp;gt; ae&#x2F;oe&#x2F;ue&lt;&#x2F;li&gt;
&lt;li&gt;ß -&amp;gt; ss&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;For the Spanish ones removed all the extras:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;é&#x2F;í -&amp;gt; e&#x2F;i&lt;&#x2F;li&gt;
&lt;li&gt;ñ -&amp;gt; n&lt;&#x2F;li&gt;
&lt;li&gt;etc.&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;And for the Portuguese just the same:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;ã&#x2F;á&#x2F;à -&amp;gt; a&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;Perhaps a bit unorthodox or bad towards the language, but my way to go would be
having a buffer with those in &lt;code&gt;&#x2F;tmp&#x2F;&lt;&#x2F;code&gt; or looking them up on wikipedia and
copying them whenever needed.&lt;&#x2F;p&gt;
&lt;p&gt;But recently I was a bit tired of it and to make new Portuguese flashcards I
didn’t want to go use a mac to get nice diacritics on macos, so I figured out
it may be worth the time to look into how to use a compose key for hyprland.&lt;&#x2F;p&gt;
&lt;p&gt;Turns out it’s as easy as it could be:&lt;&#x2F;p&gt;
&lt;pre&gt;&lt;code&gt;  input = {
    kb_options = compose:ralt;
  };
&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;p&gt;(Semicolons because hyprland is defined in nix, not its own config.)&lt;&#x2F;p&gt;
&lt;p&gt;Since then I have (&lt;code&gt;alt-gr := compose&lt;&#x2F;code&gt;):&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;compose&gt;“[auo] -&amp;gt; äüö&lt;&#x2F;li&gt;
&lt;li&gt;&lt;compose&gt;ss -&amp;gt; ß&lt;&#x2F;li&gt;
&lt;li&gt;&lt;compose&gt;~[an] -&amp;gt; ãñ&lt;&#x2F;li&gt;
&lt;li&gt;&lt;compose&gt;’[aei] -&amp;gt; áéí&lt;&#x2F;li&gt;
&lt;li&gt;&lt;compose&gt;&lt;code&gt;[aei] -&amp;gt; àèì&lt;&#x2F;code&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;For obvious reasons this makes writing these characters much easier, but on
telling a friend about that she shared another good way to do it without key.&lt;&#x2F;p&gt;
&lt;p&gt;Vim’s &lt;code&gt;:dig&lt;&#x2F;code&gt;.&lt;&#x2F;p&gt;
&lt;p&gt;An nix inbuilt way of using special characters. Now I don’t need it anymore
because I have the special symbols implemented on a deeper level with the
compose key but would I have known about that earlier I’ve probably not needed
it as everything that is longer than two sentences is already written in nvim
either way.&lt;&#x2F;p&gt;
&lt;p&gt;But I do recommend giving it a look, it has a huge variety of other alphabets
too, most notably for the daily use is the Greek to maybe refer to mathematics,
a theorem or a such.&lt;&#x2F;p&gt;
&lt;p&gt;Can recommend, have fun.&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>forgot my laptop somewhere (backup update)</title>
        <published>2025-06-02T00:00:00+00:00</published>
        <updated>2025-06-02T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/forgot-my-laptop-somewhere-backup-update/"/>
        <id>https://d-rens.xyz/blog/forgot-my-laptop-somewhere-backup-update/</id>
        
        <summary type="html">&lt;p&gt;Recently I’ve commuted back and forth to a city in the south of Germany to
attend a conference for a day. The night I ended up staying at family that
lived closer there but on my way back by train I’ve quickly seen that I forgot
my laptop there.&lt;&#x2F;p&gt;
&lt;p&gt;This post will go through problems that made me discover in my backup system
which I’ve already outlined in the &lt;a href=&quot;&#x2F;blog&#x2F;backup-considerations&#x2F;&quot;&gt;first backup post&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;p&gt;Forgetting the Laptop somewhere is obviously not too tragic, because I knew it
would only be for a few days, but not having access to it illustrated how my
backups work the same as if the laptop got stolen or something else would’ve
happened to it.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Gewissenhaftigkeit</title>
        <published>2025-06-02T00:00:00+00:00</published>
        <updated>2025-06-02T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/notes/gewissenhaftigkeit/"/>
        <id>https://d-rens.xyz/notes/gewissenhaftigkeit/</id>
        
        <summary type="html">&lt;blockquote&gt;
&lt;p&gt;The following is based on a conversation had with fellow Andy Russo earlier
this year.&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;p&gt;We’ll do a little expedition into the German language.&lt;&#x2F;p&gt;
&lt;p&gt;“conscientiously” is a weird word, it’s one that Germans use often, but the
translation is not a great one. Or rather the meaning of the German word is lost.&lt;&#x2F;p&gt;
&lt;p&gt;The German word “Gewissenhaft” is put together of 1. “Gewissen” which one could
say describes the feeling you have in your stomach. When you do something with
good Gewissen it’s an action that you think is right and supposed to happen.
2. The “-haft” part does not make sense in itself but here it means something like
“contains”. Such that it ends up meaning “done out of noble idea”, “done with
virtue”, “done up to a high standard” or just “well intentioned”.&lt;&#x2F;p&gt;
&lt;p&gt;In that way you would attribute Gewissenhaftigkeit (the attribution for somebody
to work gewissenhaft) for example to a good politician who after his term is
proud about what he has done or rather has done nothing wrong or against his
moral.&lt;&#x2F;p&gt;
&lt;p&gt;It’s a term I appreciate and that means a lot, it’s what one should strive to be.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Review: Homo Faber</title>
        <published>2025-06-01T00:00:00+00:00</published>
        <updated>2025-06-01T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/books/homo-faber/"/>
        <id>https://d-rens.xyz/books/homo-faber/</id>
        
        <summary type="html">&lt;h2 id=&quot;preface&quot;&gt;preface&lt;&#x2F;h2&gt;
&lt;p&gt;Just two days ago I’ve finished this book for the second time after having read
it the first time around 2 years ago during high school.&lt;&#x2F;p&gt;
&lt;p&gt;As it’s always with reads, that are not incredibly shallow, one comes back to
them, not remembering half of what happened during the first read, but being
able to understand the interpersonal relationships and story better.&lt;&#x2F;p&gt;
&lt;p&gt;With the “Homo Faber” I’ve had that to an great extend and enjoyed it so much
more this time around. Probably also due to being – a tad bit – maturer.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>my paperless-ngx setup</title>
        <published>2025-05-20T00:00:00+00:00</published>
        <updated>2025-05-20T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/my-paperless-setup/"/>
        <id>https://d-rens.xyz/blog/my-paperless-setup/</id>
        
        <summary type="html">&lt;p&gt;Yesterday I’ve had a discussion with my partner about organisation. And being at
the intersection of nerd and German I got the need during it to reorganise my
paperless-xng to make documents more accessible and sort them more reasonably.&lt;&#x2F;p&gt;
&lt;p&gt;Having &amp;lt;100 documents in there myself, as I haven’t done anything else than
being in school &#x2F; uni normally, I could not on my own find good patterns of what
would help very well in sorting them. So came reasonably to the resolution that
there are many many people that will have to sort through thousands of
documents as a sole person or maybe even tens of thousands in the case of a
business, they’ve surely come up with something and indeed they did.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>fish</title>
        <published>2025-04-27T00:00:00+00:00</published>
        <updated>2025-04-27T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/notes/fish/"/>
        <id>https://d-rens.xyz/notes/fish/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/notes/fish/">&lt;p&gt;For a year now I’ve been using the fish shell and since then didn’t want to go
back. I made the change together with switching to nixos after I saw other
exozyme members using it occasionally.&lt;&#x2F;p&gt;
&lt;p&gt;At first I was worried about it not being posix compliant but I could just use
as a drop-in alternative to zsh which I was using before.&lt;&#x2F;p&gt;
&lt;p&gt;There where a few immediate improvements.&lt;&#x2F;p&gt;
&lt;p&gt;When using zsh I was trying to make it usable and that resulted in an –
admittedly bloated – .zshrc. At the end of my &lt;code&gt;zsh&lt;&#x2F;code&gt; usage it grew to a few
hundred lines, spanning from &lt;code&gt;$HOME&lt;&#x2F;code&gt; to &lt;code&gt;.config&lt;&#x2F;code&gt;. I very much disliked that
and sometimes when I wanted to change something I didn’t even know where to do
it.&lt;&#x2F;p&gt;
&lt;p&gt;It was made in 1991 iirc so I didn’t expect too much of it in that matter.&lt;&#x2F;p&gt;
&lt;p&gt;Fish on the other hand was released 2005 and most importantly since then got
bigger updates occasionally.&lt;&#x2F;p&gt;
&lt;p&gt;It has configuration very well in mind and e.g. has the configuration where it should be in &lt;code&gt;.config&#x2F;fish&lt;&#x2F;code&gt;, functions as aliases and a pleasant syntax.&lt;&#x2F;p&gt;
&lt;p&gt;Most importantly for me it also has a great vi-mode out of the box that you can enable by running &lt;code&gt;fish_vi_key_bindings&lt;&#x2F;code&gt; in your fish shell.&lt;&#x2F;p&gt;
&lt;p&gt;That makes it also usable on servers when getting a vi-mode doesn’t mean
getting a complex zsh config to run on it but instead installing a small binary
and running a command.&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;p&gt;And now today, I’m writing this because after a year of usage I’ve finally read
through &lt;code&gt;man fish-tutorial&lt;&#x2F;code&gt; while waiting for a train and trying to write a
fish script to toggle my waybar.&lt;&#x2F;p&gt;
&lt;p&gt;I’ve been a happy user, enjoying the UX of a good tab-completion and history
search but now I do see the appeal also very much on the script side by it’s
modern simplicity instead of what e.g. bash and zsh have to offer when you
have to know a dozen “-”-flags to write conditionals.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;unnamed.website&quot;&gt;Anthony&lt;&#x2F;a&gt; lately told me about the better simplicity
of fish scripts too, but until now I’ve just opted to still badly writing bash
scripts because I don’t want to bother reading into it too much.&lt;&#x2F;p&gt;
&lt;p&gt;Fish will now be the alternative. I encourage you to read &lt;code&gt;man fish-tutorial&lt;&#x2F;code&gt;
when you installed it and give it a try.&lt;&#x2F;p&gt;
&lt;p&gt;I think in all the cases where people don’t use a specific shell for a specific
reason I’d recommend fish to them because for the normal user it makes just
a little bit easier.&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>Defaults instead of Habits</title>
        <published>2025-04-23T00:00:00+00:00</published>
        <updated>2025-04-23T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/postroll/defaults-instead-of-habits/"/>
        <id>https://d-rens.xyz/postroll/defaults-instead-of-habits/</id>
        
        <summary type="html">&lt;p&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;derekkedziora.com&#x2F;blog&#x2F;defaults-instead-of-habits&quot;&gt;Derek Kędziora, Defaults instead of Habits
&lt;&#x2F;a&gt;
Earlier today I’ve read this blogpost by Derek Kędziora.&lt;&#x2F;p&gt;
&lt;p&gt;He talks about how habits in the “self help scene”
In this post Derek thinks through how the stereotypical conception in the self-help scene is unproductive towards having success with them.
He mentions that if you go with the “traditional” view on habits then that makes you end up to fear failing the streak a single time leading you to never do it again. Because you have &lt;em&gt;broken&lt;&#x2F;em&gt; it.&lt;&#x2F;p&gt;
&lt;p&gt;He instead proposes looking at &lt;em&gt;habits&lt;&#x2F;em&gt; and perceiving them as defaults instead. That way you can break them occasionally as it’s realistic, but you don’t fear to have broken a streak and instead you go naturally back to how the default.&lt;&#x2F;p&gt;
&lt;p&gt;He mentions a few examples himself but I have another few out of my own life that apply here.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Review: The Sun Also Rises</title>
        <published>2025-03-22T00:00:00+00:00</published>
        <updated>2025-03-22T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/books/the-sun-also-rises/"/>
        <id>https://d-rens.xyz/books/the-sun-also-rises/</id>
        
        <summary type="html">&lt;h2 id=&quot;preface&quot;&gt;preface&lt;&#x2F;h2&gt;
&lt;p&gt;To start off with, I have reread this book, so I’ll put the old review on the
bottom and the new one on top such that it starts with my most recent thoughts
and you can track how my opinion changed on it, at least with the little little
I’ve written the last time.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Browser considerations and leaving Firefox?</title>
        <published>2025-02-28T00:00:00+00:00</published>
        <updated>2025-02-28T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/notes/browser-considerations-and-leaving-firefox/"/>
        <id>https://d-rens.xyz/notes/browser-considerations-and-leaving-firefox/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/notes/browser-considerations-and-leaving-firefox/">&lt;h1 id=&quot;preface&quot;&gt;preface&lt;&#x2F;h1&gt;
&lt;p&gt;Seems like there are some unwelcome changes going on at Firefox.&lt;&#x2F;p&gt;
&lt;p&gt;A friend sent a link earlier today of a Firefox PR in which the following
question gets removed from the FAQ in the FAQ source code:&lt;&#x2F;p&gt;
&lt;pre&gt;&lt;code data-lang=&quot;diff&quot;&gt;- Does Firefox sell your personal data?
- 
- Nope, never have, never will. And we protect you ...
&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;p&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;mozilla&#x2F;bedrock&#x2F;commit&#x2F;d459addab846d8144b61939b7f4310eb80c5470e#commitcomment-153095625&quot;&gt;here&lt;&#x2F;a&gt; is also the link if you want to check it out.&lt;&#x2F;p&gt;
&lt;p&gt;It’s fine that they do want to sell data to sustain themselves. Now that some
problems in funding could come up with the Google anti-trust lawsuit, but still
it makes me not want to use their tool anymore.&lt;&#x2F;p&gt;
&lt;p&gt;My biggest problem is the following, how few (at least usable and privacy
respecting) alternatives exist.&lt;&#x2F;p&gt;
&lt;p&gt;It’s not like with text editors, for which you can select between a dozen good
options, but instead you have a lot of untrusted parties such as Google or
Opera and now apparently also Mozilla. Plus a few tiny players who can’t
compete or even build a competitive Project due to the sheer size that a
web browser needs now.&lt;&#x2F;p&gt;
&lt;p&gt;You do have some Firefox forks like Librewolf or zen-browser, but Librewolf has
its own problem (that being it’s hard to configure with nix) and for zen I
don’t know if the “spying” will just be added there too.&lt;&#x2F;p&gt;
&lt;p&gt;So now I am having my eyes on two other options&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;www.qutebrowser.org&#x2F;&quot;&gt;qutebrowser&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;nyxt.atlas.engineer&#x2F;&quot;&gt;nyxt browser&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;p&gt;But with them, even though there is great appeal to them, I am still concerned
about a few things. Mainly the possibility to use an ad-Blocker, as both both
of them don’t really seem to have extensions in the way a chrome or Firefox
has, or even “just” to use &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;ublockorigin.com&#x2F;&quot;&gt;uBlock origin&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;conclusion&quot;&gt;“conclusion”&lt;&#x2F;h2&gt;
&lt;p&gt;So here a question instead of a conclusion as normally:&lt;&#x2F;p&gt;
&lt;p&gt;If anybody has experience with qutebrowser &#x2F; nyxt, found a good alternative or
a good way to e.g. just block ads locally, please let me know &lt;a href=&quot;&#x2F;about&quot;&gt;via mail or
matrix&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;p&gt;I will update this note if I get any good results.&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>3 - What now if firefox is comprosimed?</title>
        <published>2025-02-28T00:00:00+00:00</published>
        <updated>2025-02-28T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/rss-only-club/3-need-help-with-the-emacs-calculator/"/>
        <id>https://d-rens.xyz/rss-only-club/3-need-help-with-the-emacs-calculator/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/rss-only-club/3-need-help-with-the-emacs-calculator/">&lt;h1 id=&quot;emacs-calculator&quot;&gt;emacs calculator&lt;&#x2F;h1&gt;
&lt;p&gt;The past weeks I’ve been getting a bit into the emacs calculator but the amount
written on the topic online is far too minimal for such a great tool.&lt;&#x2F;p&gt;
&lt;p&gt;The only very good resource that I’ve gotten recommended by
&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;moksh.codeberg.page&#x2F;&quot;&gt;moksh&lt;&#x2F;a&gt; is a &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=u44X_th6_oY&quot;&gt;video by
karthinks&lt;&#x2F;a&gt; about latex-previews
in emacs that for some reason also feature a emacs calc demo that intrigued me.&lt;&#x2F;p&gt;
&lt;p&gt;Now I’m searching for somebody that can guide me a little there and has been
using the emacs calculator more extensively than me. I’m mostly just doing
little matrix operations with it and using it interchangeably from how I’d use
gnu octave, but it has so much more to offer that I’m mostly oblivious too or
am just not familiar with.&lt;&#x2F;p&gt;
&lt;p&gt;So if you know more and want to help, please &lt;a href=&quot;&#x2F;about&quot;&gt;reach out here&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;p&gt;Have a nice day.&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>2 - What services should I host?</title>
        <published>2025-01-31T00:00:00+00:00</published>
        <updated>2025-01-31T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/rss-only-club/2-what-services-to-host/"/>
        <id>https://d-rens.xyz/rss-only-club/2-what-services-to-host/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/rss-only-club/2-what-services-to-host/">&lt;h1 id=&quot;my-vps-server-is-barely-used-any-recommendations-for-what-to-host&quot;&gt;my vps server is barely used, any recommendations for what to host?&lt;&#x2F;h1&gt;
&lt;blockquote&gt;
&lt;p&gt;This post was accidentally posted in an undone state because I forgot the
pushing no longer only works via git. When you read it now, it’ll be done.&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;figure&gt;
  &lt;img src=&quot;&amp;#x2F;what-services-to-host&amp;#x2F;hetzner-graphs.png&quot; alt=&quot;Screenshot of the usage graphs of the vps cpu on hetzner&quot;&gt;
  &lt;figcaption&gt;&lt;strong&gt;&amp;#10551;&lt;&#x2F;strong&gt; Hetzner cpu usage graph&lt;&#x2F;figcaption&gt;
&lt;&#x2F;figure&gt; 
&lt;p&gt;This blog is hosted on a small Hetzner server with two cores and 4gb ram. But
even tho it is pretty much the smallest one they offer, it still has as good as
no load on it.&lt;&#x2F;p&gt;
&lt;p&gt;Which could in one aspect be seen as good, but I mainly see it as not getting
the worth of what I pay for.&lt;&#x2F;p&gt;
&lt;p&gt;So I’ve decided to host some services that don’t depend on data and are just
meant to be used occasionally.&lt;&#x2F;p&gt;
&lt;p&gt;That way I don’t have to worry about backing them up and can just provide them
without worry.&lt;&#x2F;p&gt;
&lt;p&gt;At the point of writing I’ve hosted the following:&lt;&#x2F;p&gt;
&lt;h2 id=&quot;drawio&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;draw.d-rens.xyz&#x2F;&quot;&gt;drawio&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;figure&gt;
  &lt;img src=&quot;&amp;#x2F;what-services-to-host&amp;#x2F;drawio.png&quot; alt=&quot;Screenshot of the drawio interface&quot;&gt;
  &lt;figcaption&gt;&lt;strong&gt;&amp;#10551;&lt;&#x2F;strong&gt; Drawio interface&lt;&#x2F;figcaption&gt;
&lt;&#x2F;figure&gt; 
&lt;h2 id=&quot;stirling-pdf&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;pdf.d-rens.xyz&#x2F;&quot;&gt;stirling pdf&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;figure&gt;
  &lt;img src=&quot;&amp;#x2F;what-services-to-host&amp;#x2F;stirling.png&quot; alt=&quot;Screenshot of the stirling pdf interface&quot;&gt;
  &lt;figcaption&gt;&lt;strong&gt;&amp;#10551;&lt;&#x2F;strong&gt; Stirling pdf interface&lt;&#x2F;figcaption&gt;
&lt;&#x2F;figure&gt; 
&lt;h2 id=&quot;uptime-tracker-uptime-kama&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;status.d-rens.xyz&#x2F;status&#x2F;s&quot;&gt;uptime tracker (uptime kama)&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;figure&gt;
  &lt;img src=&quot;&amp;#x2F;what-services-to-host&amp;#x2F;stats.png&quot; alt=&quot;Screenshot of the uptime or stats page that also shows certificate expiration&quot;&gt;
  &lt;figcaption&gt;&lt;strong&gt;&amp;#10551;&lt;&#x2F;strong&gt; Uptime page&lt;&#x2F;figcaption&gt;
&lt;&#x2F;figure&gt; 
&lt;p&gt;Am thinking about hosting the following too:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;penpot&lt;&#x2F;li&gt;
&lt;li&gt;peertube (only for my videos, without other users, but there should be a simpler alternative available)&lt;&#x2F;li&gt;
&lt;li&gt;excalidraw&lt;&#x2F;li&gt;
&lt;li&gt;ntfy&lt;&#x2F;li&gt;
&lt;li&gt;…&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h2 id=&quot;for-whom-to-use&quot;&gt;for whom to use&lt;&#x2F;h2&gt;
&lt;p&gt;I will probably not promote them in any way, maybe just add the status page to
the blog but nothing more.&lt;&#x2F;p&gt;
&lt;p&gt;I don’t want to be accountable for them too much, so primarily I’ll use them
for myself and friends. E.g. to rearrange a pdf there are a lot of weird
programs and websites that make a shady impression, in that situation I’m glad
to just be able to tell a friend that they could use
&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;draw.d-rens.xyz&quot;&gt;draw.d-rens.xyz&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;p&gt;But feel free to use them too :).&lt;&#x2F;p&gt;
&lt;p&gt;Questions or idea: reach out at &lt;a href=&quot;&#x2F;about&quot;&gt;contact&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>Switching from pages.sr.ht to nginx on a VPS</title>
        <published>2025-01-28T00:00:00+00:00</published>
        <updated>2025-01-28T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/switching-from-sourcehut-pages-to-nginx-on-vps/"/>
        <id>https://d-rens.xyz/blog/switching-from-sourcehut-pages-to-nginx-on-vps/</id>
        
        <summary type="html">&lt;p&gt;On the 12th of December 24 I’ve written about switching from hugo to zola and
github pages to zola. Now around 1.5 months later I’ve done a further step and
changed from having the website hosted on sr.ht pages to hosting it myself on a
hetzner server with nginx in a more traditional matter. In the following I’ll
outline why and very shortly some words around it.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>1 - Emacs note taking inquiry</title>
        <published>2025-01-24T00:00:00+00:00</published>
        <updated>2025-01-24T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/rss-only-club/1-emacs-note-taking-inquiry/"/>
        <id>https://d-rens.xyz/rss-only-club/1-emacs-note-taking-inquiry/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/rss-only-club/1-emacs-note-taking-inquiry/">&lt;h1 id=&quot;am-thinking-about-taking-notes-with-emacs-could-need-advice&quot;&gt;am thinking about taking notes with emacs, could need advice&lt;&#x2F;h1&gt;
&lt;p&gt;Hey,&lt;&#x2F;p&gt;
&lt;p&gt;when I first started taking notes more seriously I just used neovim with vimtex
and that worked out pretty well.&lt;&#x2F;p&gt;
&lt;p&gt;Now it’s three years later and I think that basic notes should not necessarily
be compiled and there have to be more painfree ways.&lt;&#x2F;p&gt;
&lt;p&gt;Recently I have been dabbling with my doom emacs a little checking how well
that’d work and I do like the mix out of org&#x2F;TeX&#x2F;pdf-viewing and other features
like workspaces (which allows me to just save e.g. when I am taking notes on
slides and later restore it easily).&lt;&#x2F;p&gt;
&lt;p&gt;I’ve gotten recommended a video by &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;moksh.codeberg.page&#x2F;&quot;&gt;moksh&lt;&#x2F;a&gt; that
was about latex live previews in emacs and that did seem great, but I am sure
there are also a lot of things that I am hugely missing out on.&lt;&#x2F;p&gt;
&lt;p&gt;I estimate that some of you readers are much more familiar with emacs than I
am, so please let me know what your workflow with emacs is to take notes on
scientific topics (or anything with heavy math notation).&lt;&#x2F;p&gt;
&lt;p&gt;Reach out at &lt;a href=&quot;&#x2F;about&quot;&gt;contact&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>influence of caffeine</title>
        <published>2025-01-17T00:00:00+00:00</published>
        <updated>2025-01-17T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/notes/caffeine/"/>
        <id>https://d-rens.xyz/notes/caffeine/</id>
        
        <summary type="html">&lt;p&gt;Early october when I moved away from home to go to uni I did not have a coffee
machine, so I had to decide if I want to drink bad coffee or just stop.&lt;&#x2F;p&gt;
&lt;p&gt;Not wanting such a thing to have any influence on my heart rate and wake
schedule, I then decided to just quit.&lt;&#x2F;p&gt;
&lt;p&gt;As alternative I just went to black tea instead, which I soon realized can also
very easily affect one in the same way after 3-4 cups a day. So I stopped
consuming that too.&lt;&#x2F;p&gt;
&lt;p&gt;That was about 4 months ago. Today I had the little idea of just making a liter
of chai, when coming home exhausted from uni, with too much black tea to just
stay up and work on a programming assignment, but that only went mediocre.&lt;&#x2F;p&gt;
&lt;p&gt;It ended up making me rather agitated and I probably should’ve just gone to
sleep instead of trying to go around natural exhaustion.&lt;&#x2F;p&gt;
&lt;p&gt;I’m currently up and can’t sleep. That has it probably been then for the next
few months, won’t consume caffeine any time soon.&lt;&#x2F;p&gt;
&lt;p&gt;Thought it was rational to get away from caffeine for a longer time now but
when I tried the first time for a few days I’ve went through caffeine withdrawl
symptoms and had a light headache for a few days.&lt;&#x2F;p&gt;
&lt;p&gt;This time it has gone better and I’m glad I did that choice.&lt;&#x2F;p&gt;
&lt;p&gt;Sleep thanks me, heart-rate too.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Book review: Why We Sleep</title>
        <published>2025-01-15T00:00:00+00:00</published>
        <updated>2025-01-15T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/books/why-we-sleep/"/>
        <id>https://d-rens.xyz/books/why-we-sleep/</id>
        
        <summary type="html">&lt;h2 id=&quot;preface&quot;&gt;preface&lt;&#x2F;h2&gt;
&lt;p&gt;As you may have seen in the table already, this book represents a 10&#x2F;10 for me.
It did take me two years–or rather two attempts–to fully get through the
book, I’ve started in the summer of 2022 but didn’t get further than two
chapters and then in the spring of 2024 I’ve managed to finish it within a
week.&lt;&#x2F;p&gt;
&lt;p&gt;It is a very dense book initially and the first try I suppose I just wasn’t
ready for the rather scientific nature, but with reading through the chapters
it slowly dawned on me that the discussion of sleep is of utter importance to
basically anyone. And seeing the value in it I’ve started to pick up the
excitement Walker was able to encapsulate within his writing.&lt;&#x2F;p&gt;
&lt;p&gt;As in the last review I’ll lay down my notes and talk about some related things
and my ideas throughout them, and what’s left of my opinion and such will get
it’s related own section at the end to also be mentioned.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>problems with messaging and ideas to fix it</title>
        <published>2025-01-05T00:00:00+00:00</published>
        <updated>2025-01-05T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/notes/problems-with-messaging-and-ideas-to-fix-it/"/>
        <id>https://d-rens.xyz/notes/problems-with-messaging-and-ideas-to-fix-it/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/notes/problems-with-messaging-and-ideas-to-fix-it/">&lt;p&gt;One big achievement of the last century is perhaps the advancements in digital,
written, communication.&lt;&#x2F;p&gt;
&lt;p&gt;We went from the closest electronic form of communication being the telegraph
(at least I think so) to emails and from there further to instant messaging.&lt;&#x2F;p&gt;
&lt;p&gt;Those I’d say are the few big changes we’ve had in this period. But what else
changed?&lt;&#x2F;p&gt;
&lt;p&gt;We went from telegraphs having to be sent and received by a professional to then
be carried to you or sent by mail. Furthermore it was not available or normal
for the everyday people.&lt;&#x2F;p&gt;
&lt;p&gt;After some time of mails being available and personal computers being widespread
that was able to become a part of daily life even for the average people.&lt;&#x2F;p&gt;
&lt;p&gt;Then later with the introduction of instant messengers and social media that too
became a notable addition that the average people could use.&lt;&#x2F;p&gt;
&lt;p&gt;But one thing changed rapidly on this step, the inclining speed of communication
and the declining volume of content in the messages.&lt;&#x2F;p&gt;
&lt;p&gt;Instead of it being used for longer form communication, as how email
substituted written mail, it instead just substituted sms and written dialogue.&lt;&#x2F;p&gt;
&lt;p&gt;That also brings it to being used in exchange of talking, by having both parties
writing instant messages as if it were spoken which just makes the conversation
more tedious and slower than the alternative of actually speaking.&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;p&gt;Those were my initial thoughts on the topic, now I can come to the idea that
I’ve came here to share.&lt;&#x2F;p&gt;
&lt;p&gt;I think it would be reasonable to have receive and send times for emails and
instant messaging.&lt;&#x2F;p&gt;
&lt;p&gt;Due the volatility of those being different each with a fitting time.&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;Receiving instant messages each day at 17:00 and sending own ones out at 18:00.&lt;&#x2F;li&gt;
&lt;li&gt;Receiving and sending mails every 1. of the month or perhaps at the 1. and 15.&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;p&gt;Here you should obviously exempt personal matters such as friends or family
that are around you that could perhaps ask&#x2F;tell you things relevant within the
periods in which you’d be available (e.g. friend A asks you if you want to go
eat lunch with them or friend B asks you for help on an assignment that you
have to hand in at 15:00).&lt;&#x2F;p&gt;
&lt;p&gt;On the proposed way I imagine I’d much more consciously reply to messages and
more importantly have a designated time for it without being stressed about it
or waste to much time on it.&lt;&#x2F;p&gt;
&lt;p&gt;With instant messaging you occasionally fall into the trap of “wasting” hours
and with designated times:&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;People would get used to it and know until when to leave messages.&lt;&#x2F;li&gt;
&lt;li&gt;They’d write something more than “Hello” because there won’t instantly
be an answer to form a pseudo conversation.&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;hr &#x2F;&gt;
&lt;p&gt;Will spend some more time thinking on how to implement it, I do like the idea
in theory.&lt;&#x2F;p&gt;
&lt;p&gt;I would also be interested in your thoughts, feel free to reach out to me at
the mail &lt;a href=&quot;&#x2F;about&quot;&gt;here&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>2024 in review</title>
        <published>2024-12-31T00:00:00+00:00</published>
        <updated>2024-12-31T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/2024-in-review/"/>
        <id>https://d-rens.xyz/blog/2024-in-review/</id>
        
        <summary type="html">&lt;!-- # 2024 in review # --&gt;
&lt;p&gt;I never thought to much about years and them ending or starting, but for the
first time I retrospectively thought of it having been a good year.&lt;&#x2F;p&gt;
&lt;p&gt;So I might as well start documenting it for myself such that I can reconstruct a
timeline of what I did in years and at what points I was later.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Backup Considerations</title>
        <published>2024-12-30T00:00:00+00:00</published>
        <updated>2024-12-30T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/backup-considerations/"/>
        <id>https://d-rens.xyz/blog/backup-considerations/</id>
        
        <summary type="html">&lt;h2 id=&quot;preface&quot;&gt;preface&lt;&#x2F;h2&gt;
&lt;p&gt;The last few days I’ve been working and battling with my backups and other
recovery devices due to wanting to switch the main nvme drive on my thinkpad
t470 that I use daily.&lt;&#x2F;p&gt;
&lt;p&gt;It was a nice way to ensure recoverability of my whole system on imaginable
incidents that could happen, such as:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;device just dies&lt;&#x2F;li&gt;
&lt;li&gt;get robbed&lt;&#x2F;li&gt;
&lt;li&gt;device breaks&lt;&#x2F;li&gt;
&lt;li&gt;lose the device&lt;&#x2F;li&gt;
&lt;li&gt;drive corrupts&lt;&#x2F;li&gt;
&lt;li&gt;I enter a wrong command&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;In the following I go through thoughts and the process of what I’ll change now
to streamline the system to make it a faster recoverable and more reliant.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>little efforts that make life easier, eventually</title>
        <published>2024-12-29T00:00:00+00:00</published>
        <updated>2024-12-29T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/little-efforts-that-make-life-easier/"/>
        <id>https://d-rens.xyz/blog/little-efforts-that-make-life-easier/</id>
        
        <summary type="html">&lt;p&gt;There were some efforts I’ve done the last years that have repaid multiple
times by now, want to mention them here individually and talk some sentences
about them.&lt;&#x2F;p&gt;
&lt;p&gt;Order is as follows:&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;vim&lt;&#x2F;li&gt;
&lt;li&gt;tiling window managers&lt;&#x2F;li&gt;
&lt;li&gt;split keyboards&lt;&#x2F;li&gt;
&lt;li&gt;keyboard layouts&lt;&#x2F;li&gt;
&lt;li&gt;declarative operating systems (nixos)&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;p&gt;One last comment before starting, the order is taken from the order in which I
stumbeled upon them.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>distracting news</title>
        <published>2024-12-08T00:00:00+00:00</published>
        <updated>2024-12-08T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/notes/news/"/>
        <id>https://d-rens.xyz/notes/news/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/notes/news/">&lt;p&gt;For the last ~two years I’ve mostly exclusively consumed my news via RSS, chose
who I want to get my input from, in that way selected what my sources of
information will be, who to rely on.&lt;&#x2F;p&gt;
&lt;p&gt;There were some things I’ve noticed throughout the time and it was for once
that I’ve curated my own little bubble of people who share my opinion and then
later formed it.&lt;&#x2F;p&gt;
&lt;p&gt;If we take for example german politics I had two “voices” that I listened to
and got my information from, them being “blog.fefe.de” (tech&#x2F;pol blogger) and
“lage der nation” (trans. “situation of the nation”, podcast).&lt;&#x2F;p&gt;
&lt;p&gt;I would say of both of them that they have good and strong opinions on politics
and that’s good, the problem was that I have not.&lt;&#x2F;p&gt;
&lt;p&gt;From “fefe” I’ve heard of most news only hours after they happened and
remembered his funny comments and opinions on it. Didn’t understand what was
going on but that’s the part I got. And that’s still not the problem.&lt;&#x2F;p&gt;
&lt;p&gt;The problem then came to be when it came up in discussion with friends and I
thought I had a stance on it but I really had not, because I only knew a
opinion without knowing anything about how the guys I got it from got there.&lt;&#x2F;p&gt;
&lt;p&gt;And german politics here were only an example, it was pretty similar with tech
and other “areas of life”.&lt;&#x2F;p&gt;
&lt;p&gt;Then after I got busy and the RSS reader became a distraction I just shut it
down (as it was running on a server) and didn’t feel the need to have it back
yet, around two weeks later.&lt;&#x2F;p&gt;
&lt;p&gt;I like the idea of RSS, but if I’ll make it run again then I don’t want anybody
on there that influences me in any way and instead just use it to see what friends
are up to on their blogs.&lt;&#x2F;p&gt;
&lt;p&gt;Not taking in too many news or none at all on most days does not feel like a
loss to me. For the most part I really don’t care about what is happening and
then I don’t need to feed my brain with stimulating opinions and things to
worry about that I can not realistically influence.&lt;&#x2F;p&gt;
&lt;p&gt;It’s just useless for the most part.&lt;&#x2F;p&gt;
&lt;p&gt;I would like to know what you think on the topic or if you have insights that I
seem to have forgotten. Feel free to reach out if you have something to add. &lt;a href=&quot;&#x2F;about#contact&quot;&gt;contact&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>rewriting the website from hugo to zola</title>
        <published>2024-12-06T00:00:00+00:00</published>
        <updated>2024-12-06T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/rewriting-the-website-from-hugo-to-zola/"/>
        <id>https://d-rens.xyz/blog/rewriting-the-website-from-hugo-to-zola/</id>
        
        <summary type="html">&lt;p&gt;Hey, haven’t heard from me in a bit?&lt;&#x2F;p&gt;
&lt;p&gt;Was busy with rewriting this website, living life and taking care of another website project that will probably slowly be merged into this blog.&lt;&#x2F;p&gt;
&lt;p&gt;But in the meantime I spent some time on figuring out zola and using that instead of hugo.&lt;&#x2F;p&gt;
&lt;p&gt;I’ve gotten it recommended and not really getting hugo I thought there is not too much that can go wrong with trying to figure it out, so I did. In the following are some thoughts I had along the way, not just with hugo but also hosting the site.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Changing the Domain</title>
        <published>2024-04-13T00:00:00+00:00</published>
        <updated>2024-04-13T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/domain/"/>
        <id>https://d-rens.xyz/blog/domain/</id>
        
        <summary type="html">&lt;blockquote&gt;
&lt;p&gt;You probably already noticed if you’re here, the domain has changed from &lt;code&gt;https:&#x2F;&#x2F;d-rens.site&lt;&#x2F;code&gt; to &lt;code&gt;https:&#x2F;&#x2F;d-rens.xyz&lt;&#x2F;code&gt; on the 13th april 2024.&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;h2 id=&quot;why-switching-the-domain&quot;&gt;Why switching the domain?&lt;&#x2F;h2&gt;
&lt;p&gt;I have changed the domain for simple reasons.&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;Had the domain on namecheap and transfer to porkbun would’ve cost ~$20.&lt;&#x2F;li&gt;
&lt;li&gt;The domain renewal (with .site) also cost $23, after the first year cost $1.96.&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Handwritten Notes</title>
        <published>2024-04-01T00:00:00+00:00</published>
        <updated>2024-04-01T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/handwritten-notes/"/>
        <id>https://d-rens.xyz/blog/handwritten-notes/</id>
        
        <summary type="html">&lt;h2 id=&quot;preamble&quot;&gt;preamble&lt;&#x2F;h2&gt;
&lt;p&gt;The last few weeks I’ve had to do a lot of learning for mathematics, that means
just solving and trying to understand tasks around six hours day (afterwards
the brain stops working). But that has brought me to an issue of the notes I’ve
taken by hand. So time has come to rethink another part of my workflow.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Review: Night Falls Fast</title>
        <published>2024-02-09T00:00:00+00:00</published>
        <updated>2024-02-09T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/books/night-falls-fast/"/>
        <id>https://d-rens.xyz/books/night-falls-fast/</id>
        
        <summary type="html">&lt;p&gt;Certainly one of the most interesting books I’ve read lately. It’s an issue I fortunately have no experience with but felt the urge to know more about. The author tries to make clear, once the stigma on mental illness and as a colloraly suicide is not as bad anymore in society, then life would be a lot better for those in need.&lt;&#x2F;p&gt;
&lt;p&gt;It is not a problem such as a lethal illness, there is help. And if society gets educated on it then we are able to help those in need and stop the current suicide epidemic.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Review: Stiller</title>
        <published>2024-02-09T00:00:00+00:00</published>
        <updated>2024-02-09T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/books/stiller/"/>
        <id>https://d-rens.xyz/books/stiller/</id>
        
        <summary type="html">&lt;p&gt;Refreshingly different read, the book is made out of six diaries of the protagonist “Stiller” and one of his prosecutor which became friends over the period of his condemnation.&lt;&#x2F;p&gt;
&lt;p&gt;Stiller does not think he is the Swiss Stiller, but an American citizen instead.
During his diaries he finds out about Stiller while beliefing that is a totally foreign guy to him.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Review: Technofeudalism</title>
        <published>2024-02-09T00:00:00+00:00</published>
        <updated>2024-02-09T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/books/technofeudalism/"/>
        <id>https://d-rens.xyz/books/technofeudalism/</id>
        
        <summary type="html">&lt;p&gt;Enjoyed this one very much. Thesis is that capitalism has ended and we are now in the system of “Technofeudalism”. The feudal lord being big tech companies and the serfs e.g. users of their services. Novel thoughts, well written, guided in a discussion between Varoufakis and his dad.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Keyboard Layout</title>
        <published>2024-01-23T00:00:00+00:00</published>
        <updated>2024-01-23T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/layout/"/>
        <id>https://d-rens.xyz/blog/layout/</id>
        
        <summary type="html">&lt;h1 id=&quot;step-one-realisation&quot;&gt;Step One – Realisation&lt;&#x2F;h1&gt;
&lt;p&gt;Having typed all my life on qwerty or qwertz I got used to it. I got into
practising typing to gain speed and accuracy, towards the end I averaged around
90 words per minute (wpm) and had a accuracy of &amp;gt;95%.&lt;&#x2F;p&gt;
&lt;p&gt;But at some point I got fed up with it, why did I still use the normal layout?
That has no reason for existing any more and that after I have switched to
a tiling-window-manager, vim and countless other things, just to get the last
seconds off the clock and have the computer do whatever I want it to do as
fast as possible.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Programs</title>
        <published>2024-01-13T00:00:00+00:00</published>
        <updated>2024-01-13T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/programs/"/>
        <id>https://d-rens.xyz/programs/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/programs/">&lt;h2 id=&quot;short-version&quot;&gt;short version&lt;&#x2F;h2&gt;
&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;name&lt;&#x2F;th&gt;&lt;th&gt;usecase&lt;&#x2F;th&gt;&lt;&#x2F;tr&gt;&lt;&#x2F;thead&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;neovim&lt;&#x2F;td&gt;&lt;td&gt;text editor&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;emacs&lt;&#x2F;td&gt;&lt;td&gt;text editor&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;yazi&lt;&#x2F;td&gt;&lt;td&gt;tui file browser&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;fish&lt;&#x2F;td&gt;&lt;td&gt;shell&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;sops&lt;&#x2F;td&gt;&lt;td&gt;secret management&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;anki&lt;&#x2F;td&gt;&lt;td&gt;flashcards&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;LaTeX&lt;&#x2F;td&gt;&lt;td&gt;creating documents&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;xournalpp&lt;&#x2F;td&gt;&lt;td&gt;handwritten notes&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;firefox&lt;&#x2F;td&gt;&lt;td&gt;mostly distraction free browser&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;neomutt&lt;&#x2F;td&gt;&lt;td&gt;email&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;thunderbird&lt;&#x2F;td&gt;&lt;td&gt;more mail&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;iamb&lt;&#x2F;td&gt;&lt;td&gt;matrix&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;mpd&#x2F;ncmpcpp&lt;&#x2F;td&gt;&lt;td&gt;music&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;sioyek&lt;&#x2F;td&gt;&lt;td&gt;pdf reader&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;rofi&lt;&#x2F;td&gt;&lt;td&gt;application launcher&#x2F;scripts&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;alacritty&lt;&#x2F;td&gt;&lt;td&gt;terminal emulator&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;croc&lt;&#x2F;td&gt;&lt;td&gt;file sharing&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;syncthing&lt;&#x2F;td&gt;&lt;td&gt;file synchronising&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;keepass&lt;&#x2F;td&gt;&lt;td&gt;password managing&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;keyd&lt;&#x2F;td&gt;&lt;td&gt;remapping keys&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;nixos&lt;&#x2F;td&gt;&lt;td&gt;operating system&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;nix shell&lt;&#x2F;td&gt;&lt;td&gt;testing programs or using them only once&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;hyprland&lt;&#x2F;td&gt;&lt;td&gt;window manager&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;waybar&lt;&#x2F;td&gt;&lt;td&gt;bar inside of window manager&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;stylix&lt;&#x2F;td&gt;&lt;td&gt;styling&#x2F;colors&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;borg&lt;&#x2F;td&gt;&lt;td&gt;backups&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;&#x2F;tbody&gt;&lt;&#x2F;table&gt;
&lt;h2 id=&quot;long-version&quot;&gt;long version&lt;&#x2F;h2&gt;
&lt;h3 id=&quot;text-editors&quot;&gt;text editors&lt;&#x2F;h3&gt;
&lt;h4 id=&quot;neovim&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:github.com&#x2F;neovim&#x2F;neovim&quot;&gt;neovim&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;I use neovim due to its extensibility and minimalistic nature. As long as you don’t open 200MB files it will be quick.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nvim&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nvim&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;h4 id=&quot;doom-emacs&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;doomemacs&#x2F;doomemacs&quot;&gt;(doom) emacs&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;hr &#x2F;&gt;
&lt;h3 id=&quot;operating-system&quot;&gt;operating system&lt;&#x2F;h3&gt;
&lt;h4 id=&quot;nixos&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;nixos.org&quot;&gt;nixOS&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;nixOS is used for various reasons, I have yet not managed to bring all my excitement about it in text. It offered me a lot of possibilities to learn new things that I otherwise would never have come across (such as secret management, remote deployment, functional programming languages, etc.).&lt;&#x2F;p&gt;
&lt;p&gt;It is objectively the better way to manage operating system configurations and the deployment of it.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;h3 id=&quot;window-manager&quot;&gt;window manager&lt;&#x2F;h3&gt;
&lt;h4 id=&quot;hyprland&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;hyprland.org&#x2F;&quot;&gt;hyprland&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;My WM timeline is bspwm -&amp;gt; dwm -&amp;gt; sway -&amp;gt; hyprland.
Hyprland just seems to be a modern and foremost wayland based window manager that works great and seems to be the future for now.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;wayland&#x2F;hypr.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;wayland&#x2F;hypr.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;h4 id=&quot;waybar&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;Alexays&#x2F;Waybar&quot;&gt;waybar&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Waybar is just a primitive bar that does its job, it works well, but I wouldn’t say that I love it.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;wayland&#x2F;waybar&#x2F;oscarcp&#x2F;default.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;wayland&#x2F;waybar&#x2F;oscarcp&#x2F;default.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;h4 id=&quot;stylix&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;danth&#x2F;stylix&quot;&gt;stylix&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Stylix uses nixOS’ declarative way to manage all your colors, opacities and fonts of all your programs at once, it’s most useful when you don’t have the time to “rice” your system.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;hosts&#x2F;common&#x2F;optional&#x2F;desktop&#x2F;stylix&#x2F;default.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;hosts&#x2F;common&#x2F;optional&#x2F;desktop&#x2F;stylix&#x2F;default.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;h3 id=&quot;security&quot;&gt;security&lt;&#x2F;h3&gt;
&lt;h4 id=&quot;borgbackup&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;www.borgbackup.org&#x2F;&quot;&gt;borgbackup&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Borg does deduplicated backups, it works well and I run it on all my UNIX systems reliably.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;hosts&#x2F;common&#x2F;optional&#x2F;borg.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;hosts&#x2F;common&#x2F;optional&#x2F;borg.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;h4 id=&quot;sops&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;getsops&#x2F;sops&quot;&gt;sops&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Sops does secret management for me to access credentials across my nixOS configuration that are encrypted with age encryption.
&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;Mic92&#x2F;sops-nix&quot;&gt;sops-nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;h4 id=&quot;keepassxc&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;keepassxc.org&#x2F;&quot;&gt;keepassxc&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Keypass just takes care of my passwords in a single, encrypted file. It works well and reliably, all the things one would want from a password manager.&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;h3 id=&quot;file-sharing&quot;&gt;file sharing&lt;&#x2F;h3&gt;
&lt;h4 id=&quot;syncthing&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;syncthing.net&#x2F;&quot;&gt;syncthing&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Syncthing synchronices folders across the devices you tell it to via the local network you are in.&lt;&#x2F;p&gt;
&lt;p&gt;I use it to synchronice my keepass database, books, papers, music and much else between my devices without having to worry much about cloud storage or a man in the middle.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;hosts&#x2F;common&#x2F;optional&#x2F;desktop&#x2F;syncthing.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;hosts&#x2F;common&#x2F;optional&#x2F;desktop&#x2F;syncthing.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;h4 id=&quot;croc&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;schollz&#x2F;croc&quot;&gt;croc&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Croc does file-sharing not locally but encrypted via a server of theirs or something like that.
You can just use `croc send &amp;lt;file&amp;gt;` and get back a code like `0384-here-three-words` that the other party is then able to enter within their croc to receive the file.&lt;&#x2F;p&gt;
&lt;p&gt;Very handy when you need to send something to a friend and don’t want to have the hassle of uploading it to a messanger and can instead just do it within the terminal.&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;h3 id=&quot;shell-and-terminal&quot;&gt;shell and terminal&lt;&#x2F;h3&gt;
&lt;h4 id=&quot;alacritty&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;alacritty&#x2F;alacritty&quot;&gt;alacritty&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Alacritty is one of my “just works” programs. It feels fast and I don’t need a terminal to do any more than letting me write things in it. At the end it’s tmux’ job to multiplex or tab, not the terminals.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;terminal.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;terminal.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;h4 id=&quot;fish&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;fishshell.com&#x2F;&quot;&gt;fish&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;After years of having some hundred lines zsh configs in a weird format I came to the result of “that ain’t it” and seeing &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;ersei.net&quot;&gt;ersei&lt;&#x2F;a&gt; using it on their blog I gave it a try.
It’s made to be usable and has by far the best vi-mode on the shells that I’ve tested. It won’t be as minimal as bash or a plain zsh, but it’s just nicely made and fun to use.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;core&#x2F;fish.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;core&#x2F;fish.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;h3 id=&quot;qol-improvement-apps&quot;&gt;QOL improvement apps&lt;&#x2F;h3&gt;
&lt;h4 id=&quot;keyd&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rvaiya&#x2F;keyd&quot;&gt;keyd&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Due to using an alternative keyboard layout I also need some program to remap my things there and keyd seems to be the best solution I’ve found yet. It allows other things next to remapping too, such as combos if I remember correctly, but I have not yet tried that.&lt;&#x2F;p&gt;
&lt;p&gt;It’s a systemd service that starts very early in the booting process and that way I sadly can not unlock my encrypted disk with it, but already login with the different layout.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;hosts&#x2F;common&#x2F;optional&#x2F;desktop&#x2F;keyd.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;hosts&#x2F;common&#x2F;optional&#x2F;desktop&#x2F;keyd.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;h4 id=&quot;nix-shell&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;nixos.wiki&#x2F;wiki&#x2F;Development_environment_with_nix-shell&quot;&gt;nix shell&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;hr &#x2F;&gt;
&lt;h3 id=&quot;productivity&quot;&gt;productivity&lt;&#x2F;h3&gt;
&lt;h4 id=&quot;flashcards&quot;&gt;flashcards&lt;&#x2F;h4&gt;
&lt;!--list-separator--&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;ankitects&#x2F;anki&quot;&gt;anki&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Anki is the only good flashcard solution that I trust. It’s open source, has a nice community and just works.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h4 id=&quot;document-writing-reading&quot;&gt;document writing &#x2F; reading&lt;&#x2F;h4&gt;
&lt;!--list-separator--&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;www.latex-project.org&#x2F;about&#x2F;&quot;&gt;LaTeX&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;LaTeX is used for document writing because&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;i can write it in nvim&lt;&#x2F;li&gt;
&lt;li&gt;it seems great by standard&lt;&#x2F;li&gt;
&lt;li&gt;every solution to problems I could face already exist&lt;&#x2F;li&gt;
&lt;li&gt;community is cool&lt;&#x2F;li&gt;
&lt;li&gt;makes typesetting math easy&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;!--list-separator--&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;sioyek.info&#x2F;&quot;&gt;sioyek&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;About sioyek I’ve gathered my thoughts in &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;youtu.be&#x2F;--H_DPhu1Ug&quot;&gt;this video&lt;&#x2F;a&gt;, it’s a more modern version of zathura to me, a program that I once loved, and just does a lot of things right.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;pdf.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;pdf.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h4 id=&quot;handwriting&quot;&gt;handwriting&lt;&#x2F;h4&gt;
&lt;!--list-separator--&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;xournalpp&#x2F;xournalpp&quot;&gt;xournalpp&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Xournalpp is for now the only good program I’ve come across when it comes to handwriting notes with a graphical tablet or a tablet-laptop.
Just works, is reliable and fast.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;academia&#x2F;xournalpp&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;academia&#x2F;xournalpp&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;hr &#x2F;&gt;
&lt;h3 id=&quot;communicating&quot;&gt;communicating&lt;&#x2F;h3&gt;
&lt;h4 id=&quot;iamb&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;iamb.chat&#x2F;&quot;&gt;iamb&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Pleasant TUI matrix client written in rust with vim bindings.&lt;&#x2F;p&gt;
&lt;h4 id=&quot;neomutt-abook&quot;&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;neomutt&#x2F;neomutt&quot;&gt;neomutt&lt;&#x2F;a&gt; &#x2F; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;hhirsch&#x2F;abook&quot;&gt;abook&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Neomutt is one of the programs that I was in love with since I saw them and still am. It is a terminal-ui based email program that works in conjunction with different nice tools such that it makes emailing a great experience.&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;Contacts are in &lt;strong&gt;abook&lt;&#x2F;strong&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;mbsync&lt;&#x2F;strong&gt; does the imap&#x2F;smpt things for me&lt;&#x2F;li&gt;
&lt;li&gt;emails are written in &lt;strong&gt;neovim&lt;&#x2F;strong&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;isync&lt;&#x2F;strong&gt; allows me to read and write mails offline&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;notmuch&lt;&#x2F;strong&gt; could do the indexing&lt;&#x2F;li&gt;
&lt;li&gt;etc.&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;You get the point, it makes writing mails very easy and fast compared to having to use thunderbird, a web program or anything that does not allow you to write them in neovim.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;mail&#x2F;default.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;mail&#x2F;default.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;h3 id=&quot;else&quot;&gt;else&lt;&#x2F;h3&gt;
&lt;h4 id=&quot;browsing-firefox-with-good-config&quot;&gt;Browsing: firefox &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;firefox&quot;&gt;(with good config)&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;I initially switched to firefox because I found chrome became horrible but now since then there have a lot of reasons come on top of it, which are:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;being able to adjust the recommended search items. Have trimmed that to a minimum, nothing else than my 3 bookmarks are recommended when I search for something.&lt;&#x2F;li&gt;
&lt;li&gt;search engines, such that i can make e.g. `@ar` to make a search `@ar test` query arxiv.org for test.&lt;&#x2F;li&gt;
&lt;li&gt;I can declare the whole config in nixos-homemanager to not have to use a firefox account to keep track of my settings, etc.&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;firefox&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;firefox&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;h4 id=&quot;music-mpd-with-ncmpcpp&quot;&gt;Music: &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;MusicPlayerDaemon&#x2F;MPD&quot;&gt;mpd&lt;&#x2F;a&gt; with &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;ncmpcpp&#x2F;ncmpcpp&quot;&gt;ncmpcpp&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Got this off of luke smith, it’s a nice setup to listen to local music with. It also includes a good tag editor in ncmpcpp that makes managing a local collection easier.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;mpd&lt;&#x2F;strong&gt; here is the music player daemon and &lt;strong&gt;ncmpcpp&lt;&#x2F;strong&gt; is a client for mpd.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;music.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;music.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;h4 id=&quot;application-launcher-rofi&quot;&gt;Application launcher: &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;davatorium&#x2F;rofi&quot;&gt;rofi&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Used dmenu before and loved it but rofi is fine too, switched to it when going to wayland.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;my config:&lt;&#x2F;em&gt; &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;rofi.nix&quot;&gt;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&#x2F;tree&#x2F;master&#x2F;item&#x2F;home&#x2F;common&#x2F;optional&#x2F;rofi.nix&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>Dactyl</title>
        <published>2023-10-10T00:00:00+00:00</published>
        <updated>2023-10-10T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/dactyl/"/>
        <id>https://d-rens.xyz/blog/dactyl/</id>
        
        <summary type="html">&lt;h1 id=&quot;the-dactyl-experience&quot;&gt;The Dactyl Experience&lt;&#x2F;h1&gt;
&lt;figure&gt;
  &lt;img src=&quot;&amp;#x2F;dactyl&amp;#x2F;oben-crop.webp&quot; alt=&quot;A picture taken from above of the finished split keyboard, being on the desk.&quot;&gt;
  &lt;figcaption&gt;&lt;strong&gt;&amp;#10551;&lt;&#x2F;strong&gt; figure 1: picture of the finished keyboard&lt;&#x2F;figcaption&gt;
&lt;&#x2F;figure&gt; 
&lt;h2 id=&quot;preface&quot;&gt;Preface&lt;&#x2F;h2&gt;
&lt;p&gt;During the last days and weeks I’ve spend some of my time soldering,
configuring and figuring about a dactyl keyboard. Now it is done and I can now
type much more ergonimic and better than I could before, in the following I
will talk about the process and maybe you can get something out of it :).&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Workflow (2023)</title>
        <published>2023-07-26T00:00:00+00:00</published>
        <updated>2023-07-26T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/workflow/"/>
        <id>https://d-rens.xyz/blog/workflow/</id>
        
        <summary type="html">&lt;h1 id=&quot;about-the-setup&quot;&gt;About the setup&lt;&#x2F;h1&gt;
&lt;p&gt;The goal of the workflow is to be ever evolving to be more efficient and
useful. The main application of it is to write LaTeX documents, manage references,
figures, etc. So that one does not need to think about it anymore but
has a good experience using it and the optimal output.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>Rss</title>
        <published>2023-07-18T00:00:00+00:00</published>
        <updated>2023-07-18T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/blog/rss/"/>
        <id>https://d-rens.xyz/blog/rss/</id>
        
        <summary type="html">&lt;p&gt;In times of constant notifications, information and news it is hard to keep up
with your actual interest.&lt;&#x2F;p&gt;</summary>
        
    </entry>
    <entry xml:lang="en">
        <title>About</title>
        <published>0000-01-01T00:00:00+00:00</published>
        <updated>0000-01-01T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/about/"/>
        <id>https://d-rens.xyz/about/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/about/">&lt;p&gt;Hello, I’m daniel, currently CS student at the KIT Karlsruhe.&lt;&#x2F;p&gt;
&lt;p&gt;On the &lt;a href=&quot;&#x2F;blog&quot;&gt;blog&lt;&#x2F;a&gt; I keep track of the projects. To be able to share
thoughts with people and help out people who are trying to do the similar ones.&lt;&#x2F;p&gt;
&lt;p&gt;Generally I have the heuristic that if I’ve spent a lot of time learning
something or have gained an understanding of it that I do have the obligation
to share it. If something was too hard for me to understand with the given
resources to then make the resource that I’d have wanted.&lt;&#x2F;p&gt;
&lt;p&gt;I spend too much on my time on configuring and figuring Linux, you can find my
nixOS dotfiles &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;git.sr.ht&#x2F;~d-rens&#x2F;nixos-dotfiles&quot;&gt;on sourcehut&lt;&#x2F;a&gt; and
the programs I use &lt;a href=&quot;&#x2F;programs&quot;&gt;here&lt;&#x2F;a&gt; but that may be out of date, check the
date when it was last changed .&lt;&#x2F;p&gt;
&lt;p&gt;You can get the CV upon request.&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;h2 id=&quot;contact&quot;&gt;contact&lt;&#x2F;h2&gt;
&lt;p&gt;You can reach out to me here:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;daniel[∂]d-rens.xyz.&lt;&#x2F;code&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;code&gt;@d-rens:tchncs.de&lt;&#x2F;code&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;To use PGP get my &lt;a href=&quot;..&#x2F;d-rens.asc&quot;&gt;public key here&lt;&#x2F;a&gt; or:&lt;&#x2F;p&gt;
&lt;pre&gt;&lt;code data-lang=&quot;sh&quot;&gt;curl -sL https:&#x2F;&#x2F;d-rens.xyz&#x2F;d-rens.asc | gpg --import
&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;p&gt;fingerprint: &lt;code&gt;F0F7 08E2 ED28 1B48 DF26 A213 DCF6 0F08 282A DCB9&lt;&#x2F;code&gt;&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;h2 id=&quot;friends-blog-recommendations&quot;&gt;friends &#x2F; blog recommendations&lt;&#x2F;h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;pwned.place&#x2F;&quot;&gt;pwned.place&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;erikz.xyz&#x2F;&quot;&gt;erik&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;em&gt;too few friends have websites, smh&lt;&#x2F;em&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h3 id=&quot;exozy-me&quot;&gt;exozy.me&lt;&#x2F;h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;unnamed.website&quot;&gt;anthony, unnamed.website&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;daudix.one&#x2F;&quot;&gt;daudix&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;ersei.net&quot;&gt;ersei.net&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;www.1a-insec.net&#x2F;&quot;&gt;iacore&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;slightknack.dev&quot;&gt;isaac clayton&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;moksh.codeberg.page&#x2F;&quot;&gt;moksh&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;loang.net&#x2F;~vnpower&#x2F;&quot;&gt;vnpower&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h3 id=&quot;don-t-know-personally&quot;&gt;don’t know personally&lt;&#x2F;h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;lukesmith.xyz&quot;&gt;luke smith&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;castel.dev&#x2F;&quot;&gt;giles castel (✝2022)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>legal</title>
        <published>0000-01-01T00:00:00+00:00</published>
        <updated>0000-01-01T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Daniel
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://d-rens.xyz/legal/"/>
        <id>https://d-rens.xyz/legal/</id>
        
        <content type="html" xml:base="https://d-rens.xyz/legal/">&lt;h1 id=&quot;privacy&quot;&gt;privacy&lt;&#x2F;h1&gt;
&lt;p&gt;This website is hosted with the standard configuration of nginx. That should
mean that it saves all requests if successful or not for 14 days before they get
deleted.&lt;&#x2F;p&gt;
&lt;p&gt;I do not sell nor save them.&lt;&#x2F;p&gt;
&lt;h1 id=&quot;copyright&quot;&gt;copyright&lt;&#x2F;h1&gt;
&lt;p&gt;All content is copyrighted by me under the CC-BY-SA 4.0. Full copyright text is
reproduced below:&lt;&#x2F;p&gt;
&lt;h2 id=&quot;creative-commons-attribution-sharealike-4-0-international&quot;&gt;Creative Commons Attribution-ShareAlike 4.0 International&lt;&#x2F;h2&gt;
&lt;p&gt;Creative Commons Corporation (“Creative Commons”) is not a law firm and does
not provide legal services or legal advice. Distribution of Creative Commons
public licenses does not create a lawyer-client or other relationship. Creative
Commons makes its licenses and related information available on an “as-is”
basis. Creative Commons gives no warranties regarding its licenses, any
material licensed under their terms and conditions, or any related information.
Creative Commons disclaims all liability for damages resulting from their use
to the fullest extent possible.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;Using Creative Commons Public Licenses&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Creative Commons public licenses provide a standard set of terms and conditions
that creators and other rights holders may use to share original works of
authorship and other material subject to copyright and certain other rights
specified in the public license below. The following considerations are for
informational purposes only, are not exhaustive, and do not form part of our
licenses.&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Considerations for licensors:&lt;&#x2F;strong&gt; Our public licenses are intended for use by
those authorized to give the public permission to use material in ways
otherwise restricted by copyright and certain other rights. Our licenses are
irrevocable. Licensors should read and understand the terms and conditions of
the license they choose before applying it. Licensors should also secure all
rights necessary before applying our licenses so that the public can reuse
the material as expected. Licensors should clearly mark any material not
subject to the license. This includes other CC-licensed material, or material
used under an exception or limitation to copyright. &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;http:&#x2F;&#x2F;wiki.creativecommons.org&#x2F;Considerations_for_licensors_and_licensees#Considerations_for_licensors&quot;&gt;More considerations for
licensors&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Considerations for the public:&lt;&#x2F;strong&gt; By using one of our public licenses, a
licensor grants the public permission to use the licensed material under
specified terms and conditions. If the licensor’s permission is not necessary
for any reason–for example, because of any applicable exception or limitation
to copyright–then that use is not regulated by the license. Our licenses
grant only permissions under copyright and certain other rights that a
licensor has authority to grant. Use of the licensed material may still
be restricted for other reasons, including because others have copyright
or other rights in the material. A licensor may make special requests,
such as asking that all changes be marked or described. Although not
required by our licenses, you are encouraged to respect those requests
where reasonable. &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;http:&#x2F;&#x2F;wiki.creativecommons.org&#x2F;Considerations_for_licensors_and_licensees#Considerations_for_licensees&quot;&gt;More considerations for the
public&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h2 id=&quot;creative-commons-attribution-sharealike-4-0-international-public-license&quot;&gt;Creative Commons Attribution-ShareAlike 4.0 International Public License&lt;&#x2F;h2&gt;
&lt;p&gt;By exercising the Licensed Rights (defined below), You accept and agree to be
bound by the terms and conditions of this Creative Commons
Attribution-ShareAlike 4.0 International Public License (“Public License”). To
the extent this Public License may be interpreted as a contract, You are
granted the Licensed Rights in consideration of Your acceptance of these terms
and conditions, and the Licensor grants You such rights in consideration of
benefits the Licensor receives from making the Licensed Material available
under these terms and conditions.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;section-1-definitions&quot;&gt;Section 1 – Definitions.&lt;&#x2F;h3&gt;
&lt;p&gt;a. &lt;strong&gt;Adapted Material&lt;&#x2F;strong&gt; means material subject to Copyright and Similar Rights
that is derived from or based upon the Licensed Material and in which the
Licensed Material is translated, altered, arranged, transformed, or otherwise
modified in a manner requiring permission under the Copyright and Similar
Rights held by the Licensor. For purposes of this Public License, where the
Licensed Material is a musical work, performance, or sound recording, Adapted
Material is always produced where the Licensed Material is synched in timed
relation with a moving image.&lt;&#x2F;p&gt;
&lt;p&gt;b. &lt;strong&gt;Adapter’s License&lt;&#x2F;strong&gt; means the license You apply to Your Copyright and
Similar Rights in Your contributions to Adapted Material in accordance with the
terms and conditions of this Public License.&lt;&#x2F;p&gt;
&lt;p&gt;c. &lt;strong&gt;BY-SA Compatible License&lt;&#x2F;strong&gt; means a license listed at
&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;http:&#x2F;&#x2F;creativecommons.org&#x2F;compatiblelicenses&quot;&gt;creativecommons.org&#x2F;compatiblelicenses&lt;&#x2F;a&gt;,
approved by Creative Commons as essentially the equivalent of this Public
License.&lt;&#x2F;p&gt;
&lt;p&gt;d. &lt;strong&gt;Copyright and Similar Rights&lt;&#x2F;strong&gt; means copyright and&#x2F;or similar rights
closely related to copyright including, without limitation, performance,
broadcast, sound recording, and Sui Generis Database Rights, without regard to
how the rights are labeled or categorized. For purposes of this Public License,
the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar
Rights.&lt;&#x2F;p&gt;
&lt;p&gt;e. &lt;strong&gt;Effective Technological Measures&lt;&#x2F;strong&gt; means those measures that, in the
absence of proper authority, may not be circumvented under laws fulfilling
obligations under Article 11 of the WIPO Copyright Treaty adopted on December
20, 1996, and&#x2F;or similar international agreements.&lt;&#x2F;p&gt;
&lt;p&gt;f. &lt;strong&gt;Exceptions and Limitations&lt;&#x2F;strong&gt; means fair use, fair dealing, and&#x2F;or any
other exception or limitation to Copyright and Similar Rights that applies to
Your use of the Licensed Material.&lt;&#x2F;p&gt;
&lt;p&gt;g. &lt;strong&gt;License Elements&lt;&#x2F;strong&gt; means the license attributes listed in the name of a
Creative Commons Public License. The License Elements of this Public License
are Attribution and ShareAlike.&lt;&#x2F;p&gt;
&lt;p&gt;h. &lt;strong&gt;Licensed Material&lt;&#x2F;strong&gt; means the artistic or literary work, database, or
other material to which the Licensor applied this Public License.&lt;&#x2F;p&gt;
&lt;p&gt;i. &lt;strong&gt;Licensed Rights&lt;&#x2F;strong&gt; means the rights granted to You subject to the terms and
conditions of this Public License, which are limited to all Copyright and
Similar Rights that apply to Your use of the Licensed Material and that the
Licensor has authority to license.&lt;&#x2F;p&gt;
&lt;p&gt;j. &lt;strong&gt;Licensor&lt;&#x2F;strong&gt; means the individual(s) or entity(ies) granting rights under
this Public License.&lt;&#x2F;p&gt;
&lt;p&gt;k. &lt;strong&gt;Share&lt;&#x2F;strong&gt; means to provide material to the public by any means or process
that requires permission under the Licensed Rights, such as reproduction,
public display, public performance, distribution, dissemination, communication,
or importation, and to make material available to the public including in ways
that members of the public may access the material from a place and at a time
individually chosen by them.&lt;&#x2F;p&gt;
&lt;p&gt;l. &lt;strong&gt;Sui Generis Database Rights&lt;&#x2F;strong&gt; means rights other than copyright resulting
from Directive 96&#x2F;9&#x2F;EC of the European Parliament and of the Council of 11
March 1996 on the legal protection of databases, as amended and&#x2F;or succeeded,
as well as other essentially equivalent rights anywhere in the world.&lt;&#x2F;p&gt;
&lt;p&gt;m. &lt;strong&gt;You&lt;&#x2F;strong&gt; means the individual or entity exercising the Licensed Rights under
this Public License. &lt;strong&gt;Your&lt;&#x2F;strong&gt; has a corresponding meaning.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;section-2-scope&quot;&gt;Section 2 – Scope.&lt;&#x2F;h3&gt;
&lt;p&gt;a. &lt;em&gt;&lt;strong&gt;License grant.&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Subject to the terms and conditions of this Public License, the Licensor
hereby grants You a worldwide, royalty-free, non-sublicensable,
non-exclusive, irrevocable license to exercise the Licensed Rights in the
Licensed Material to:&lt;&#x2F;p&gt;
&lt;p&gt;A. reproduce and Share the Licensed Material, in whole or in part; and&lt;&#x2F;p&gt;
&lt;p&gt;B. produce, reproduce, and Share Adapted Material.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Exceptions and Limitations.&lt;&#x2F;strong&gt; For the avoidance of doubt, where
Exceptions and Limitations apply to Your use, this Public License does not
apply, and You do not need to comply with its terms and conditions.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Term.&lt;&#x2F;strong&gt; The term of this Public License is specified in Section 6(a).&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Media and formats; technical modifications allowed.&lt;&#x2F;strong&gt; The Licensor
authorizes You to exercise the Licensed Rights in all media and formats
whether now known or hereafter created, and to make technical modifications
necessary to do so. The Licensor waives and&#x2F;or agrees not to assert any
right or authority to forbid You from making technical modifications
necessary to exercise the Licensed Rights, including technical modifications
necessary to circumvent Effective Technological Measures. For purposes of
this Public License, simply making modifications authorized by this Section
2(a)(4) never produces Adapted Material.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Downstream recipients.&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;A. &lt;strong&gt;Offer from the Licensor – Licensed Material.&lt;&#x2F;strong&gt; Every recipient of
the Licensed Material automatically receives an offer from the Licensor
to exercise the Licensed Rights under the terms and conditions of this
Public License.&lt;&#x2F;p&gt;
&lt;p&gt;B. &lt;strong&gt;Additional offer from the Licensor – Adapted Material.&lt;&#x2F;strong&gt; Every
recipient of Adapted Material from You automatically receives an offer
from the Licensor to exercise the Licensed Rights in the Adapted
Material under the conditions of the Adapter’s License You apply.&lt;&#x2F;p&gt;
&lt;p&gt;C. &lt;strong&gt;No downstream restrictions.&lt;&#x2F;strong&gt; You may not offer or impose any
additional or different terms or conditions on, or apply any Effective
Technological Measures to, the Licensed Material if doing so restricts
exercise of the Licensed Rights by any recipient of the Licensed
Material.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;No endorsement.&lt;&#x2F;strong&gt; Nothing in this Public License constitutes or may be
construed as permission to assert or imply that You are, or that Your use of
the Licensed Material is, connected with, or sponsored, endorsed, or granted
official status by, the Licensor or others designated to receive attribution
as provided in Section 3(a)(1)(A)(i).&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;p&gt;b. &lt;em&gt;&lt;strong&gt;Other rights.&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Moral rights, such as the right of integrity, are not licensed under this
Public License, nor are publicity, privacy, and&#x2F;or other similar personality
rights; however, to the extent possible, the Licensor waives and&#x2F;or agrees
not to assert any such rights held by the Licensor to the limited extent
necessary to allow You to exercise the Licensed Rights, but not otherwise.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;Patent and trademark rights are not licensed under this Public License.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;To the extent possible, the Licensor waives any right to collect
royalties from You for the exercise of the Licensed Rights, whether directly
or through a collecting society under any voluntary or waivable statutory or
compulsory licensing scheme. In all other cases the Licensor expressly
reserves any right to collect such royalties.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;h3 id=&quot;section-3-license-conditions&quot;&gt;Section 3 – License Conditions.&lt;&#x2F;h3&gt;
&lt;p&gt;Your exercise of the Licensed Rights is expressly made subject to the following
conditions.&lt;&#x2F;p&gt;
&lt;p&gt;a. &lt;em&gt;&lt;strong&gt;Attribution.&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;If You Share the Licensed Material (including in modified form), You
must:&lt;&#x2F;p&gt;
&lt;p&gt;A. retain the following if it is supplied by the Licensor with the
Licensed Material:&lt;&#x2F;p&gt;
&lt;p&gt;i. identification of the creator(s) of the Licensed Material and any
others designated to receive attribution, in any reasonable manner
requested by the Licensor (including by pseudonym if designated);&lt;&#x2F;p&gt;
&lt;p&gt;ii. a copyright notice;&lt;&#x2F;p&gt;
&lt;p&gt;iii. a notice that refers to this Public License;&lt;&#x2F;p&gt;
&lt;p&gt;iv. a notice that refers to the disclaimer of warranties;&lt;&#x2F;p&gt;
&lt;p&gt;v. a URI or hyperlink to the Licensed Material to the extent
reasonably practicable;&lt;&#x2F;p&gt;
&lt;p&gt;B. indicate if You modified the Licensed Material and retain an
indication of any previous modifications; and&lt;&#x2F;p&gt;
&lt;p&gt;C. indicate the Licensed Material is licensed under this Public License,
and include the text of, or the URI or hyperlink to, this Public
License.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;You may satisfy the conditions in Section 3(a)(1) in any reasonable
manner based on the medium, means, and context in which You Share the
Licensed Material. For example, it may be reasonable to satisfy the
conditions by providing a URI or hyperlink to a resource that includes the
required information.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;If requested by the Licensor, You must remove any of the information
required by Section 3(a)(1)(A) to the extent reasonably practicable.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;p&gt;b. &lt;em&gt;&lt;strong&gt;ShareAlike.&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;p&gt;In addition to the conditions in Section 3(a), if You Share Adapted Material
You produce, the following conditions also apply.&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;The Adapter’s License You apply must be a Creative Commons license with the
same License Elements, this version or later, or a BY-SA Compatible License.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;You must include the text of, or the URI or hyperlink to, the Adapter’s
License You apply. You may satisfy this condition in any reasonable manner
based on the medium, means, and context in which You Share Adapted Material.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;You may not offer or impose any additional or different terms or conditions
on, or apply any Effective Technological Measures to, Adapted Material that
restrict exercise of the rights granted under the Adapter’s License You apply.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;h3 id=&quot;section-4-sui-generis-database-rights&quot;&gt;Section 4 – Sui Generis Database Rights.&lt;&#x2F;h3&gt;
&lt;p&gt;Where the Licensed Rights include Sui Generis Database Rights that apply to
Your use of the Licensed Material:&lt;&#x2F;p&gt;
&lt;p&gt;a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract,
reuse, reproduce, and Share all or a substantial portion of the contents of the
database;&lt;&#x2F;p&gt;
&lt;p&gt;b. if You include all or a substantial portion of the database contents in a
database in which You have Sui Generis Database Rights, then the database in
which You have Sui Generis Database Rights (but not its individual contents) is
Adapted Material, including for purposes of Section 3(b); and&lt;&#x2F;p&gt;
&lt;p&gt;c. You must comply with the conditions in Section 3(a) if You Share all or a
substantial portion of the contents of the database.&lt;&#x2F;p&gt;
&lt;p&gt;For the avoidance of doubt, this Section 4 supplements and does not replace
Your obligations under this Public License where the Licensed Rights include
other Copyright and Similar Rights.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;section-5-disclaimer-of-warranties-and-limitation-of-liability&quot;&gt;Section 5 – Disclaimer of Warranties and Limitation of Liability.&lt;&#x2F;h3&gt;
&lt;p&gt;a. &lt;strong&gt;Unless otherwise separately undertaken by the Licensor, to the extent
possible, the Licensor offers the Licensed Material as-is and as-available, and
makes no representations or warranties of any kind concerning the Licensed
Material, whether express, implied, statutory, or other. This includes, without
limitation, warranties of title, merchantability, fitness for a particular
purpose, non-infringement, absence of latent or other defects, accuracy, or the
presence or absence of errors, whether or not known or discoverable. Where
disclaimers of warranties are not allowed in full or in part, this disclaimer
may not apply to You.&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;b. &lt;strong&gt;To the extent possible, in no event will the Licensor be liable to You on
any legal theory (including, without limitation, negligence) or otherwise for
any direct, special, indirect, incidental, consequential, punitive, exemplary,
or other losses, costs, expenses, or damages arising out of this Public License
or use of the Licensed Material, even if the Licensor has been advised of the
possibility of such losses, costs, expenses, or damages. Where a limitation of
liability is not allowed in full or in part, this limitation may not apply to
You.&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;c. The disclaimer of warranties and limitation of liability provided above
shall be interpreted in a manner that, to the extent possible, most closely
approximates an absolute disclaimer and waiver of all liability.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;section-6-term-and-termination&quot;&gt;Section 6 – Term and Termination.&lt;&#x2F;h3&gt;
&lt;p&gt;a. This Public License applies for the term of the Copyright and Similar Rights
licensed here. However, if You fail to comply with this Public License, then
Your rights under this Public License terminate automatically.&lt;&#x2F;p&gt;
&lt;p&gt;b. Where Your right to use the Licensed Material has terminated under Section
6(a), it reinstates:&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;automatically as of the date the violation is cured, provided it is cured
within 30 days of Your discovery of the violation; or&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;
&lt;p&gt;upon express reinstatement by the Licensor.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;p&gt;For the avoidance of doubt, this Section 6(b) does not affect any right the
Licensor may have to seek remedies for Your violations of this Public
License.&lt;&#x2F;p&gt;
&lt;p&gt;c. For the avoidance of doubt, the Licensor may also offer the Licensed
Material under separate terms or conditions or stop distributing the Licensed
Material at any time; however, doing so will not terminate this Public License.&lt;&#x2F;p&gt;
&lt;p&gt;d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;section-7-other-terms-and-conditions&quot;&gt;Section 7 – Other Terms and Conditions.&lt;&#x2F;h3&gt;
&lt;p&gt;a. The Licensor shall not be bound by any additional or different terms or
conditions communicated by You unless expressly agreed.&lt;&#x2F;p&gt;
&lt;p&gt;b. Any arrangements, understandings, or agreements regarding the Licensed
Material not stated herein are separate from and independent of the terms and
conditions of this Public License.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;section-8-interpretation&quot;&gt;Section 8 – Interpretation.&lt;&#x2F;h3&gt;
&lt;p&gt;a. For the avoidance of doubt, this Public License does not, and shall not be
interpreted to, reduce, limit, restrict, or impose conditions on any use of the
Licensed Material that could lawfully be made without permission under this
Public License.&lt;&#x2F;p&gt;
&lt;p&gt;b. To the extent possible, if any provision of this Public License is deemed
unenforceable, it shall be automatically reformed to the minimum extent
necessary to make it enforceable. If the provision cannot be reformed, it shall
be severed from this Public License without affecting the enforceability of the
remaining terms and conditions.&lt;&#x2F;p&gt;
&lt;p&gt;c. No term or condition of this Public License will be waived and no failure to
comply consented to unless expressly agreed to by the Licensor.&lt;&#x2F;p&gt;
&lt;p&gt;d. Nothing in this Public License constitutes or may be interpreted as a
limitation upon, or waiver of, any privileges and immunities that apply to the
Licensor or You, including from the legal processes of any jurisdiction or
authority.&lt;&#x2F;p&gt;
&lt;blockquote&gt;
&lt;p&gt;Creative Commons is not a party to its public licenses. Notwithstanding,
Creative Commons may elect to apply one of its public licenses to material it
publishes and in those instances will be considered the “Licensor.” The text
of the Creative Commons public licenses is dedicated to the public domain
under the &lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;creativecommons.org&#x2F;publicdomain&#x2F;zero&#x2F;1.0&#x2F;legalcode&quot;&gt;CC0 Public Domain
Dedication&lt;&#x2F;a&gt;.
Except for the limited purpose of indicating that material is shared under a
Creative Commons public license or as otherwise permitted by the Creative
Commons policies published at
&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;http:&#x2F;&#x2F;creativecommons.org&#x2F;policies&quot;&gt;creativecommons.org&#x2F;policies&lt;&#x2F;a&gt;, Creative
Commons does not authorize the use of the trademark “Creative Commons” or any
other trademark or logo of Creative Commons without its prior written consent
including, without limitation, in connection with any unauthorized
modifications to any of its public licenses or any other arrangements,
understandings, or agreements concerning use of licensed material. For the
avoidance of doubt, this paragraph does not form part of the public licenses.&lt;&#x2F;p&gt;
&lt;p&gt;Creative Commons may be contacted at creativecommons.org.&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;p&gt;&lt;a rel=&quot;noopener external&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;lists.sr.ht&#x2F;~sircmpwn&#x2F;sr.ht-discuss&#x2F;%3CCGBXPFTHYFMX.20N8H40LSE5A6%40penguin%3E&quot;&gt;https:&#x2F;&#x2F;lists.sr.ht&#x2F;~sircmpwn&#x2F;sr.ht-discuss&#x2F;%3CCGBXPFTHYFMX.20N8H40LSE5A6%40penguin%3E&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;section class=&quot;footnotes&quot;&gt;
&lt;ol class=&quot;footnotes-list&quot;&gt;
&lt;&#x2F;ol&gt;
&lt;&#x2F;section&gt;
</content>
        
    </entry>
</feed>
