<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
      <title>The NixFox Den</title>
      <link>https://nixfox.ca</link>
      <description>All nixfox blogs in one place</description>
      <generator>Zola</generator>
      <language>en</language>
      <atom:link href="https://nixfox.ca/rss.xml" rel="self" type="application/rss+xml"/>
      <lastBuildDate>Sat, 14 Mar 2026 14:57:03 -0400</lastBuildDate>
      <item>
          <title>March 1st Matrix Outage</title>
          <pubDate>Mon, 02 Mar 2026 01:20:33 -0500</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/nixfox/marchfirstoutage/</link>
          <guid>https://nixfox.ca/nixfox/marchfirstoutage/</guid>
          <description xml:base="https://nixfox.ca/nixfox/marchfirstoutage/">&lt;h2 id=&quot;prologue&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#prologue&quot; aria-label=&quot;Anchor link for: prologue&quot;&gt;Prologue&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;Matrix is not a fun protocol, especially not helped by the decisions I made early on.&lt;&#x2F;p&gt;
&lt;p&gt;I made two bad decisions in the beginning.&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;Using Synapse.&lt;&#x2F;li&gt;
&lt;li&gt;Using SQLite for the entire database.&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;p&gt;These were both fine for a very small server with only about 3 people actively using it. But as Discord has gotten worse and more of my friends have moved over, the cracks quickly began to show.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;what-happened&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#what-happened&quot; aria-label=&quot;Anchor link for: what-happened&quot;&gt;What happened?&lt;&#x2F;a&gt;&lt;&#x2F;h3&gt;
&lt;p&gt;The more people I had on my server, the slower things became. Sometimes, I&#x27;d struggle to log in. Send a message. Upload an image. This was fine, I thought - things would often return to normal after a while. But these problems began growing, until I was completely unable to use my Homeserver at all. Since Matrix is my primary chat client, this became urgent.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;what-i-learned&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#what-i-learned&quot; aria-label=&quot;Anchor link for: what-i-learned&quot;&gt;What I learned&lt;&#x2F;a&gt;&lt;&#x2F;h3&gt;
&lt;p&gt;It turns out having all my chats and clients running through both one file and one service is really taxing on the server! Synapse by default is not very hyperthreaded - running everything on only a couple of cores with only a few gigs of ram. This was exaserbated with the use of one file - now 5GB! - hosting the entirety of my server&#x27;s database.&lt;&#x2F;p&gt;
&lt;p&gt;I am also federating quite a bit, which brought my server down to its knees on every reboot. Having to fetch all that data was brutal.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;my-fix&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#my-fix&quot; aria-label=&quot;Anchor link for: my-fix&quot;&gt;My fix&lt;&#x2F;a&gt;&lt;&#x2F;h3&gt;
&lt;p&gt;Unfortunately, switching to Tuwunel, as much as I would like, was not a solution, as I need to preserve my DM history. However, two things proved useful:&lt;&#x2F;p&gt;
&lt;h4 id=&quot;migrating-the-database&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#migrating-the-database&quot; aria-label=&quot;Anchor link for: migrating-the-database&quot;&gt;Migrating the Database&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Using &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;matrix-org&#x2F;synapse&#x2F;blob&#x2F;develop&#x2F;docs&#x2F;postgres.md&quot;&gt;Synapse Migrate DB&lt;&#x2F;a&gt; as instructed here was able to fix the backend issues. Any data Synapse could move could now be accepted into my DB as fast as it needed. However, Synapse was still not processing fast enough.&lt;&#x2F;p&gt;
&lt;p&gt;In addition, upping the cache played a big role in allowing a bigger RAM buffer for Synapse to use, keeping things working when the load gets heavier.&lt;&#x2F;p&gt;
&lt;pre data-lang=&quot;nix&quot; style=&quot;background-color:#2b303b;color:#c0c5ce;&quot; class=&quot;language-nix &quot;&gt;&lt;code class=&quot;language-nix&quot; data-lang=&quot;nix&quot;&gt;&lt;span style=&quot;color:#bf616a;&quot;&gt;services&lt;&#x2F;span&gt;&lt;span&gt;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#bf616a;&quot;&gt;matrix-synapse &lt;&#x2F;span&gt;&lt;span style=&quot;background-color:#bf616a;color:#2b303b;&quot;&gt;=&lt;&#x2F;span&gt;&lt;span&gt; {
&lt;&#x2F;span&gt;&lt;span&gt;  &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;settings &lt;&#x2F;span&gt;&lt;span&gt;= {
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#65737e;&quot;&gt;# Use PostgreSQL instead of SQLite
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;database&lt;&#x2F;span&gt;&lt;span&gt;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;type &lt;&#x2F;span&gt;&lt;span&gt;= &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;psycopg2&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;;
&lt;&#x2F;span&gt;&lt;span&gt;
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#65737e;&quot;&gt;# Attempt a bigger RAM cache
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;cache_factor &lt;&#x2F;span&gt;&lt;span&gt;= &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;2&lt;&#x2F;span&gt;&lt;span&gt;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;0&lt;&#x2F;span&gt;&lt;span&gt;;
&lt;&#x2F;span&gt;&lt;span&gt;  };
&lt;&#x2F;span&gt;&lt;span&gt;}&lt;&#x2F;span&gt;&lt;span style=&quot;background-color:#bf616a;color:#2b303b;&quot;&gt;;&lt;&#x2F;span&gt;&lt;span&gt;
&lt;&#x2F;span&gt;&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;h4 id=&quot;using-workers&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#using-workers&quot; aria-label=&quot;Anchor link for: using-workers&quot;&gt;Using Workers&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;Synapse can be split up into multiple mini services, that can deal with individual tasks, freeing the main service to handle media, logins, and general snappiness.&lt;&#x2F;p&gt;
&lt;p&gt;On Nix, workers can be enabled like so:&lt;&#x2F;p&gt;
&lt;pre data-lang=&quot;nix&quot; style=&quot;background-color:#2b303b;color:#c0c5ce;&quot; class=&quot;language-nix &quot;&gt;&lt;code class=&quot;language-nix&quot; data-lang=&quot;nix&quot;&gt;&lt;span style=&quot;color:#bf616a;&quot;&gt;services&lt;&#x2F;span&gt;&lt;span&gt;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#bf616a;&quot;&gt;matrix-synapse &lt;&#x2F;span&gt;&lt;span style=&quot;background-color:#bf616a;color:#2b303b;&quot;&gt;=&lt;&#x2F;span&gt;&lt;span&gt; {
&lt;&#x2F;span&gt;&lt;span&gt;  &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;settings &lt;&#x2F;span&gt;&lt;span&gt;= {
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#65737e;&quot;&gt;# Use workers
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;send_federation &lt;&#x2F;span&gt;&lt;span&gt;= &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;false&lt;&#x2F;span&gt;&lt;span&gt;;
&lt;&#x2F;span&gt;&lt;span&gt;
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;federation_sender_instances &lt;&#x2F;span&gt;&lt;span&gt;= [
&lt;&#x2F;span&gt;&lt;span&gt;      &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;federation_worker_1&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;
&lt;&#x2F;span&gt;&lt;span&gt;      &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;federation_worker_2&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;
&lt;&#x2F;span&gt;&lt;span&gt;      &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;federation_worker_3&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;
&lt;&#x2F;span&gt;&lt;span&gt;      &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;federation_worker_4&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;
&lt;&#x2F;span&gt;&lt;span&gt;    ];
&lt;&#x2F;span&gt;&lt;span&gt;
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;sync_instances &lt;&#x2F;span&gt;&lt;span&gt;= [
&lt;&#x2F;span&gt;&lt;span&gt;      &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;sync_worker_1&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;
&lt;&#x2F;span&gt;&lt;span&gt;      &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;sync_worker_2&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;
&lt;&#x2F;span&gt;&lt;span&gt;    ];
&lt;&#x2F;span&gt;&lt;span&gt;  };
&lt;&#x2F;span&gt;&lt;span&gt;
&lt;&#x2F;span&gt;&lt;span&gt;  &lt;&#x2F;span&gt;&lt;span style=&quot;color:#65737e;&quot;&gt;# Add workers to distribute the load
&lt;&#x2F;span&gt;&lt;span&gt;  &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;workers &lt;&#x2F;span&gt;&lt;span&gt;= {
&lt;&#x2F;span&gt;&lt;span&gt;    &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;federation_worker_1&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;worker_app &lt;&#x2F;span&gt;&lt;span&gt;= &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;synapse.app.generic_worker&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;;
&lt;&#x2F;span&gt;&lt;span&gt;    &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;federation_worker_2&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;worker_app &lt;&#x2F;span&gt;&lt;span&gt;= &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;synapse.app.generic_worker&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;;
&lt;&#x2F;span&gt;&lt;span&gt;    &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;federation_worker_3&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;worker_app &lt;&#x2F;span&gt;&lt;span&gt;= &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;synapse.app.generic_worker&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;;
&lt;&#x2F;span&gt;&lt;span&gt;    &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;federation_worker_4&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;worker_app &lt;&#x2F;span&gt;&lt;span&gt;= &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;synapse.app.generic_worker&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;;
&lt;&#x2F;span&gt;&lt;span&gt;    &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;sync_worker_3&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;worker_app &lt;&#x2F;span&gt;&lt;span&gt;= &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;synapse.app.generic_worker&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;;
&lt;&#x2F;span&gt;&lt;span&gt;    &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;sync_worker_4&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;worker_app &lt;&#x2F;span&gt;&lt;span&gt;= &amp;quot;&lt;&#x2F;span&gt;&lt;span style=&quot;color:#a3be8c;&quot;&gt;synapse.app.generic_worker&lt;&#x2F;span&gt;&lt;span&gt;&amp;quot;;
&lt;&#x2F;span&gt;&lt;span&gt;  };
&lt;&#x2F;span&gt;&lt;span&gt;}&lt;&#x2F;span&gt;&lt;span style=&quot;background-color:#bf616a;color:#2b303b;&quot;&gt;;&lt;&#x2F;span&gt;&lt;span&gt;
&lt;&#x2F;span&gt;&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;p&gt;By disabling federation and offloading syncing to workers, these services now hyperthread and distribute their load evenly, allowing DMs and logging in to work seamlessly.&lt;&#x2F;p&gt;
&lt;h4 id=&quot;ratelimiting-and-presence&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#ratelimiting-and-presence&quot; aria-label=&quot;Anchor link for: ratelimiting-and-presence&quot;&gt;Ratelimiting and presence&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;p&gt;When federating from Synapse, there is no option to allow presence - the &quot;user is online&quot; check - to be allowed for the local homeserver only. This meant microchatter - thousands of tiny, individual pings - were being sent from homeserver to homeserver, clogging memory.&lt;&#x2F;p&gt;
&lt;p&gt;By disabling this and slowing down federation in general, we can keep a ligher load on the system.&lt;&#x2F;p&gt;
&lt;pre data-lang=&quot;nix&quot; style=&quot;background-color:#2b303b;color:#c0c5ce;&quot; class=&quot;language-nix &quot;&gt;&lt;code class=&quot;language-nix&quot; data-lang=&quot;nix&quot;&gt;&lt;span style=&quot;color:#bf616a;&quot;&gt;services&lt;&#x2F;span&gt;&lt;span&gt;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#bf616a;&quot;&gt;matrix-synapse &lt;&#x2F;span&gt;&lt;span style=&quot;background-color:#bf616a;color:#2b303b;&quot;&gt;=&lt;&#x2F;span&gt;&lt;span&gt; {
&lt;&#x2F;span&gt;&lt;span&gt;  &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;settings &lt;&#x2F;span&gt;&lt;span&gt;= {
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#65737e;&quot;&gt;# Ratelimit federation
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;federation_rc_window_size &lt;&#x2F;span&gt;&lt;span&gt;= &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;1000&lt;&#x2F;span&gt;&lt;span&gt;;
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;federation_rc_sleep_limit &lt;&#x2F;span&gt;&lt;span&gt;= &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;5&lt;&#x2F;span&gt;&lt;span&gt;;
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;federation_rc_sleep_delay &lt;&#x2F;span&gt;&lt;span&gt;= &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;1000&lt;&#x2F;span&gt;&lt;span&gt;;
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;federation_rc_reject_limit &lt;&#x2F;span&gt;&lt;span&gt;= &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;20&lt;&#x2F;span&gt;&lt;span&gt;;
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;federation_rc_concurrent &lt;&#x2F;span&gt;&lt;span&gt;= &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;10&lt;&#x2F;span&gt;&lt;span&gt;;
&lt;&#x2F;span&gt;&lt;span&gt;
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#65737e;&quot;&gt;# Turn off presence
&lt;&#x2F;span&gt;&lt;span&gt;    &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;presence&lt;&#x2F;span&gt;&lt;span&gt;.&lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;enabled &lt;&#x2F;span&gt;&lt;span&gt;= &lt;&#x2F;span&gt;&lt;span style=&quot;color:#d08770;&quot;&gt;false&lt;&#x2F;span&gt;&lt;span&gt;;
&lt;&#x2F;span&gt;&lt;span&gt;  };
&lt;&#x2F;span&gt;&lt;span&gt;}&lt;&#x2F;span&gt;&lt;span style=&quot;background-color:#bf616a;color:#2b303b;&quot;&gt;;&lt;&#x2F;span&gt;&lt;span&gt;
&lt;&#x2F;span&gt;&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;h3 id=&quot;upkeep&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#upkeep&quot; aria-label=&quot;Anchor link for: upkeep&quot;&gt;Upkeep!&lt;&#x2F;a&gt;&lt;&#x2F;h3&gt;
&lt;p&gt;While I was here, I thought it important to enable things like Element Call and to serve from a VPS rather than my home. All of these changes can be explored further in &lt;a href=&quot;https:&#x2F;&#x2F;git.nixfox.ca&#x2F;Bun&#x2F;nixos-config&#x2F;src&#x2F;commit&#x2F;515832841837fb2bba06ce7051280abbdc46e99b&#x2F;modules&#x2F;system&#x2F;services&#x2F;server&#x2F;matrix&quot;&gt;my Git repo&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
</description>
      </item>
      <item>
          <title>My hardware</title>
          <pubDate>Thu, 17 Jul 2025 16:36:39 -0400</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/tech/nixhardware/</link>
          <guid>https://nixfox.ca/tech/nixhardware/</guid>
          <description xml:base="https://nixfox.ca/tech/nixhardware/">&lt;p&gt;Sections todo.&lt;&#x2F;p&gt;
