<?xml version="1.0" encoding="utf-8"?>

<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  <title>thechelsuk - Weak Notes ways only</title>
  <subtitle type="html">// A working in public, second brain</subtitle>
  <link rel="self" type="application/atom+xml" href="https://thechels.uk/ways.xml" />
  <link rel="alternate" type="text/html" href="https://thechels.uk" />
  <generator>Jekyll</generator>
  <rights>thechelsuk</rights>
  <updated>2026-04-08T04:09:47Z</updated>
  <author>
    <name>thechelsuk</name>
    <email>feedback@thechels.uk</email>
    <uri>https://thechels.uk/</uri>
  </author>
  <id>https://thechels.uk/</id>

  
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to use Ollama from the terminal]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//ollama-cli-quick-ref" />
        <id>https://thechels.uk/ollama-cli-quick-ref</id>
        <published>2026-04-01T00:00:00Z</published>
        <updated>2026-04-01T00:00:00Z</updated>
        <author>
          <name>thechelsuk</name>
          <uri>https://thechels.uk//ollama-cli-quick-ref</uri>
        </author>
        <content type="html"><![CDATA[
          <p>Just for testing LLMs locally to see what the fuss is about, here is a short cheat sheet on using Ollama in the terminal. For this example I’ve used the Qwen 3.5 4B model, but it can be replaced with any model one has installed.</p>

<p>For more details, see the <a href="https://ollama.com/docs/cli">Ollama documentation</a>.</p>

<h2 id="basics">Basics</h2>

<ul>
  <li>List installed models
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama list</code></li>
    </ul>
  </li>
  <li>Show model info
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama show qwen3.5-4b</code></li>
    </ul>
  </li>
  <li>Pull a model
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama pull qwen3.5-4b</code></li>
    </ul>
  </li>
  <li>Remove a model
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama rm qwen3.5-4b</code></li>
    </ul>
  </li>
  <li>List running models / server status
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama ps</code></li>
    </ul>
  </li>
</ul>

<h2 id="chat--generate">Chat &amp; generate</h2>

<ul>
  <li>Simple one‑off prompt
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama run qwen3.5-4b "Explain this Python error"</code></li>
    </ul>
  </li>
  <li>Interactive chat session
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama run qwen3.5-4b</code>
        <ul>
          <li>Type messages, press Enter</li>
          <li><code class="language-plaintext highlighter-rouge">Ctrl+C</code> to stop generation or exit</li>
        </ul>
      </li>
    </ul>
  </li>
  <li>Pass a system / role prompt
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama run qwen3.5-4b -s "You are a coding assistant."</code></li>
    </ul>
  </li>
</ul>

<h2 id="using-files">Using files</h2>

<ul>
  <li>Prompt from a file
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama run qwen3.5-4b --file prompt.txt</code></li>
    </ul>
  </li>
  <li>Pipe input
    <ul>
      <li><code class="language-plaintext highlighter-rouge">cat code.py | ollama run qwen3.5-4b</code></li>
    </ul>
  </li>
</ul>

<h2 id="server--api">Server &amp; API</h2>

<ul>
  <li>Start the Ollama server manually
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama serve</code></li>
    </ul>
  </li>
  <li>Chat via HTTP API
    <ul>
      <li><code class="language-plaintext highlighter-rouge">curl http://localhost:11434/api/chat -d '{ "model": "qwen3.5-4b", "messages": [{"role": "user", "content": "Hello"}] }'</code></li>
    </ul>
  </li>
</ul>

<h2 id="managing-models">Managing models</h2>

<ul>
  <li>Create a model from a Modelfile
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama create my-model -f Modelfile</code></li>
    </ul>
  </li>
  <li>Copy / tag a model
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama cp qwen3.5-4b my-qwen-dev</code></li>
    </ul>
  </li>
  <li>Upgrade a model to latest
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama pull qwen3.5-4b</code> (re-pulls &amp; updates)</li>
    </ul>
  </li>
</ul>

<h2 id="useful-flags">Useful flags</h2>

<ul>
  <li>Set temperature
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama run qwen3.5-4b -t 0.2</code></li>
    </ul>
  </li>
  <li>Set max tokens
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama run qwen3.5-4b -m 512</code></li>
    </ul>
  </li>
  <li>JSON output (useful for tools)
    <ul>
      <li><code class="language-plaintext highlighter-rouge">ollama run qwen3.5-4b --format json "Explain this code"</code></li>
    </ul>
  </li>
</ul>

          <p><center>***</center></p>
          <p> // Published 2026-04-01, with 350 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://electroverse.octopus.energy/sign-up/magic?referralCode=aglow-louse-16571">Electroverse - £5 free credit when you join.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to spend Zwift Drops]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//zwift-spend-drops" />
        <id>https://thechels.uk/zwift-spend-drops</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Zwift Insider</name>
          <uri>https://zwiftinsider.com/what-to-buy-at-each-zwift-level/</uri>
        </author>
        <content type="html"><![CDATA[
          <p><em>As you progress through Zwift’s levels, you’ll unlock access to items in the Drop Shop which can be purchased with your hard-earned Drops. This inevitably leads to questions: do I buy the frame that just became available? What if there’s a faster frame unlocked at the next level? Or maybe some zippy wheels?.</em></p>

<ol>
  <li>Go to Website for guide on what to buy at each Zwift level.</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 68 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://cybaa.io/?ref=thechelsuk">Cybaa - Monitor your domains for security issues and get real time alerts.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to compare bikes in Zwift]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//zwift-compare-bikes" />
        <id>https://thechels.uk/zwift-compare-bikes</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Zwifter Bikes</name>
          <uri>https://zwifterbikes.web.app/</uri>
        </author>
        <content type="html"><![CDATA[
          <p><strong><em>This website allows you to find the best bike for the route you want to ride, and compare the stats of different bikes.</em></strong></p>

<ol>
  <li>Go to website</li>
  <li>Use the filters to find the bikes you want to compare.</li>
  <li>Click the “Compare” button to see a side-by-side comparison of the bikes’ stats and attributes.</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 54 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/gb/app/tomoz/id6748755747">Tomoz - Plan for tomorrow, today on iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to watch NWSL games on TV]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//watch-nwsl-games-in-uk" />
        <id>https://thechels.uk/watch-nwsl-games-in-uk</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting NWSL</name>
          <uri>https://plus.nwslsoccer.com/</uri>
        </author>
        <content type="html"><![CDATA[
          <p><strong><em>Note: Account seems to support multiple logins and no limits on “active” so it appears possible to watch multiple games on multiple devices.</em></strong></p>

<h2 id="in-browser">In Browser</h2>

<ol>
  <li>Go to <a href="https://plus.nwslsoccer.com/">https://plus.nwslsoccer.com/</a> and sign-in to your account.</li>
  <li>Click on the “Live” tab to see the available games.</li>
  <li>Select the game you want to watch and click on it.</li>
</ol>

<h2 id="in-app--on-tv">In App / On TV</h2>

<ol>
  <li>Go to NWSL App and sign in using your account.</li>
  <li>Pick Game</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 78 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/gb/app/shortkeys/id6755919256">ShortKeys - Multi-line text replacement on iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to run mole]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//using-mole" />
        <id>https://thechels.uk/using-mole</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Mole</name>
          <uri>https://github.com/tw93/Mole/blob/main/README.md</uri>
        </author>
        <content type="html"><![CDATA[
          <h2 id="features">Features</h2>

<ul>
  <li>All-in-one toolkit: Combines CleanMyMac, AppCleaner, DaisyDisk, and iStat Menus in a single binary</li>
  <li>Deep cleaning: Removes caches, logs, and browser leftovers to reclaim gigabytes of space</li>
  <li>Smart uninstaller: Removes apps plus launch agents, preferences, and hidden remnants</li>
  <li>Disk insights: Visualizes usage, finds large files, rebuilds caches, and refreshes system services</li>
  <li>Live monitoring: Shows real-time CPU, GPU, memory, disk, and network stats</li>
</ul>

<h2 id="quick-start">Quick Start</h2>

<p>Install via Homebrew</p>

<p><code class="language-plaintext highlighter-rouge">brew install mole</code></p>

<p>Or via script</p>

<p><code class="language-plaintext highlighter-rouge"># Optional args: -s latest for main branch code, -s 1.17.0 for specific version
curl -fsSL &lt;https://raw.githubusercontent.com/tw93/mole/main/install.sh&gt; | bash</code></p>

<p><em>Note: Mole is built for macOS. An experimental Windows version is available in the windows branch for early adopters.</em></p>

<h2 id="run">Run</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mo                           # Interactive menu
mo clean                     # Deep cleanup
mo uninstall                 # Remove apps + leftovers
mo optimize                  # Refresh caches &amp; services
mo analyze                   # Visual disk explorer
mo status                    # Live system health dashboard
mo purge                     # Clean project build artifacts
mo installer                 # Find and remove installer files

mo touchid                   # Configure Touch ID for sudo
mo completion                # Set up shell tab completion
mo update                    # Update Mole
mo update --nightly          # Update to latest unreleased main build, script install only
mo remove                    # Remove Mole from system
mo --help                    # Show help
mo --version                 # Show installed version
</code></pre></div></div>

<h2 id="preview-safely">Preview safely</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mo clean --dry-run
mo uninstall --dry-run
mo purge --dry-run

# Also works with: optimize, installer, remove, completion, touchid enable

mo clean --dry-run --debug   # Preview + detailed logs
mo optimize --whitelist      # Manage protected optimization rules
mo clean --whitelist         # Manage protected caches
mo purge --paths             # Configure project scan directories
mo analyze /Volumes          # Analyze external drives only
</code></pre></div></div>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 296 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://join.monzo.com/c/tr0bxrb7">Monzo Bank - Join and get up to £50</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to use my spare UGREEN MU101 Wireless Mouse]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//use-spare-ugreen-mouse" />
        <id>https://thechels.uk/use-spare-ugreen-mouse</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting UGREEN</name>
          <uri>https://manuals.plus/ugreen/mu101-ergonomic-wireless-mouse-manual?expand_article=1#bluetooth_connection</uri>
        </author>
        <content type="html"><![CDATA[
          <p>Name: UGREEN MU101 Ergonomic Wireless Mouse</p>

<ol>
  <li>Take the receiver out and insert it into USB port.</li>
  <li>Turn on the product and the indicator lights on.</li>
  <li>Randomly click the mouse to make sure it works normally.</li>
</ol>

<h2 id="forced-pairing-usb">Forced Pairing (USB)</h2>

<p>If you cannot pair the product with your devices, please do as follows:</p>

<ol>
  <li>Take the receiver out of the USB port.</li>
  <li>Press and hold “Left + Right + scroll wheel” simultaneously for 3 seconds until the indicator starts blinking.</li>
  <li>Insert the receiver into the device.</li>
</ol>

<h3 id="bluetooth-connection">Bluetooth Connection</h3>

<ol>
  <li>Activate the Bluetooth on the connected device (laptop/tablet/mobile phone, etc.)</li>
  <li>Turn on the mouse and press the switch button. Bluetooth pairing mode starts when the indicator flashes blue.</li>
  <li>For first-time use, a window will pop up for Windows 10 or later. Please follow the steps to proceed. For other systems, please enter the Bluetooth devices list, search “UGREEN BLE Mouse” and connect.</li>
  <li>Randomly click or move the mouse to make sure it works normally.</li>
</ol>

<h2 id="forced-pairing-bluetooth">Forced Pairing (Bluetooth)</h2>

<p>If you cannot pair the product with your devices, please do as follows:</p>

<ol>
  <li>Press and hold “Left + Right + scroll wheel” simultaneously for 3 seconds until the indicator starts blinking.</li>
  <li>Enter the Bluetooth devices list of the connected device, search the mouse Bluetooth and connect.</li>
</ol>

<h2 id="operating-system-switching">Operating System Switching</h2>

<ol>
  <li>The exact usage of scroll wheel, forward and back buttons varies from different operating systems.</li>
  <li>The product defaults to Windows, when using on macOS, please press and hold the switch button for 1 second.</li>
</ol>

<h2 id="dpi-adjustment">DPI Adjustment</h2>

<ol>
  <li>The indicator blinks as follows according to different DPI adjustment.</li>
  <li>The DPI value defaults to 1600, press DPI switch button to adjust the mouse sensitivity in the order of 1600 &gt; 2000 &gt; 4000 &gt; 1000.</li>
</ol>

<h2 id="low-battery">Low Battery</h2>

<ol>
  <li>The mouse =II turn off automatically when the battery is too low.</li>
  <li>When the indicator keeps blinking (about 5 seconds), it indicates that the battery is lower than 5%. Please change a new battery for further performance.</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 342 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://tech.referrals.octopus.energy/ulLGI6SC">Octopus EV - £25 Visa card when you install a charger.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to create various post types for thechelsuk]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//site-post-types" />
        <id>https://thechels.uk/site-post-types</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>thechelsuk</name>
          <uri>https://thechels.uk//site-post-types</uri>
        </author>
        <content type="html"><![CDATA[
          <p>This site has various post types, each with their own format and process for creation. Below are the steps to create each type of post.</p>

<h2 id="quote-posts">Quote posts</h2>

<ul>
  <li>Capture the selection on a page in safari</li>
  <li>Share to Drafts and click Save</li>
  <li>This will create a new draft with the quote template.</li>
  <li>Add commentary if desired in the placeholder</li>
  <li>Run the <code class="language-plaintext highlighter-rouge">Quote &gt; blog</code> drafts action which put the file in working copy ready to commit and push.</li>
</ul>

<h2 id="regular-posts">Regular posts</h2>

<ul>
  <li>Create a new draft with the regular post template</li>
  <li>Add the title on the first line</li>
  <li>Add the content below</li>
  <li>Run the <code class="language-plaintext highlighter-rouge">Post &gt; blog</code> drafts action which put the file in working copy ready to commit and push.</li>
</ul>

<h2 id="til-posts">TIL posts</h2>

<ul>
  <li>Create a new draft with the TIL post template</li>
  <li>Add the title on the first line</li>
  <li>Add the content below</li>
  <li>Run the <code class="language-plaintext highlighter-rouge">TIL -&gt; Post</code> drafts action which put the file in working copy ready to commit and push.</li>
</ul>

<h2 id="rss-only-posts">RSS only posts</h2>

<ul>
  <li>Create a new draft with the RSS post template</li>
  <li>Add the title on the first line</li>
  <li>Add the content below</li>
  <li>Run the <code class="language-plaintext highlighter-rouge">RSS -&gt; Post</code> drafts action which put the file in working copy ready to commit and push.</li>
</ul>

<h2 id="mixtape-monthly-post">Mixtape Monthly Post</h2>

<ul>
  <li>Monthly, create a mixtape running the shortcut</li>
  <li>Open the produced and resize to 832px width</li>
  <li>Copy the image to the<code class="language-plaintext highlighter-rouge">image/mixtapes/</code> folder ensuring the name matches the format <code class="language-plaintext highlighter-rouge">yyyy-MM.png</code></li>
  <li>Push a commit to Prod</li>
</ul>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 264 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://electroverse.octopus.energy/sign-up/magic?referralCode=aglow-louse-16571">Electroverse - £5 free credit when you join.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to create navigation for thechelsuk]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//site-navigations" />
        <id>https://thechels.uk/site-navigations</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>thechelsuk</name>
          <uri>https://thechels.uk//site-navigations</uri>
        </author>
        <content type="html"><![CDATA[
          <p>This site has various navigation types, managed in the <code class="language-plaintext highlighter-rouge">_config.yml</code> file.</p>

<ol>
  <li>Open the <code class="language-plaintext highlighter-rouge">_config.yml</code> file.</li>
  <li>Find the <code class="language-plaintext highlighter-rouge">navigation</code> type by the comment line.</li>
  <li>Add a new item to the list with title and link.</li>
  <li>Push a commit to Prod in working copy or VS Code.</li>
</ol>

<p><em>note: the navs are sorted by the rendering template so the order in the yaml file doesn’t matter in most cases.</em></p>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 74 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://youfibre.com">YouFibre - Up to £100 when taking a broadband plan with code 5QGYSF</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to create various data types for thechelsuk]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//site-data-types" />
        <id>https://thechels.uk/site-data-types</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>thechelsuk</name>
          <uri>https://thechels.uk//site-data-types</uri>
        </author>
        <content type="html"><![CDATA[
          <p>This site has various data types, each with their own format and process for creation. Below are the steps to create each type of data.</p>

<h2 id="add-a-film">Add a Film</h2>

<ul>
  <li>In Drafts;
    <ul>
      <li>create a new draft with the film template add a film title on the first line</li>
      <li>Run action to search film to get the correct IMDB ID it’ll be added to the draft automatically</li>
      <li>Add the rating in the placeholder</li>
      <li>Run the  <code class="language-plaintext highlighter-rouge">Add Film</code> action which will trigger the GitHub Action workflow.</li>
    </ul>
  </li>
  <li>Or;
    <ul>
      <li>On Mac; Run the python script typing in a Film IMDB code and a Rating.</li>
      <li>In the browser; Run a workflow dispatch - entering the inputs film IMDB and Rating</li>
    </ul>
  </li>
</ul>

<h2 id="add-a-book">Add a Book</h2>

<ul>
  <li>Run a workflow dispatch - entering the ISBN</li>
  <li>Download the cover image</li>
  <li>Resize to a height of 183px</li>
  <li>Save the cover image into the <code class="language-plaintext highlighter-rouge">images/books</code> folder ensuring the name matches the format <code class="language-plaintext highlighter-rouge">book-[isbn].png</code></li>
  <li>Push a commit to Prod</li>
</ul>

<h2 id="other-types">Other types</h2>

<ul>
  <li>Add a row to the yaml file as needed.</li>
  <li>Push a commit to Prod in working copy or VS Code.</li>
</ul>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 197 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/uk/app/engman/id6747295473">EngMan - Get the Engineering Manager Coach Cards App on iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to setup my MX Master Mouse]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//setup-mx-master-mouse" />
        <id>https://thechels.uk/setup-mx-master-mouse</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Logitech Options</name>
          <uri>https://www.logitech.com/en-gb/software/logi-options-plus</uri>
        </author>
        <content type="html"><![CDATA[
          <ol>
  <li>Use Logi Options+ software to customize the buttons and settings of your MX Master Mouse.</li>
</ol>

<p><em>note: you can also see their <a href="https://support.logi.com/hc/en-gb/articles/360035271133-Getting-Started-MX-Master-3">support page for more information</a></em></p>

<h2 id="setup">Setup</h2>

<ol>
  <li>Make sure the mouse is turned on — the number 1 LED on the bottom of the mouse should blink quickly.
 NOTE: If the LED is not blinking quickly, perform a long press (three seconds).</li>
  <li>Choose how you want to connect:
    <ul>
      <li>Use the included wireless USB receiver
        <ul>
          <li>Plug the receiver into a USB port on your computer</li>
        </ul>
      </li>
      <li>Connect directly using Bluetooth
        <ul>
          <li>Open the Bluetooth settings on your computer to complete the pairing.</li>
        </ul>
      </li>
    </ul>
  </li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 114 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://cybaa.io/?ref=thechelsuk">Cybaa - Monitor your domains for security issues and get real time alerts.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to reset WiFi on Homebridge]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//reset-wifi-homebridge" />
        <id>https://thechels.uk/reset-wifi-homebridge</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Homebridge</name>
          <uri>https://github.com/homebridge/homebridge-raspbian-image/wiki/How-To-Reset-WiFi</uri>
        </author>
        <content type="html"><![CDATA[
          <p>If you have a Raspberry Pi running the Homebridge Raspberry Pi and need to disconnect it from your local WiFi network, you can do this by following these steps.</p>

<p>Run sudo hb-config and select the Networking option to run the NetworkManager Terminal UI.</p>

<ol>
  <li>This will bring up this screen, select Edit a connection.</li>
  <li>Select your WiFi connection from the list and delete it.</li>
  <li>Confirm you want to delete it.</li>
  <li>Exit the NetworkManager Terminal UI and reboot your Raspberry Pi.</li>
</ol>

<p><em>After rebooting, your Raspberry Pi will no longer be connected to your local WiFi network. You can then set up a new WiFi connection using the Homebridge Config UI X or by running sudo hb-config and selecting the Networking option again.</em></p>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 122 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://join.monzo.com/c/tr0bxrb7">Monzo Bank - Join and get up to £50</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to reset Apple TV volume remote]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//reset-appletv-volume-remote" />
        <id>https://thechels.uk/reset-appletv-volume-remote</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Apple Support</name>
          <uri>https://support.apple.com/en-gb/HT213437</uri>
        </author>
        <content type="html"><![CDATA[
          <p>If your Apple TV remote stops controlling the volume, you can reset it by following these steps:</p>

<ol>
  <li>Press and hold the TV/Control Centre button and the Volume Down button at the same time.</li>
  <li>Hold the buttons down for about 5 seconds, or until the status light on your Apple TV turns off and on again.</li>
  <li>Release the buttons. Then wait 5 to 10 seconds for a Connection Lost notification to appear on your TV screen.</li>
  <li>Wait while your remote restarts. When the Connected notification appears, you can use your remote.</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 92 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://youfibre.com">YouFibre - Up to £100 when taking a broadband plan with code 5QGYSF</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to rename and redirect a domain on Cloudflare]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//rename-redirect-cloudflare" />
        <id>https://thechels.uk/rename-redirect-cloudflare</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Average Name</name>
          <uri>https://average.name/ways/redirect-domain</uri>
        </author>
        <content type="html"><![CDATA[
          <p>If you own two domains, and want one to redirect cleanly to the other while stuck on Cloudflare, the configuration is complex.</p>

<p>Say, for example, you want requests to redirect as follows:</p>

<ul>
  <li>avg.name to average.name</li>
  <li>foo.avg.name to foo.average.name</li>
  <li>bar.avg.name/baz to bar.average.name/baz</li>
  <li>etc.</li>
</ul>

<p>First, ensure both domains are listed in your Cloudflare Dashboard under “Websites”. The target domain (e.g. average.name) should already be configured with appropriate DNS for its subdomains.</p>

<p>Next, for clients to attempt to resolve user requests, your alias domain (e.g. avg.name) must have some DNS records. Configure the alias domain with two CNAME records:</p>

<ul>
  <li>CNAME @ average.name – point root to the target domain</li>
  <li>CNAME * average.name – point all subdomains to the target domain</li>
</ul>

<p>Finally, in the “Rules” section of your alias domain, find the “Redirect Rules” section. Create a rule as follows:</p>

<ul>
  <li>When: any incoming request’s Hostname ends with the alias domain (e.g. the expression (ends_with(http.host, “avg.name”))),</li>
  <li>Then: run a Dynamic URL redirect with the expression concat(“https://”, substring(http.host, 0, -8), “average.name”, http.request.uri).
    <ul>
      <li>Replace the -8 value with the length of your alias domain.</li>
    </ul>
  </li>
  <li>Status code as appropriate (e.g. 302).</li>
  <li>Enable “Preserve query string”.</li>
  <li>Name the rule something appropriate like “Redirect to main”.</li>
</ul>

<p>Then deploy the new rule.</p>

<p>After a few moments, all requests at your alias domain will redirect as expected.</p>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 224 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/gb/app/shortkeys/id6755919256">ShortKeys - Multi-line text replacement on iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to remove Microsoft accounts with Edge]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//remove-microsoft-accounts-with-edge" />
        <id>https://thechels.uk/remove-microsoft-accounts-with-edge</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Microsoft Edge</name>
          <uri>edge://signin-internals/</uri>
        </author>
        <content type="html"><![CDATA[
          <ol>
  <li>Open Microsoft Edge and type <code class="language-plaintext highlighter-rouge">edge://signin-internals/</code> in the address bar, then press Enter.</li>
  <li>Scroll down to the “Accounts” section.</li>
  <li>Find the Microsoft account you want to remove.</li>
  <li>Click the “Remove” button next to the account.</li>
  <li>Confirm the removal when prompted.</li>
  <li>Restart Microsoft Edge to ensure the changes take effect.</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 53 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/gb/app/hiyd/id6746853559">Hiyd - The Jekyll companion app for iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to run Pytest with coverage]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//pytest-with-coverage" />
        <id>https://thechels.uk/pytest-with-coverage</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>thechelsuk</name>
          <uri>https://thechels.uk//pytest-with-coverage</uri>
        </author>
        <content type="html"><![CDATA[
          <p>Run the following in Terminal to execute Pytest with coverage reporting.</p>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>pytest <span class="nt">--cov</span><span class="o">=</span><span class="nb">.</span> <span class="nt">--cov-report</span><span class="o">=</span>html
</code></pre></div></div>

<p>This command will run all tests in the current directory and generate an HTML report showing the code coverage. You can open the <code class="language-plaintext highlighter-rouge">htmlcov/index.html</code> file in your browser to view the coverage details.</p>

<p>Add htmlcov to .gitignore to avoid committing coverage reports to version control.</p>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 71 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/gb/app/shortkeys/id6755919256">ShortKeys - Multi-line text replacement on iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to add a Hue Dimmer Switch to HomeKit]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//hue-dimmer-switch-and-homekit" />
        <id>https://thechels.uk/hue-dimmer-switch-and-homekit</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Reddit</name>
          <uri>https://www.reddit.com/r/Hue/comments/yopggl/comment/ivg11ri</uri>
        </author>
        <content type="html"><![CDATA[
          <ol>
  <li>When adding the Hue Dimmer Switch to HomeKit, it will be added as a “Hue Dimmer Switch” accessory.</li>
  <li>It often appears in the default room rather than the room you have selected during setup.</li>
  <li>To move the Hue Dimmer Switch to the correct room, go to the Home app, find the “Hue Dimmer Switch” accessory, and tap on it.</li>
  <li>Tap on the “Settings” icon (gear icon) in the top right corner.</li>
  <li>Scroll down to the “Room” section and tap on it.</li>
  <li>Select the correct room from the list.</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 90 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://join.monzo.com/c/tr0bxrb7">Monzo Bank - Join and get up to £50</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to run Jekyll locally]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//how-to-run-jekyll" />
        <id>https://thechels.uk/how-to-run-jekyll</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>thechelsuk</name>
          <uri>https://thechels.uk//how-to-run-jekyll</uri>
        </author>
        <content type="html"><![CDATA[
          <ul>
  <li>
    <p>Clone the repository:</p>

    <div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code> git clone your_repo_url
</code></pre></div>    </div>
  </li>
  <li>
    <p>Navigate into the project directory:</p>

    <div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code> <span class="nb">cd </span>repo_name
</code></pre></div>    </div>
  </li>
  <li>
    <p>Install the required dependencies:</p>

    <div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code> bundle <span class="nb">install</span>
</code></pre></div>    </div>
  </li>
  <li>
    <p>Build the site:</p>

    <div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code> bundle <span class="nb">exec </span>jekyll build
</code></pre></div>    </div>
  </li>
  <li>
    <p>Build and serve the site locally:</p>

    <div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code> bundle <span class="nb">exec </span>jekyll serve <span class="nt">--watch</span>
</code></pre></div>    </div>
  </li>
  <li>
    <p>Open your browser and go to <code class="language-plaintext highlighter-rouge">&lt;http://localhost:4000&gt;</code> to see your site.</p>
  </li>
  <li>
    <p>To stop the server, press <code class="language-plaintext highlighter-rouge">Ctrl + C</code> in the terminal.</p>
  </li>
</ul>

<p><em>Make sure you have Ruby and Bundler installed on your machine before running these commands.</em></p>

<ul>
  <li>
    <p>If you don’t have a gemfile and bundler, you should just be able to run:</p>

    <div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code> jekyll serve <span class="nt">--watch</span>
</code></pre></div>    </div>
  </li>
</ul>

<p>This will start the Jekyll server and watch for changes in your files, allowing you to see updates in real-time as you edit your site.</p>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 189 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://github.com/sponsors/thechelsuk">Sponsor thechelsuk on GitHub</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to monitor SERPS with Google Alerts]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//google-account-monitor-serps" />
        <id>https://thechels.uk/google-account-monitor-serps</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Google</name>
          <uri>https://www.google.co.uk/alerts</uri>
        </author>
        <content type="html"><![CDATA[
          <ol>
  <li>Sign in to your Google account</li>
  <li>Create a new alert by entering the search term you want to monitor.</li>
  <li>Customize the alert settings, such as frequency, sources, language, and region.</li>
  <li>Click “Create Alert” to start receiving notifications.</li>
</ol>

<p>Google Alerts can help you monitor search engine results pages (SERPS) for specific keywords, allowing you to stay informed about new content, mentions, or changes related to your chosen topics.</p>

<p><em>Note: Alerts can be sent via email on a scheduled basis or as it happens, setting up as RSS feeds seems most practical and can be setup in NetNewsWire easily (in a specific folder).</em></p>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 103 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://join.monzo.com/c/tr0bxrb7">Monzo Bank - Join and get up to £50</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to get data from your Google account]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//google-account-export-data" />
        <id>https://thechels.uk/google-account-export-data</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Google</name>
          <uri>https://takeout.google.com/</uri>
        </author>
        <content type="html"><![CDATA[
          <p>Use Google Takeout to export data from your Google account. This service allows you to download a copy of your data from various Google products, such as YouTube.</p>

<ol>
  <li>Sign in to your Google account.</li>
  <li>Select the data you want to export by checking the boxes next to the products.</li>
  <li>Choose the file type and delivery method for your export.</li>
  <li>Click “Create Export” to start the process.</li>
  <li>Once the export is ready, you will receive a link to download your data.</li>
  <li>Upload the YouTube CSV data to <a href="https://apps.apple.com/us/app/id1596506190">Play.App</a> to manage inbox.</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 93 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://electroverse.octopus.energy/sign-up/magic?referralCode=aglow-louse-16571">Electroverse - £5 free credit when you join.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to manage your Google third-party app connections]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//google-account-app-connections" />
        <id>https://thechels.uk/google-account-app-connections</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Google</name>
          <uri>https://myaccount.google.com/connections?filters=3</uri>
        </author>
        <content type="html"><![CDATA[
          <ol>
  <li>Sign in to your Google account</li>
  <li>Delete any connections you don’t want or need. You can also manage permissions for each connection.</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 24 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/gb/app/hiyd/id6746853559">Hiyd - The Jekyll companion app for iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to find out what football is on TV]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//find-what-football-is-on-tv" />
        <id>https://thechels.uk/find-what-football-is-on-tv</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Live Football on TV</name>
          <uri>https://www.live-footballontv.com/</uri>
        </author>
        <content type="html"><![CDATA[
          <ol>
  <li>Go to the website.</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 6 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/gb/app/hiyd/id6746853559">Hiyd - The Jekyll companion app for iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to find Minecraft seeds maps]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//find-minecraft-seeds-maps" />
        <id>https://thechels.uk/find-minecraft-seeds-maps</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Chunkbase</name>
          <uri>https://www.chunkbase.com/apps/seed-map</uri>
        </author>
        <content type="html"><![CDATA[
          <p><em>This website allows you to find Minecraft seeds maps for different versions of the game. You can input the seed to generate a map of the world. The seed ID is in the game’s settings.</em></p>

<ol>
  <li>Go to website.</li>
  <li>Enter the seed ID.</li>
  <li>Select Minecraft version (probably latest).</li>
  <li>Choose dimension.</li>
  <li>Optionally select the features to see.</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 57 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/gb/app/tomoz/id6748755747">Tomoz - Plan for tomorrow, today on iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to do favicons on websites]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//favicons" />
        <id>https://thechels.uk/favicons</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Evil Martians</name>
          <uri>https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs</uri>
        </author>
        <content type="html"><![CDATA[
          <p>Instead of serving dozens of icons, all you need is just five icons and one JSON file.</p>

<p>For the browser using HTML:</p>

<div class="language-html highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">"icon"</span> <span class="na">href=</span><span class="s">"/favicon.ico"</span> <span class="na">sizes=</span><span class="s">"32x32"</span><span class="nt">&gt;</span>
<span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">"icon"</span> <span class="na">href=</span><span class="s">"/icon.svg"</span> <span class="na">type=</span><span class="s">"image/svg+xml"</span><span class="nt">&gt;</span>
<span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">"apple-touch-icon"</span> <span class="na">href=</span><span class="s">"/apple-touch-icon.png"</span><span class="nt">&gt;</span>
</code></pre></div></div>

<p>If you’re making a PWA (Progressive Web App), also add this to the HTML:</p>

<div class="language-html highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">"manifest"</span> <span class="na">href=</span><span class="s">"/manifest.webmanifest"</span><span class="nt">&gt;</span>
</code></pre></div></div>

<p>And a file with the web app manifest:</p>

<div class="language-json highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="err">//</span><span class="w"> </span><span class="err">manifest.webmanifest</span><span class="w">
</span><span class="p">{</span><span class="w">
  </span><span class="nl">"icons"</span><span class="p">:</span><span class="w"> </span><span class="p">[</span><span class="w">
    </span><span class="p">{</span><span class="w"> </span><span class="nl">"src"</span><span class="p">:</span><span class="w"> </span><span class="s2">"/icon-192.png"</span><span class="p">,</span><span class="w"> </span><span class="nl">"type"</span><span class="p">:</span><span class="w"> </span><span class="s2">"image/png"</span><span class="p">,</span><span class="w"> </span><span class="nl">"sizes"</span><span class="p">:</span><span class="w"> </span><span class="s2">"192x192"</span><span class="w"> </span><span class="p">},</span><span class="w">
    </span><span class="p">{</span><span class="w"> </span><span class="nl">"src"</span><span class="p">:</span><span class="w"> </span><span class="s2">"/icon-mask.png"</span><span class="p">,</span><span class="w"> </span><span class="nl">"type"</span><span class="p">:</span><span class="w"> </span><span class="s2">"image/png"</span><span class="p">,</span><span class="w"> </span><span class="nl">"sizes"</span><span class="p">:</span><span class="w"> </span><span class="s2">"512x512"</span><span class="p">,</span><span class="w"> </span><span class="nl">"purpose"</span><span class="p">:</span><span class="w"> </span><span class="s2">"maskable"</span><span class="w"> </span><span class="p">},</span><span class="w">
    </span><span class="p">{</span><span class="w"> </span><span class="nl">"src"</span><span class="p">:</span><span class="w"> </span><span class="s2">"/icon-512.png"</span><span class="p">,</span><span class="w"> </span><span class="nl">"type"</span><span class="p">:</span><span class="w"> </span><span class="s2">"image/png"</span><span class="p">,</span><span class="w"> </span><span class="nl">"sizes"</span><span class="p">:</span><span class="w"> </span><span class="s2">"512x512"</span><span class="w"> </span><span class="p">}</span><span class="w">
  </span><span class="p">]</span><span class="w">
</span><span class="p">}</span><span class="w">
</span></code></pre></div></div>

<p>Maskable icons should have bigger paddings. The safe zone is a 409×409 circle. Use maskable.app to check your icon.</p>

<p>That’s it. If you want to know how I got here, the compromises I had to make, and how to build a set like this from scratch in a step-by-step fashion, stay tuned in for the rest of the article.</p>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 277 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://youfibre.com">YouFibre - Up to £100 when taking a broadband plan with code 5QGYSF</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to export your contacts from Apple Contacts]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//export-contacts-archive" />
        <id>https://thechels.uk/export-contacts-archive</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Apple</name>
          <uri>https://support.apple.com/en-gb/guide/contacts/adrbdcfd32e6/mac</uri>
        </author>
        <content type="html"><![CDATA[
          <h2 id="export-selected-contacts">Export selected contacts</h2>

<ol>
  <li>Go to the Contacts app  on your Mac.</li>
  <li>Select one or more contacts.</li>
  <li>Choose File &gt; Export &gt; Export vCard, choose a location, then click Save.</li>
</ol>

<p><em>The contacts are exported as a vCard file (.vcf) only.</em></p>

<h2 id="export-all-contacts">Export all contacts</h2>

<ol>
  <li>Go to the Contacts app  on your Mac.</li>
  <li>Choose File &gt; Export &gt; Contacts Archive, choose a location, then click Save.</li>
</ol>

<p><em>The contacts are exported as an archive file (.abbu) only.</em></p>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 79 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/gb/app/mltply/id6747147316">Mltply - Chat-style maths practice for kids on iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to delete WhatsApp]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//delete-whatsapp" />
        <id>https://thechels.uk/delete-whatsapp</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting WhatsApp</name>
          <uri>https://faq.whatsapp.com/2138577903196467/</uri>
        </author>
        <content type="html"><![CDATA[
          <p><em>Note: Deleting your account is irreversible, this action can’t be reversed even if you delete WhatsApp by accident.</em></p>

<ul>
  <li>You can delete your account from within WhatsApp. You’ll need to be logged into the account you wish to delete, and account deletion can only be performed from your primary device, not from any linked devices.</li>
  <li>As a reminder, WhatsApp can’t restore or transfer chats, documents, media files, backups, or call history from deleted accounts.</li>
</ul>

<h2 id="to-delete-your-account">To delete your account</h2>

<ol>
  <li>Open WhatsApp.</li>
  <li>Go to Settings &gt; Account &gt; Delete My Account.</li>
  <li>Enter your phone number in full international format and tap Delete My Account.</li>
</ol>

<h2 id="deleting-your-account-will">Deleting your account will</h2>

<ul>
  <li>Delete your account info and profile photo.</li>
  <li>Delete you from all WhatsApp groups.</li>
  <li>Delete your WhatsApp message history backup.</li>
  <li>Remove you as a channel admin or follower, but not delete any updates you made or channel interactions like reactions or poll votes.</li>
  <li>Delete any channels you created if there aren’t additional channel admins.</li>
</ul>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 166 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://i.smarty.co.uk/CSj6iK">Smarty - Choose a gift card up to £20 when you join.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to replace the battery in your AirTag]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//change-airtag-battery" />
        <id>https://thechels.uk/change-airtag-battery</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Apple Support</name>
          <uri>https://support.apple.com/en-gb/102600</uri>
        </author>
        <content type="html"><![CDATA[
          <ol>
  <li>Press down on the polished stainless steel battery cover of your AirTag and rotate anticlockwise until the cover stops rotating.</li>
  <li>Remove the cover and battery.</li>
  <li>Insert a new CR2032 lithium 3V coin battery (available at most electronic stores and pharmacies) with the positive side facing up. You’ll hear a sound indicating that the battery has been connected.</li>
</ol>

<p><em>Keep batteries away from children. To further discourage accidental ingestion, use a bitterant-coated CR2032 battery, like the Duracell 2032 Lithium Coin Battery with Bitter Coating. Look for packaging that states “Compatible with Apple AirTag”. Some CR2032 batteries with bitterant coatings might not work with AirTag or other battery-powered products.</em></p>

<ol>
  <li>Replace the cover, making sure that the three tabs on the cover align with the three slots on the AirTag.</li>
  <li>Rotate the cover clockwise until it stops.</li>
</ol>

<p><em>When your AirTag battery is very low, a notification will appear on your iPhone, you can also check the Find My app to see if your AirTag battery needs to be replaced.</em></p>

<ol>
  <li>Open the Find My app.</li>
  <li>Tap the Items tab.</li>
  <li>Tap the AirTag whose battery charge you want to check.</li>
  <li>If the battery level is very low, Low Battery will appear under the name of your AirTag.</li>
</ol>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 207 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/gb/app/tomoz/id6748755747">Tomoz - Plan for tomorrow, today on iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to cancel a subscription on Apple]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//cancel-apple-subscription" />
        <id>https://thechels.uk/cancel-apple-subscription</id>
        <published>2026-03-01T00:00:00Z</published>
        <updated>2026-03-01T00:00:00Z</updated>
        <author>
          <name>Quoting Apple</name>
          <uri>https://support.apple.com/en-us/118428</uri>
        </author>
        <content type="html"><![CDATA[
          <p>ou can use your device to cancel a subscription from Apple.</p>

<ol>
  <li>Open the Settings app.</li>
  <li>Tap your name.</li>
  <li>Tap Subscriptions.</li>
  <li>Tap the subscription you want to cancel.</li>
  <li>Tap Cancel Subscription. You might need to scroll down to find the Cancel Subscription button.</li>
</ol>

<p><em>If there is no Cancel button or you see an expiration message in red text, the subscription is already canceled.</em></p>

          <p><center>***</center></p>
          <p> // Published 2026-03-01, with 64 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://apps.apple.com/gb/app/tomoz/id6748755747">Tomoz - Plan for tomorrow, today on iOS.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
     
     
     
     
     
     
     
      <entry>
        <title type="html"><![CDATA[ + How to use ways]]></title>
        <link rel="alternate" type="text/html" href="https://thechels.uk//how-to-ways" />
        <id>https://thechels.uk/how-to-ways</id>
        <published>2026-02-01T00:00:00Z</published>
        <updated>2026-02-01T00:00:00Z</updated>
        <author>
          <name>thechelsuk</name>
          <uri>https://thechels.uk//how-to-ways</uri>
        </author>
        <content type="html"><![CDATA[
          <p>Ways are a slash pages format for documenting processes, workflows, and procedures. They are designed to be easy to read and follow, on how to do things. They happen to include a link to the official manual or service where possible, but there should be enough detail to follow steps without needing to click through.</p>

<ol>
  <li>Create a new markdown file in the <code class="language-plaintext highlighter-rouge">_ways</code> directory. The filename should be descriptive of the process you are documenting, for example <code class="language-plaintext highlighter-rouge">how-to-use-ways.md</code>.</li>
  <li>
    <p>Start the file with the following front matter:</p>

    <div class="language-markdown highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="p"> ---</span>
 layout: post
 title: How to use ways
 seo: Ways - A guide to using ways
 tag: ways
 permalink: /ways/use-ways/
 date: 2026-02-01
<span class="p"> ---
</span></code></pre></div>    </div>
  </li>
  <li>Customize the front matter with the appropriate title, SEO description, tags, permalink, and date for your specific way.</li>
  <li>After the front matter, you can start writing your content. Use headings, lists, and other markdown formatting to make it easy to read and follow.</li>
  <li>Save the file and commit it to your repository. The new way will be available at the specified permalink, in this case <code class="language-plaintext highlighter-rouge">/ways/use-ways/</code>.</li>
</ol>

<p><em>I’ve refrained from using screenshots of apps or tools in ways as apps and designs can change frequently, whereas functionality, hopefully, persists.</em></p>

<p>I’ve also updated the Jekyll config to include <code class="language-plaintext highlighter-rouge">_ways</code> as a collection, so you can use the site data variables to access all the ways in your templates and layouts and metadata like the front matter and count of items etc.</p>

<p>The output in the config is set to ‘true’ so the files are generated, however they are not included in any RSS feed output as they are not timely in that sense. This differs to the RSS only feed that has generation turned off so the webpages don’t exist but the RSS feed is still generated with the content.</p>

          <p><center>***</center></p>
          <p> // Published 2026-02-01, with 319 words.</p>
          <hr/>
          <p>💬 Thanks for keeping RSS alive. If you have an RSS feed please share it with me on any of these <a href="https://links.thechels.uk">socials</a>.</p>
          <p>If you get value from this site, please share this post with someone you think will like it and support me with a <a href="https://ko-fi.com/thechelsuk">ko-fi</a>.</p>
          <p>Finally, here is a special sponsor/advert link just for you; <a rel="sponsored" href="https://i.smarty.co.uk/CSj6iK">Smarty - Choose a gift card up to £20 when you join.</a><br/>[T&Cs apply].</p>
        ]]></content>
      </entry>
  
</feed>