&lt;h1 id=&quot;desktops-and-laptops&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#desktops-and-laptops&quot; aria-label=&quot;Anchor link for: desktops-and-laptops&quot;&gt;Desktops and Laptops&lt;&#x2F;a&gt;&lt;&#x2F;h1&gt;
&lt;p&gt;Primarily, I interact with NixOS from my desktop - a faily decent rig with a Ryzen 5 3600X, where I compile all my other machines from.
In addition to that, I run a few laptops between homes and clubs I go to, all running under a general desktop profile.
A quick rundown of what I use is as follows;&lt;&#x2F;p&gt;
&lt;h2 id=&quot;steam-deck&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#steam-deck&quot; aria-label=&quot;Anchor link for: steam-deck&quot;&gt;Steam Deck&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;h1 id=&quot;servers&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#servers&quot; aria-label=&quot;Anchor link for: servers&quot;&gt;Servers&lt;&#x2F;a&gt;&lt;&#x2F;h1&gt;
&lt;h1 id=&quot;btrfs&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#btrfs&quot; aria-label=&quot;Anchor link for: btrfs&quot;&gt;BTRFS&lt;&#x2F;a&gt;&lt;&#x2F;h1&gt;
&lt;h1 id=&quot;mycelium&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#mycelium&quot; aria-label=&quot;Anchor link for: mycelium&quot;&gt;Mycelium&lt;&#x2F;a&gt;&lt;&#x2F;h1&gt;
&lt;h1 id=&quot;colmena&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#colmena&quot; aria-label=&quot;Anchor link for: colmena&quot;&gt;Colmena&lt;&#x2F;a&gt;&lt;&#x2F;h1&gt;
&lt;h1 id=&quot;impermanence&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#impermanence&quot; aria-label=&quot;Anchor link for: impermanence&quot;&gt;Impermanence&lt;&#x2F;a&gt;&lt;&#x2F;h1&gt;
&lt;h1 id=&quot;virtualization&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#virtualization&quot; aria-label=&quot;Anchor link for: virtualization&quot;&gt;Virtualization&lt;&#x2F;a&gt;&lt;&#x2F;h1&gt;
&lt;h3 id=&quot;qemu-kvm&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#qemu-kvm&quot; aria-label=&quot;Anchor link for: qemu-kvm&quot;&gt;QEMU&#x2F;KVM&lt;&#x2F;a&gt;&lt;&#x2F;h3&gt;
</description>
      </item>
      <item>
          <title>Software I use</title>
          <pubDate>Thu, 17 Jul 2025 16:36:39 -0400</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/tech/softwareiuse/</link>
          <guid>https://nixfox.ca/tech/softwareiuse/</guid>
          <description xml:base="https://nixfox.ca/tech/softwareiuse/">&lt;p&gt;I use the same config of NixOS on every machine I can, be that desktop, Steam Deck, servers, cloud machines, or whatever laptop or drawing tablet I can get my hands on.
There are a lot of moving parts to this setup, and many configs and variables I&#x27;ve had to set up to allow all these machines to run smoothly under one config.&lt;&#x2F;p&gt;
&lt;p&gt;This is a selection of the software I use across everything, and how I get them to sync and run as smoothly as possible.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;browser&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#browser&quot; aria-label=&quot;Anchor link for: browser&quot;&gt;Browser&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;&lt;a href=&quot;https:&#x2F;&#x2F;zen-browser.app&#x2F;&quot;&gt;Zen Browser&lt;&#x2F;a&gt; is my go-to. I use almost every feature from folders to direct feeds and workspaces. I do not typically sync my tabs - instead, I log into everything using &lt;a href=&quot;https:&#x2F;&#x2F;bitwarden.com&quot;&gt;Bitwarden&lt;&#x2F;a&gt; and treat every machine separately. I&#x27;ve been fine with this, but it may change in the future.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;music&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#music&quot; aria-label=&quot;Anchor link for: music&quot;&gt;Music&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;I always use &lt;a href=&quot;https:&#x2F;&#x2F;www.musicpd.org&#x2F;&quot;&gt;MPD&lt;&#x2F;a&gt; with the &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;ncmpcpp&#x2F;ncmpcpp&quot;&gt;NCMPCPP&lt;&#x2F;a&gt; frontend, in addition to &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;MusicPlayerDaemon&#x2F;mpdscribble&quot;&gt;MPDScribble&lt;&#x2F;a&gt; for &quot;scrobbling&quot; my listening activity to Last.fm, &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;natsukagami&#x2F;mpd-mpris&quot;&gt;MPD-Mpris&lt;&#x2F;a&gt; for controlling MPD using hotkeys, and &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;JakeStanger&#x2F;mpd-discord-rpc&quot;&gt;MPD-Discord-RPC&lt;&#x2F;a&gt; for sharing that to Discord. All music is loaded in from an NFS server on my NAS.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;equalizer&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#equalizer&quot; aria-label=&quot;Anchor link for: equalizer&quot;&gt;Equalizer&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;EasyEffects has been a blessing for a former &lt;a href=&quot;https:&#x2F;&#x2F;vb-audio.com&#x2F;Voicemeeter&#x2F;index.htm&quot;&gt;VoiceMeeter&lt;&#x2F;a&gt; user. It&#x27;s able to run as a service, has highly configurable settings, and can be made to autoload my profile right from the my HomeManager config.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;gaming&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#gaming&quot; aria-label=&quot;Anchor link for: gaming&quot;&gt;Gaming&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;&quot;&gt;Steam&lt;&#x2F;a&gt; is my obvious default choice, with &lt;a href=&quot;http:&#x2F;&#x2F;gog.com&#x2F;&quot;&gt;GOG&lt;&#x2F;a&gt; as a close second, and whatever free scraps &lt;a href=&quot;https:&#x2F;&#x2F;store.epicgames.com&#x2F;&quot;&gt;Epic Games&lt;&#x2F;a&gt; gives me through the &lt;a href=&quot;https:&#x2F;&#x2F;heroicgameslauncher.com&#x2F;&quot;&gt;Heroic Games Launcher&lt;&#x2F;a&gt;. Heroic now allows for server syncing of GOG saves, which has been a lifesaver.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;file-management&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#file-management&quot; aria-label=&quot;Anchor link for: file-management&quot;&gt;File management&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;I heavily use both &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;lxde&#x2F;pcmanfm&quot;&gt;PCManFM&lt;&#x2F;a&gt; and &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;ranger&#x2F;ranger&quot;&gt;Ranger&lt;&#x2F;a&gt; for my GUI and terminal file managers, respectfully. I find it much more comfortable to use Ranger for visualizing files in a broader scope, utilizing all the vim keys and shortcuts which make it very quick to use, and PCManFM when I am working with media, like images, PDFs, or simply dragging a file into another program like Discord, Krita, or Kdenlive.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;communication&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#communication&quot; aria-label=&quot;Anchor link for: communication&quot;&gt;Communication&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;On the desktop, I primarily use both &lt;a href=&quot;https:&#x2F;&#x2F;element.io&#x2F;en&#x2F;download&quot;&gt;Element&lt;&#x2F;a&gt; and &lt;a href=&quot;https:&#x2F;&#x2F;vesktop.dev&#x2F;&quot;&gt;Vesktop&lt;&#x2F;a&gt;, but with the progress being made to &lt;a href=&quot;https:&#x2F;&#x2F;cinny.in&#x2F;&quot;&gt;Cinny&lt;&#x2F;a&gt; as of late, that may become my primary chat client. I have my key stored on my own Matrix server, so syncing is as easy as verifying my login.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;shell&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#shell&quot; aria-label=&quot;Anchor link for: shell&quot;&gt;Shell&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;I just recently discovered &lt;a href=&quot;https:&#x2F;&#x2F;atuin.sh&#x2F;&quot;&gt;Atuin&lt;&#x2F;a&gt;, which lets me sync my ZSH history across all of my machines using a self hosted server. No more forgetting commands!&lt;&#x2F;p&gt;
&lt;h2 id=&quot;text-editor&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#text-editor&quot; aria-label=&quot;Anchor link for: text-editor&quot;&gt;Text editor&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;To wrap this up, I&#x27;d like to do a fourth wall break:

&lt;img class=&quot;inline&quot; src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;fourthwall.14bd3bf084ffc54b.png&quot; &#x2F;&gt;

I edit all these blogs either right here in &lt;a href=&quot;https:&#x2F;&#x2F;neovim.io&#x2F;&quot;&gt;Neovim&lt;&#x2F;a&gt;, or my own &lt;a href=&quot;https:&#x2F;&#x2F;hedgedoc.org&#x2F;&quot;&gt;Hedgedoc&lt;&#x2F;a&gt; instance.&lt;&#x2F;p&gt;
&lt;p&gt;Now that I&#x27;ve got all that software set up, I should get back to writing more!&lt;&#x2F;p&gt;
</description>
      </item>
      <item>
          <title>Todo list</title>
          <pubDate>Thu, 10 Jul 2025 17:29:44 -0400</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/info/todo/</link>
          <guid>https://nixfox.ca/info/todo/</guid>
          <description xml:base="https://nixfox.ca/info/todo/">&lt;p&gt;I mentioned somewhere that this site would act as my little corner of the internet to write whatever I want. This is that! Here, I&#x27;ll be keeping track of things I want to do or write about, along with some links relating to those future projects.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;articles-and-blogs&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#articles-and-blogs&quot; aria-label=&quot;Anchor link for: articles-and-blogs&quot;&gt;Articles and Blogs&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;ul&gt;
&lt;li&gt;Make a list of other blogs and website&#x27;s RSS feeds I&#x27;m subscribed to&lt;&#x2F;li&gt;
&lt;li&gt;Being a &quot;Jack of All Trades&quot;&lt;&#x2F;li&gt;
&lt;li&gt;Set up and write about Cloudflare&#x27;s &quot;AI Labyrinth&quot; and other AI protections
[&lt;a href=&quot;https:&#x2F;&#x2F;dash.cloudflare.com&#x2F;662af71079e7cb1e91200efaacc4aa1d&#x2F;nixfox.ca&#x2F;security&#x2F;bots&quot;&gt;1&lt;&#x2F;a&gt;]
[&lt;a href=&quot;https:&#x2F;&#x2F;developers.cloudflare.com&#x2F;bots&#x2F;troubleshooting&#x2F;wordpress-loopback-issue&quot;&gt;2&lt;&#x2F;a&gt;]
[&lt;a href=&quot;https:&#x2F;&#x2F;developers.cloudflare.com&#x2F;bots&#x2F;concepts&#x2F;bot-detection-engines&quot;&gt;3&lt;&#x2F;a&gt;]&lt;&#x2F;li&gt;
&lt;li&gt;Set up Anubis&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h2 id=&quot;nixfox-services&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#nixfox-services&quot; aria-label=&quot;Anchor link for: nixfox-services&quot;&gt;NixFox Services&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;ul&gt;
&lt;li&gt;Write a little update about adding ntfy.sh and what I use it for&lt;&#x2F;li&gt;
&lt;li&gt;Detailed blog about setting up an email server using Oracle Cloud&lt;&#x2F;li&gt;
&lt;li&gt;Set up an XMPP instance and write a blog about it&lt;&#x2F;li&gt;
&lt;li&gt;Consider better ways of handling downtime&#x2F;load balancing&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
</description>
      </item>
      <item>
          <title>Aubun&#x27;s media list</title>
          <pubDate>Wed, 09 Jul 2025 19:14:54 -0400</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/info/medialist/</link>
          <guid>https://nixfox.ca/info/medialist/</guid>
          <description xml:base="https://nixfox.ca/info/medialist/">&lt;p&gt;This is a list I&#x27;ve had for a while that is meant to keep track of everything I&#x27;ve watched and everything I need to watch. And now I can make it public!&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;del&gt;Stranger Things&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;(Rewatch) Into the Spiderverse&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Bee And Puppycat (Youtube)&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Cecil Hotel Docuseries&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Kill La Kill&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Pulp Fiction&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Venom&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;The Pianist&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Night Stalker Docuseries&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Elfen Lied: The Complete Abridged Series&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;(Rewatch) Cars&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Aliens&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;HBO&#x27;s Chernobyl&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Manhunter&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;The 5th Wave&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Man of La Mancha&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Be More Chill&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Hamilton&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Zootopia&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Tangled&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;The Oder (A Horror Roblox Story)&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Joker&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;The Boss Baby: Family Business&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;(Rewatch) Drive (2011)&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;(Rewatch) John Wick&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Logan&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;American Psycho&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Serial Experiments Lain&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Evangelion 3.0+1.0&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Midsommar&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;The Walking Dead&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Spiderman: No Way Home&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Heat&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Memories&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;(Rewatch) The Incredibles&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Constantine (2005)&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Wall-E&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Mega Mind&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Jack Reacher&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Nightcrawler&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Boss Level (2020)&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Morbius&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Regular Show The Movie&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;No Country for Old Men&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;The Iron Giant&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Captain Underpants - The First Epic Movie&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;(Rewatch) Breaking Bad&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Better Call Saul&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Dahmer&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;United 93&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Blade Runner 2049&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Sonic the Hedgehog (2020)&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Utopia&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Godfather&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Silence of the Lambs&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Adventure Time&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Invincible&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;The Princess Bride&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;8 Crazy Nights&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Scott Pilgrim VS The World&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Arcane&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;(Rewatch) How Clumsy you are, Miss Ueno&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;(Rewatch) Bunny Girl Senpai&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Xavier: Renegade Angel&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Panty &amp;amp; Stocking with Garterbelt&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;AkiraIsle of Dogs&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;The Grand Budapest Hotel&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Rushmore&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Cyberpunk: Edgerunners&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Cowboy Bebop (Series and Movie)&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Beastars&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Brand New Animal&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Moana&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Gen V&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;House MD&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;The Thing&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Hereditary&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;Mulholland Drive&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;del&gt;American Sniper&lt;&#x2F;del&gt;&lt;&#x2F;li&gt;
&lt;li&gt;It&#x27;s Always Sunny in Philadelphia&lt;&#x2F;li&gt;
&lt;li&gt;Lucky Star&lt;&#x2F;li&gt;
&lt;li&gt;O.K. KO&lt;&#x2F;li&gt;
&lt;li&gt;Senko Sama&lt;&#x2F;li&gt;
&lt;li&gt;Knives Out&lt;&#x2F;li&gt;
&lt;li&gt;Regular Show&lt;&#x2F;li&gt;
&lt;li&gt;Close Enough&lt;&#x2F;li&gt;
&lt;li&gt;Ratatouille&lt;&#x2F;li&gt;
&lt;li&gt;I Know This Much Is True&lt;&#x2F;li&gt;
&lt;li&gt;The Shield&lt;&#x2F;li&gt;
&lt;li&gt;Playtime (1967)&lt;&#x2F;li&gt;
&lt;li&gt;World of Tomorrow&lt;&#x2F;li&gt;
&lt;li&gt;Johnny Got His Gun&lt;&#x2F;li&gt;
&lt;li&gt;Mitchells vs. The Machines&lt;&#x2F;li&gt;
&lt;li&gt;Mob Psycho 100&lt;&#x2F;li&gt;
&lt;li&gt;Annihilation&lt;&#x2F;li&gt;
&lt;li&gt;Shrek 2&lt;&#x2F;li&gt;
&lt;li&gt;American POP&lt;&#x2F;li&gt;
&lt;li&gt;Army of Darkness&lt;&#x2F;li&gt;
&lt;li&gt;Bird Box&lt;&#x2F;li&gt;
&lt;li&gt;Brooklyn Nine Nine&lt;&#x2F;li&gt;
&lt;li&gt;Black Mirror&lt;&#x2F;li&gt;
&lt;li&gt;The Martian&lt;&#x2F;li&gt;
&lt;li&gt;Footloose&lt;&#x2F;li&gt;
&lt;li&gt;DOTA: Dragon&#x27;s Blood&lt;&#x2F;li&gt;
&lt;li&gt;Devilman Crybaby&lt;&#x2F;li&gt;
&lt;li&gt;Wonder Egg Priority&lt;&#x2F;li&gt;
&lt;li&gt;Godless™️&lt;&#x2F;li&gt;
&lt;li&gt;Little Witch Academia&lt;&#x2F;li&gt;
&lt;li&gt;Monty Python and the Holy Grail&lt;&#x2F;li&gt;
&lt;li&gt;Sk8&lt;&#x2F;li&gt;
&lt;li&gt;Soul Heathers&lt;&#x2F;li&gt;
&lt;li&gt;Airplane&lt;&#x2F;li&gt;
&lt;li&gt;Amra Ekta Cinema Banabo&lt;&#x2F;li&gt;
&lt;li&gt;Carole &amp;amp; Tuesday&lt;&#x2F;li&gt;
&lt;li&gt;No Game No Life&lt;&#x2F;li&gt;
&lt;li&gt;Hitori Bocchi no Marumaru Seikatsu&lt;&#x2F;li&gt;
&lt;li&gt;Tokyo Revengers&lt;&#x2F;li&gt;
&lt;li&gt;K-on&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
</description>
      </item>
      <item>
          <title>The Instagram reupload</title>
          <pubDate>Tue, 08 Jul 2025 04:31:57 -0400</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/art/instagram/</link>
          <guid>https://nixfox.ca/art/instagram/</guid>
          <description xml:base="https://nixfox.ca/art/instagram/">&lt;p&gt;I thought I&#x27;d get the ball rolling by reuploading the works I liked I had previously uploaded to my Instagram.&lt;&#x2F;p&gt;
&lt;div class=&quot;gallery&quot;&gt;
  
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-05-20-22-48-35-060-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-05-20-22-48-35-060-rotated.2e6213736f49029b.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-05-21-22-28-10-183-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-05-21-22-28-10-183-rotated.b7c925d0e406b525.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-06-12-15-15-10-978-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-06-12-15-15-10-978-rotated.b68d5d2223ebb04d.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-06-13-15-48-00-687-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-06-13-15-48-00-687-rotated.4054583e0ff1f192.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-06-13-15-48-08-753-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-06-13-15-48-08-753-rotated.cdf3ff237d5b4b97.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-06-14-14-57-45-671-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-06-14-14-57-45-671-rotated.bd7bc57405409681.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-06-14-14-57-55-257-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-06-14-14-57-55-257-rotated.ffaf3d85eba872eb.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-06-14-14-58-01-673-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-06-14-14-58-01-673-rotated.f5abc7ebef9961f4.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-06-14-14-58-08-036-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-06-14-14-58-08-036-rotated.eeb47bac5598d36a.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-07-04-15-46-53-205-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-07-04-15-46-53-205-rotated.7608843a15404ee1.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-07-04-15-46-59-328-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-07-04-15-46-59-328-rotated.70cb580fa11f0642.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2024-07-04-15-47-12-102-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2024-07-04-15-47-12-102-rotated.061edcba75dfdabe.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;2025-07-08T04:53:39,542891577-04:00.png&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;2025-07-08T04:53:39,542891577-04:00.cd08a25cb780a465.png&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;creature-rotated.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;creature-rotated.06162edac0cb3bed.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;PXL_20250617_233027160.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250617_233027160.2164a72b3e06376a.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;PXL_20250617_233444203.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250617_233444203.42560c58245e6d6b.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;Scrump.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;Scrump.5f6b7657e3ff058b.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;art&#x2F;instagram&#x2F;ScrumpRender.png&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;ScrumpRender.4bbeab79b1afc6dc.png&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
&lt;&#x2F;div&gt;
</description>
      </item>
      <item>
          <title>Bnuuys</title>
          <pubDate>Tue, 08 Jul 2025 01:07:46 -0400</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/images/bnuuy/</link>
          <guid>https://nixfox.ca/images/bnuuy/</guid>
          <description xml:base="https://nixfox.ca/images/bnuuy/">&lt;p&gt;I live in a place where many rabbits and bunnies come out at night to play at night.
I like taking photos of them, here are a few!&lt;&#x2F;p&gt;
&lt;div class=&quot;gallery&quot;&gt;
  
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250318_052342835.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250318_052342835.ccfa9f8fd581afda.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250318_052522976.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250318_052522976.5bd02fb5e13591c6.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250318_052625346.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250318_052625346.4a82dc98ee8ba5d8.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250318_052647411.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250318_052647411.954685778d657113.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250518_075253536.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250518_075253536.5828b2ccd4af19bb.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250518_075259493.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250518_075259493.94e18faf23458118.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250518_075301929.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250518_075301929.e8b5a8bdd64654a3.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250518_075855611.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250518_075855611.09508a566e3c7830.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250518_075904924.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250518_075904924.21ff975631dbf1e4.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250518_075931947.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250518_075931947.dfeae9543d46736b.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250518_075946598.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250518_075946598.91996fdb3e34d7e2.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250518_075952162.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250518_075952162.bccb2c5c9efcf5cf.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;bnuuy&#x2F;PXL_20250518_075956103.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;PXL_20250518_075956103.a0e9c6f5c04e0e92.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
&lt;&#x2F;div&gt;
</description>
      </item>
      <item>
          <title>Blackberry critters</title>
          <pubDate>Mon, 07 Jul 2025 10:28:32 -0400</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/images/blackberry/</link>
          <guid>https://nixfox.ca/images/blackberry/</guid>
          <description xml:base="https://nixfox.ca/images/blackberry/">&lt;p&gt;I once was given an old Blackberry phone to comb through.
Here are some of the images I found worthy of sharing!&lt;&#x2F;p&gt;
&lt;div class=&quot;gallery&quot;&gt;
  
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;blackberry&#x2F;eep.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;eep.faf4ab98fecff63d.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;blackberry&#x2F;geese.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;geese.05dc690cc118aa29.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;blackberry&#x2F;moregeese.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;moregeese.39785e121dcb326c.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;blackberry&#x2F;silly.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;silly.2ed76367467da2de.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;blackberry&#x2F;squint.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;squint.3313783ea76595e9.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;blackberry&#x2F;stare.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;stare.bae964efb717e8db.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
      &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;images&#x2F;blackberry&#x2F;webs.jpg&quot; target=&quot;_blank&quot;&gt;
        &lt;img src=&quot;https:&amp;#x2F;&amp;#x2F;nixfox.ca&amp;#x2F;processed_images&amp;#x2F;webs.261988b66d8a6393.jpg&quot; &#x2F;&gt;
      &lt;&#x2F;a&gt;
&lt;&#x2F;div&gt;
</description>
      </item>
      <item>
          <title>My favorite games</title>
          <pubDate>Thu, 03 Jul 2025 02:19:13 -0400</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/blog/games/</link>
          <guid>https://nixfox.ca/blog/games/</guid>
          <description xml:base="https://nixfox.ca/blog/games/">&lt;p&gt;Thanks for checking out my little list! I have a very opinionated set of favorites, and will likely update this list as I find more.&lt;&#x2F;p&gt;
&lt;p&gt;As of recent I have had a very strong interest in stealth-action games, ones you can play like a puzzle as well as a shooter. Those for me have been:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;app&#x2F;1659040&#x2F;hitman_world_of_assassination&quot;&gt;Hitman: World of Assassination&lt;&#x2F;a&gt;, which has occupied too much of my time&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;app&#x2F;70&#x2F;halflife&quot;&gt;Half-Life&lt;&#x2F;a&gt;, only the first one.&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;app&#x2F;220240&#x2F;far_cry_3&quot;&gt;Far Cry 3&lt;&#x2F;a&gt;, a comfort game&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;app&#x2F;219150&#x2F;hotline_miami&quot;&gt;Hotline Miami (1 and 2)&lt;&#x2F;a&gt;, the opposite of a comfort game.&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;app&#x2F;322500&#x2F;superhot&quot;&gt;Superhot&lt;&#x2F;a&gt;, basically a puzzle game&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;app&#x2F;6910&#x2F;deus_ex_game_of_the_year_edition&quot;&gt;Deus Ex&lt;&#x2F;a&gt;, is far more than fine, and &lt;a href=&quot;https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=bgjazjz9zsa&amp;amp;t=3028s&quot;&gt;here&#x27;s why&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;My other favorite genre seems to be climing&#x2F;platforming games, those being:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;app&#x2F;3527290&#x2F;peak&quot;&gt;Peak&lt;&#x2F;a&gt;, absolute peak.&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;app&#x2F;504230&#x2F;celeste&quot;&gt;Celeste&lt;&#x2F;a&gt;, also extremely frusturating, but we ball&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;app&#x2F;881100&#x2F;noita&quot;&gt;Noita&lt;&#x2F;a&gt;, like celeste but down!&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;And of course, two of my favorite which don&#x27;t fit into those categories:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;app&#x2F;400&#x2F;portal&quot;&gt;Portal&lt;&#x2F;a&gt;. not much more to say&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;store.steampowered.com&#x2F;app&#x2F;397950&#x2F;clustertruck&quot;&gt;Clustertruck&lt;&#x2F;a&gt;, this one&#x27;s just fun&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;If you have any games you&#x27;d think I&#x27;d like, please get in &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;info&#x2F;contact&#x2F;&quot;&gt;contact&lt;&#x2F;a&gt; with me!&lt;&#x2F;p&gt;
</description>
      </item>
      <item>
          <title>Inspiration and tools</title>
          <pubDate>Thu, 03 Jul 2025 02:09:13 -0400</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/blog/inspiration/</link>
          <guid>https://nixfox.ca/blog/inspiration/</guid>
          <description xml:base="https://nixfox.ca/blog/inspiration/">&lt;p&gt;Having a hard time keeping track of all the pages and links I&#x27;ve encountered and been inspired by and liked while making this webpage, so I may as well put them here!&lt;&#x2F;p&gt;
&lt;h3 id=&quot;tools&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#tools&quot; aria-label=&quot;Anchor link for: tools&quot;&gt;Tools&lt;&#x2F;a&gt;&lt;&#x2F;h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;www.getzola.org&quot;&gt;Zola&lt;&#x2F;a&gt;, the tool letting me make this whole page&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;nginx.org&quot;&gt;Nginx&lt;&#x2F;a&gt;, been using it this whole time but could always learn more&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h3 id=&quot;pages&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#pages&quot; aria-label=&quot;Anchor link for: pages&quot;&gt;pages&lt;&#x2F;a&gt;&lt;&#x2F;h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;msx.horse&#x2F;landing.php&quot;&gt;msx.horse&lt;&#x2F;a&gt;, my very first inspiration to make a page like this :)&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;zvava.org&quot;&gt;zvava.org&lt;&#x2F;a&gt;, a very pretty blog page and my proper kick in the ass to get started on this page&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;catgirl.cloud&quot;&gt;catgirl.cloud&lt;&#x2F;a&gt;, a simple inspiration for what to mention when i write about my self hosted platforms&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;oat.zone&quot;&gt;oat.zone&lt;&#x2F;a&gt;, cool domain and another little reminder of what to write about in my about me&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h3 id=&quot;webrings&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#webrings&quot; aria-label=&quot;Anchor link for: webrings&quot;&gt;webrings&lt;&#x2F;a&gt;&lt;&#x2F;h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;webring.Xxiivv.Com&quot;&gt;xxiivv.Com&lt;&#x2F;a&gt;, a very simple list of very cool pages&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;webring.Bucketfish.Me&quot;&gt;bucketfish.Me&lt;&#x2F;a&gt;, another cool webring of cool pages&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;george.Gh0.Pw&quot;&gt;george.Gh0.Pw&lt;&#x2F;a&gt;, george.&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;neptune.Monster&#x2F;webring&quot;&gt;queer coded webring&lt;&#x2F;a&gt;, &quot;You&#x27;re telling me a queer coded this?&quot;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;neocities.Org&quot;&gt;neocities.Org&lt;&#x2F;a&gt;, basically as many webrings as I could want to see&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;hotlinewebring.Club&quot;&gt;hotlinewebring.Club&lt;&#x2F;a&gt;, which also looks cute&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;stellophiliac.Github.Io&#x2F;roboring&#x2F;&quot;&gt;roboring&lt;&#x2F;a&gt;, very cool people here&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
</description>
      </item>
      <item>
          <title>About the Aubun creature</title>
          <pubDate>Thu, 03 Jul 2025 01:48:16 -0400</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/info/about-me/</link>
          <guid>https://nixfox.ca/info/about-me/</guid>
          <description xml:base="https://nixfox.ca/info/about-me/">&lt;p&gt;Hello, I&#x27;m Aubun, or just Bun for short!
Online I often go by viceebun or Monarch, which i am quite fond of :3&lt;&#x2F;p&gt;
&lt;h4 id=&quot;some-basic-info&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#some-basic-info&quot; aria-label=&quot;Anchor link for: some-basic-info&quot;&gt;Some basic info:&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;ul&gt;
&lt;li&gt;Prefered name: Aubun Donald&lt;&#x2F;li&gt;
&lt;li&gt;Nickname: Bun, nonbun_&lt;&#x2F;li&gt;
&lt;li&gt;Pronouns: they&#x2F;them&lt;&#x2F;li&gt;
&lt;li&gt;Born: 2004&lt;&#x2F;li&gt;
&lt;li&gt;Contact: &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;info&#x2F;contact&#x2F;&quot;&gt;my contact page&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;I&#x27;d like to use this page to share some of my interests!&lt;&#x2F;p&gt;
&lt;h2 id=&quot;technology&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#technology&quot; aria-label=&quot;Anchor link for: technology&quot;&gt;Technology&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;This has always been the big one for me.
Since I was young, I would reach out to people&#x27;s dumbphones, PDA&#x27;s, or anything else I could get my hands on, trying to find out what sourcery was making them work.&lt;&#x2F;p&gt;
&lt;p&gt;As I got older, I learned more and more about how to get computers to do the things I want.&lt;&#x2F;p&gt;
&lt;p&gt;My distinct memory of introducing myself to the world of computer hackery at a basic level was getting the 2013 version of Black Mesa, at the time still a Source mod,
to work on my &lt;a href=&quot;https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;breakingbad&#x2F;comments&#x2F;wnksw&#x2F;so_i_was_watching_the_season_premiere_on_my_laptop&quot;&gt;Dell Lattitude D630&lt;&#x2F;a&gt;, a laptop I dearly wish I still had today.&lt;&#x2F;p&gt;
&lt;p&gt;It ran horrendously.&lt;&#x2F;p&gt;
&lt;p&gt;Still, doing this got my foot in the game, and from there I started to learn about windows tweaks, game mods, and going forward, my favorite would become...&lt;&#x2F;p&gt;
&lt;h3 id=&quot;linux&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#linux&quot; aria-label=&quot;Anchor link for: linux&quot;&gt;Linux&lt;&#x2F;a&gt;&lt;&#x2F;h3&gt;
&lt;p&gt;To save the longer rant for a later day, I will simply say this - the second I got familier with Linux, I felt more at home than I ever had on Windows.&lt;&#x2F;p&gt;
&lt;p&gt;Want to run a game server 24&#x2F;7?&lt;br &#x2F;&gt;
&lt;em&gt;No problem.&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Need more file storage, but don&#x27;t have any more to add to my hardware?&lt;br &#x2F;&gt;
&lt;em&gt;Network attached storage with NFS.&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Linux doesn&#x27;t just lower the guardrails preventing me from doing what I want, but along with the community helps and elevates me to doing anything I want.&lt;&#x2F;p&gt;
&lt;p&gt;My current operating system for all of my systems is &lt;a href=&quot;https:&#x2F;&#x2F;nixos.org&quot;&gt;NixOS&lt;&#x2F;a&gt;, something i also hope to write about very soon.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;games&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#games&quot; aria-label=&quot;Anchor link for: games&quot;&gt;Games&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;I grew up as a heavy Nintendo kid, having grown up with a Wii, a 3DS, and a lot of Mario.
Since then, I have moved to a nearly Steam&#x2F;GOG exclusive library, with some evil games that i had to get on.. Epic Games.&lt;&#x2F;p&gt;
&lt;p&gt;I&#x27;m very sorry.&lt;&#x2F;p&gt;
&lt;p&gt;Regardless, I have compiled a list of many of my &lt;a href=&quot;https:&#x2F;&#x2F;nixfox.ca&#x2F;blog&#x2F;games&#x2F;&quot;&gt;favorite games&lt;&#x2F;a&gt;!
Check it out if you&#x27;d like!&lt;&#x2F;p&gt;
&lt;h2 id=&quot;hikes-walks-and-nature&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#hikes-walks-and-nature&quot; aria-label=&quot;Anchor link for: hikes-walks-and-nature&quot;&gt;Hikes, walks, and nature&lt;&#x2F;a&gt;&lt;&#x2F;h2&gt;
&lt;p&gt;I&#x27;ve always loved going out on walks - I&#x27;m a naturally fast walker, and can do a my entire town&#x27;s round trip in just an hour! Summer is my favorite season, because I&#x27;m given that many more chances to get out there without feeling like &lt;em&gt;the frost&lt;&#x2F;em&gt; will take me.&lt;&#x2F;p&gt;
&lt;p&gt;I even plan to go on some proper hiking paths before the summer is out! Knowing the paths I wanna take is inspired by one very special friend who gave me the locations and the grit to get myself out there :)&lt;&#x2F;p&gt;
</description>
      </item>
      <item>
          <title>Contact info and socials</title>
          <pubDate>Tue, 01 Jul 2025 23:45:15 -0400</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/info/contact/</link>
          <guid>https://nixfox.ca/info/contact/</guid>
          <description xml:base="https://nixfox.ca/info/contact/">&lt;p&gt;I&#x27;m not on too many platforms, but the best way to reach me today is email and Matrix!&lt;&#x2F;p&gt;
&lt;h4 id=&quot;main-platforms&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#main-platforms&quot; aria-label=&quot;Anchor link for: main-platforms&quot;&gt;Main platforms&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;✉️ Email:&lt;&#x2F;strong&gt; &lt;a href=&quot;mailto:bun@nixfox.ca&quot;&gt;bun@nixfox.ca&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;💬 Matrix:&lt;&#x2F;strong&gt; &lt;a href=&quot;https:&#x2F;&#x2F;matrix.to&#x2F;#&#x2F;@bun:nixfox.ca&quot;&gt;@bun:nixfox.ca&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;🐦 Mastodon:&lt;&#x2F;strong&gt; &lt;a href=&quot;https:&#x2F;&#x2F;social.nixfox.ca&#x2F;@bun&quot;&gt;@bun@social.nixfox.ca&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;🗞️ Rss:&lt;&#x2F;strong&gt; &lt;a href=&quot;&#x2F;authors&#x2F;aubun&#x2F;rss.xml&quot;&gt;&#x2F;authors&#x2F;aubun&#x2F;rss.xml&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;Here are my other socials,&lt;br &#x2F;&gt;
which i&#x27;m active on from time to time.&lt;&#x2F;p&gt;
&lt;h4 id=&quot;social-platforms&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#social-platforms&quot; aria-label=&quot;Anchor link for: social-platforms&quot;&gt;Social platforms&lt;&#x2F;a&gt;&lt;&#x2F;h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;💬 Discord:&lt;&#x2F;strong&gt; &lt;a href=&quot;https:&#x2F;&#x2F;discordapp.com&#x2F;users&#x2F;1418843649185415280&quot;&gt;nonbun_&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;🖼️ Instagram:&lt;&#x2F;strong&gt; &lt;a href=&quot;https:&#x2F;&#x2F;www.instagram.com&#x2F;viceebun&quot;&gt;viceebun&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;🐦 Twitter:&lt;&#x2F;strong&gt; &lt;a href=&quot;https:&#x2F;&#x2F;x.com&#x2F;viceebun&quot;&gt;viceebun&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;🎮 Steam:&lt;&#x2F;strong&gt; &lt;a href=&quot;https:&#x2F;&#x2F;steamcommunity.com&#x2F;id&#x2F;viceebun&quot;&gt;viceebun&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;🎵 Spotify:&lt;&#x2F;strong&gt; &lt;a href=&quot;https:&#x2F;&#x2F;open.spotify.com&#x2F;user&#x2F;31vdhyhqi3kw7f6n6hgddu44mm5a&quot;&gt;bun&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;📻 Last.fm:&lt;&#x2F;strong&gt; &lt;a href=&quot;https:&#x2F;&#x2F;www.last.fm&#x2F;user&#x2F;viceebun&quot;&gt;viceebun&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h3 id=&quot;security-keys&quot;&gt;&lt;a class=&quot;zola-anchor&quot; href=&quot;#security-keys&quot; aria-label=&quot;Anchor link for: security-keys&quot;&gt;Security keys&lt;&#x2F;a&gt;&lt;&#x2F;h3&gt;
&lt;p&gt;My ssh pubkey can be found &lt;a href=&quot;&#x2F;bun-ssh.pub&quot;&gt;here&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
</description>
      </item>
      <item>
          <title>New Website</title>
          <pubDate>Wed, 02 Jul 2025 00:00:00 +0000</pubDate>
          <author>bun@nixfox.ca</author>
          <link>https://nixfox.ca/nixfox/julywebsite/</link>
          <guid>https://nixfox.ca/nixfox/julywebsite/</guid>
          <description xml:base="https://nixfox.ca/nixfox/julywebsite/">&lt;p&gt;If anyone had previously seen this website, you may have noticed this is now a very different page.&lt;&#x2F;p&gt;
&lt;p&gt;For the first time, I have decided to sit down and properly attack some HTML and CSS (as well as some evil JavaScript) head-on to create a homepage I can be proud of.&lt;&#x2F;p&gt;
&lt;p&gt;When rebuiling, I knew I needed to plan ahead for what I needed; a blog, hand written HTML, and automatic indexing.&lt;&#x2F;p&gt;
&lt;p&gt;And I found &lt;a href=&quot;https:&#x2F;&#x2F;www.getzola.org&quot;&gt;Zola&lt;&#x2F;a&gt; to be just the framework for my needs.&lt;&#x2F;p&gt;
&lt;p&gt;Zola is a &lt;a href=&quot;https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Static_site_generator&quot;&gt;static page generator&lt;&#x2F;a&gt;, which allows you to export a developed page using only a few templates and CommonMark text files.&lt;&#x2F;p&gt;
&lt;p&gt;I chose a static site generator because databases horrify me, and I&#x27;d prefer to have all the code available in &lt;a href=&quot;https:&#x2F;&#x2F;git.nixfox.ca&#x2F;Bun&#x2F;nixfox-reborn.git&quot;&gt;one Git repo&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;p&gt;While many things are still to come, eg, more blogs, more images, and more software talks, I believe this site acts as the foundation for a stable home for both NixFox and my own blogging going forward.&lt;&#x2F;p&gt;
&lt;p&gt;Stay tuned for what&#x27;s next!&lt;&#x2F;p&gt;
</description>
      </item>
    </channel>
</rss>
