diff --git a/404.html b/404.html index b6e641a..02d0934 100644 --- a/404.html +++ b/404.html @@ -1,168 +1,117 @@ - - - - - - - - - - - - - - - :: My site of stuff :: Paul Wilde - + - -
-
- - -
-
- -
-
+ + +404 | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + -

Error 404

-

Whoops... no page by that name here

+ + + + + + + - -
-
- - + + +
+ +
+ + + + + + +
+ + +
+

Lost?

+

This page does not exist.

+
+ + + + + +
+ - diff --git a/aboutme/index.html b/aboutme/index.html index 47fc182..d1ba14c 100644 --- a/aboutme/index.html +++ b/aboutme/index.html @@ -1,229 +1,181 @@ - - - - - - - - - - - - - - - About Me :: My site of stuff :: Paul Wilde - + - -
-
- - -
-
- -
-
+ + About Me | Paul's Site of Stuff -

- ~ - + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + - - / About Me -

+ + + + + +
+ +

About Me

+ + + + -

Hello, this is my website which will contain my general thoughts, utterings, + + + + + + + + + + + + + +

+

Hello,
+This is my website which will contain my general thoughts, utterings, maybe my opinions, possibly some tech stuff I find interesting, some of the recipes I cook and want to remember the ingredients of and a bit of artwork I draw for fun and I in no way claim to be a good artist in any way.

-

It may also include pictures of my dog at some point.

-

Some things about me. I :

+

Some things about me. I :

  • am an IT Professional.
      -
    • I run my own IT Business that provides -IT consulting, assistance and procurement services to local businesses (Devon, South West UK).
    • +
    • I run my own IT Business that provides IT consulting, assistance and procurement services to local businesses (Devon, South West UK).
  • -
  • am an Open Source nut. +
  • am an Open Source advocate/evangelist.
    • I try to use Open Source products in my personal and working life as often as possible.
  • am data privacy conscious.
      -
    • I believe we shouldn’t pay for products or services with our personal data and “marketability”
    • -
    • I don’t use the mainstream social media services. You shouldn’t either.
    • +
    • I believe we shouldn't pay for products or services with our personal data and "marketability"
    • +
    • I don't use the mainstream social media services. You shouldn't either.
  • -
  • use Arch Linux btw…
  • +
  • use Arch Linux btw …
-

Some information about this site. It :

+

Some information about this site. It :

+
-
-
- - Published : Mon, 29 March 2021 at 10:19am +0100
- - Last Modified : Sat, 07 May 2022 at 15:35pm +0100
- - -
- - - - -
-
- - - + + + + + + + diff --git a/atom.xml b/atom.xml new file mode 100644 index 0000000..4fd648a --- /dev/null +++ b/atom.xml @@ -0,0 +1,706 @@ + + + Paul's Site of Stuff + + + Zola + 2024-07-29T21:16:00+00:00 + https://paulwilde.uk/atom.xml + + BatMon + 2024-07-29T21:16:00+00:00 + 2024-07-29T21:16:00+00:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/batmon/ + + <p>A simple battery monitor tool that can notify you on battery status changes for FreeBSD.<br /> +Inspired by but in no way similar to <a href="https://github.com/electrickite/batsignal">batsignal</a> - inspiring the basic function only. +Written in pure <a href="https://paulwilde.uk/ponderings/batmon/https/nim-lang.org">Nim</a>.</p> +<h2 id="requirements">Requirements</h2> +<h3 id="run-requirements">Run Requirements</h3> +<ul> +<li><code>apm</code></li> +<li><code>notify-send</code></li> +</ul> +<h3 id="build-requirements">Build Requirements</h3> +<ul> +<li><code>nim</code></li> +<li><code>nimble</code></li> +</ul> +<h2 id="installation">Installation</h2> +<p>To install into your <code>.nimble/bin</code> directory</p> +<pre data-lang="sh" style="background-color:#212121;color:#eeffff;" class="language-sh "><code class="language-sh" data-lang="sh"><span style="color:#82aaff;">git clone https://codeberg.org/pswilde/batmon </span><span style="color:#89ddff;">&amp;&amp; </span><span style="color:#82aaff;">cd batmon +</span><span style="color:#82aaff;">nimble install +</span></code></pre> +<h2 id="running">Running</h2> +<pre data-lang="sh" style="background-color:#212121;color:#eeffff;" class="language-sh "><code class="language-sh" data-lang="sh"><span style="font-style:italic;color:#4a4a4a;"># To run the daemon server notifier, just run: +</span><span style="color:#82aaff;">batmon</span><span style="color:#89ddff;"> -</span><span style="color:#f78c6c;">d +</span><span> +</span><span style="font-style:italic;color:#4a4a4a;"># To run once and just show battery level, run: +</span><span style="color:#82aaff;">batmon</span><span style="color:#89ddff;"> -</span><span style="color:#f78c6c;">o +</span></code></pre> +<h2 id="using">Using</h2> +<p>When importing Batmon as a module you have access to the <code>get_battery_status()</code> +procedure which will return a <code>Battery</code> object you can use elsewhere.</p> +<h3 id="battery-type">Battery Type</h3> +<pre data-lang="nim" style="background-color:#212121;color:#eeffff;" class="language-nim "><code class="language-nim" data-lang="nim"><span style="color:#c792ea;">type +</span><span> </span><span style="color:#ffcb6b;">Battery</span><span>* = </span><span style="color:#c792ea;">object +</span><span> status*: </span><span style="color:#ffcb6b;">Status +</span><span> charge*: </span><span style="font-style:italic;color:#c792ea;">float +</span><span> </span><span style="color:#ffcb6b;">Status</span><span>* = </span><span style="color:#c792ea;">enum +</span><span> </span><span style="color:#ffcb6b;">High</span><span>, +</span><span> </span><span style="color:#ffcb6b;">Low</span><span>, +</span><span> </span><span style="color:#ffcb6b;">Critical</span><span>, +</span><span> </span><span style="color:#ffcb6b;">Charging</span><span>, +</span><span> </span><span style="color:#ffcb6b;">Unknown +</span></code></pre> +<p>Also, you have access to the notification handler module, where you can build +and send your own notifications:</p> +<pre data-lang="nim" style="background-color:#212121;color:#eeffff;" class="language-nim "><code class="language-nim" data-lang="nim"><span style="color:#c792ea;">var</span><span> n = </span><span style="color:#82aaff;">newNotification</span><span>(</span><span style="color:#c3e88d;">&quot;Title&quot;</span><span>, </span><span style="color:#c3e88d;">&quot;Body&quot;</span><span>, urgency = </span><span style="color:#ffcb6b;">Normal</span><span> , timeout = </span><span style="color:#f78c6c;">5000</span><span>) +</span><span style="color:#c792ea;">discard</span><span> n.</span><span style="color:#82aaff;">send</span><span>() +</span></code></pre> + + + + + TootInstall + 2024-07-29T14:18:00+00:00 + 2024-07-29T14:18:00+00:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/tootinstall-concept/ + + <h2 id="tootinstall-concept">TootInstall Concept</h2> +<h3 id="status-of-this-memo">Status of this Memo</h3> +<p>This memo defines a conceptual protocol for software build and install scripts +for varying platforms published via Fediverse (ActivityPub i.e Mastodon, et al) posts.</p> + + + + + Wholesome Errors + 2024-02-02T00:00:00+00:00 + 2024-02-02T00:00:00+00:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/errors/ + + <p>Your Friendly Error Code Index +Inspirational instructions for dealing with unhelpful error codes</p> +<pre data-lang="sh" style="background-color:#212121;color:#eeffff;" class="language-sh "><code class="language-sh" data-lang="sh"><span style="color:#82aaff;">ERROR</span><span style="color:#89ddff;"> -</span><span style="color:#f78c6c;">41</span><span style="color:#82aaff;">: Failure! +</span></code></pre> +<p>Wouldn’t it be great if there was something to tell you what to do about this error?! +Wouldn’t it be great if it said</p> +<pre data-lang="sh" style="background-color:#212121;color:#eeffff;" class="language-sh "><code class="language-sh" data-lang="sh"><span style="color:#82aaff;">ERROR</span><span style="color:#89ddff;"> -</span><span style="color:#f78c6c;">41</span><span style="color:#82aaff;">: Sit by a lake +</span></code></pre> +<p>instead?</p> + + + + + Gemini.css + 2023-02-22T20:57:13+00:00 + 2023-02-22T20:57:13+00:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/geminicss/ + + <p>Gemini.css is an <em>almost</em> classless CSS style for making Gemini-like HTML pages.</p> +<p>For a Gemini.css demonstration, go to <a href="https://geminicss.paulwilde.uk">geminicss.paulwilde.uk</a>.</p> + + + + + Nemini + 2023-02-20T12:57:13+00:00 + 2023-02-20T12:57:13+00:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/nemini/ + + <p>'/nɛmɪnaɪ/' Nem-in-eye</p> +<h3 id="a-simple-gemini-server">A simple Gemini server</h3> +<p>Nemini is a simple Gemini server with static file serving, virtual host and alias support. +"Simple" in the way it is, hopefully, simple to configure and use with minimal knowledge of web servers in general.</p> + + + + + AI Search + 2023-02-16T14:40:00+00:00 + 2023-02-16T14:40:00+00:00 + + + + Paul Wilde + + + + + https://paulwilde.uk/ponderings/freshgpt/ + + <p>This is a story all about how<br /> +Your query got twist-turned upside down<br /> +And I'd like to show an answer just sit right there<br /> +It might not be fully accurate but I don't care</p> + + + + + Why I have turned off my BirdsiteLIVE instance + 2022-12-21T11:36:00+00:00 + 2022-12-21T11:36:00+00:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/turning-off-birdsitelive/ + + <p>Hello. How are you? I am fine.<br /> +<br /> +You may know me from a few places, but likely on the Fediverse as the person that +maintains a BirdsiteLIVE instance with the url <a href="https://birdsite.wilde.cloud">birdsite.wilde.cloud</a>.</p> + + + + + Keyoxide Verification + 2022-11-17T11:44:27+00:00 + 2022-11-17T11:44:27+00:00 + + + + + Unknown + + + + + + https://paulwilde.uk/verify/keyoxide/ + + <p>[Verifying my keyoxide cryptographic key: 85633E30514CC1932E4268460ED12CF710BC42CA]</p> + + + + + SQL Haiku + 2022-10-26T22:40:00+00:00 + 2022-10-26T22:40:00+00:00 + + + + Paul Wilde + + + + + https://paulwilde.uk/ponderings/sql-haiku/ + + <pre data-lang="sql" style="background-color:#212121;color:#eeffff;" class="language-sql "><code class="language-sql" data-lang="sql"><span style="color:#c792ea;">SELECT</span><span> haiku </span><span style="color:#c792ea;">FROM +</span><span>tableHaikus </span><span style="color:#c792ea;">WHERE</span><span> LEFT(name, +</span><span style="color:#f78c6c;">3</span><span>) </span><span style="color:#89ddff;">LIKE &#39;</span><span style="color:#c3e88d;">SQL</span><span style="color:#89ddff;">&#39;</span><span>; +</span></code></pre> + + + + + Fortieth + 2022-09-24T15:45:22+00:00 + 2022-09-24T15:45:22+00:00 + + + + Paul Wilde + + + + + https://paulwilde.uk/ponderings/fortieth/ + + <p>'Twas the morning after the fortieth<br /> +And all through the house<br /> +Not a creature was stirring<br /> +Except the one making the coffee and Alkaseltzer</p> +<p>'Twas the morning after the morning after the fortieth<br /> +And all through the house<br /> +The creatures were starting to stir but generally still uncomfortable and underperforming</p> +<p>'Twas the morning after the morning after the morning after the fortieth<br /> +And all through the house<br /> +The creatures were stirring<br /> +Even the mouse!<br /> +It scurried up the staircase<br /> +Squeaking the old well known phrase<br /> +"Warning! Duration of hangover is proportionate to age!"</p> + + + + + wm_tools + 2022-05-08T16:25:13+01:00 + 2022-05-08T16:25:13+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/wm-tools/ + + <h1 id="a-selection-of-information-output-tools-for-dmenu">A selection of information output tools for dmenu</h1> +<p>These are a selection of independant tools for displaying various information +about system status in dmenu. Some of them i.e. <code>volume</code> have options (up, down, mute...) +which are selectable options in dmenu.</p> + + + + + thisisnotmy.email + 2021-11-13T16:17:59+00:00 + 2021-11-13T16:17:59+00:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/thisisnotmyemail/ + + <p>I run the <a href="https://thisisnotmy.email">thisisnotmy.email</a> email service.</p> +<h2 id="what-s-it-all-about">What's it all about?</h2> +<p>Don’t you hate it when people, businesses, random telephone callers, etc. ask you for your email address out of the blue under the ruse of “providing you a better service”? +It's early days but I'm hoping to be able to offer <em>something</em> for people to +use eventually.</p> + + + + + Peanut Butter Recipe + 2021-11-13T14:15:22+00:00 + 2021-11-13T14:15:22+00:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/peanut-butter/ + + <p>This is the easiest thing in the world.</p> +<ol> +<li>Dry-fry (no oil etc.) the peanuts in the large frying pan for about 10 mins or for as long as it takes for the peanuts to become golden brown. +<ul> +<li>This will encourage the oils in the peanuts to release - which is exactly what we want!</li> +</ul> +</li> +<li>Put the now-roasted peanuts into the blender and blend. +<ul> +<li>Blend, blend, blend and blend some more.</li> +<li>There will be a point when you think nothing's happening and the small bits of peanut are just moving around the blender, or just stuck in place. Give the stuck pieces a nudge with a spatula and get back to blending.</li> +<li>Blend, blend, blend even more until, eventually, the mixture starts to bind together and turn into a thick solid mass.</li> +<li>Keep blending and the mixture will loosen up become a lovely, smooth, peanut butter.</li> +</ul> +</li> +<li>Spoon out into a suitable container and allow to cool (or just eat it there and then, I won't judge you).</li> +</ol> +<p>Top Tips =</p> +<ul> +<li>If you prefer a chunky peanut butter, save some of the roasted peanuts back and only put them into the blended mixture at the end with a bit of a stir - lovely!</li> +</ul> + + + + + I Use … + 2021-08-17T11:04:14+01:00 + 2021-08-17T11:04:14+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/toolsiuse/ + + <p>In the interest of sharing interesting information, I thought I'd create this page to list some of my favourite software packages and tools.<br /> +This list is by no means complete as, if you're like me you'll understand, I use hundreds of software packages.</p> +<p>For PC/Laptop :</p> +<ul> +<li>Operating System +<ul> +<li><a href="https://archlinux.org">Arch Linux</a></li> +<li><a href="https://github.com/baskerville/bspwm">bspwm</a></li> +</ul> + + + + + Mailautoconf + 2021-08-17T10:49:13+01:00 + 2021-08-17T10:49:13+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/mailautoconf/ + + <h3 id="a-simple-configurable-autodiscover-autoconfig-service-for-distributed-and-self-hosted-services">A simple, configurable autodiscover/autoconfig service for distributed and self-hosted services.</h3> +<h3 id="what-is-mailautoconf">What is MailAutoConf?</h3> +<p>MailAutoConf is autodiscover/autoconfig web server for self-hosted mail services +which do not have their own autodiscover service.</p> + + + + + St Skeletor's Day + 2021-08-03T16:53:20+01:00 + 2021-08-03T16:53:20+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/skeletor/ + + <p>St Skeletor's Day<br /> +February 15th<br /> +Every Year</p> + + + + + Ross Rates + 2021-04-06T21:12:57+01:00 + 2021-04-06T21:12:57+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/rossrates/ + + <p>Rate Stuff with Ross, quite simple.</p> + + + + + Basic Dough Recipe + 2021-04-01T11:41:38+01:00 + 2021-04-01T11:41:38+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/basicdough/ + + <p>If you have a bread maker:</p> +<ol> +<li>add the water, salt, sugar, herbs, oil, flour and yeast/sourdough starter +<strong>IN THAT ORDER</strong> to the bread maker's container. +<ul> +<li>You <em>must</em> add them in that order, or at least water first else the +mixture will not mix correctly.</li> +</ul> +</li> +<li>set the bread maker to its "dough" setting and set it going - job done!<br /> +(P.S. you can just use this same recipe as a regular bread too - just set the +bread maker to the regular "bread" mode)</li> +<li>At this point I normally transfer the dough to a suitable container and +cover it to let it rise.</li> +</ol> +<p>Without a bread maker:</p> +<ol> +<li>add the flour, salt, sugar, herbs and yeast/sourdough starter to the +large mixing bowl and dry mix them all together.</li> +<li>form a well in the middle of the flour mixture and slowly pour in the +water bit by bit, mixing the flour mixture into the water as you go</li> +<li>continue to mix the flour and water mixture, you're going to need to use +your hands, but give it a good mix until everything is mixed together well. +<ul> +<li>you want the dough to still be a bit wet, so if it's dry, add a bit more +water</li> +</ul> +</li> +<li>dust the large chopping board with flour and turn out the wet-ish dough +ball onto the board.</li> +<li>Knead the dough, <em>a lot!</em> Just keep kneading, adding more flour if +necessary. +<ul> +<li>As you knead you'll noticed the dough ball become more smooth and +springy, but it will also feel "stronger"</li> +</ul> +</li> +<li>Once the ball is nice and firm, but still springy, place it into a suitable +container and cover to let it rise.</li> +</ol> +<p>After a few hours of rising time (longer if you're using sourdough starter) +your dough will, hopefully, have risen enormously. You can now use it. +I'll be adding recipes for <a href="/recipes/">pizzas</a>, <a href="/recipes/">naans</a> and other +things that use this dough here, eventually.</p> + + + + + Unphonetic ABC + 2021-04-01T11:05:46+01:00 + 2021-04-01T11:05:46+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/unphoneticabc/ + + <p>A website directory of all words that can be associated with their letters by <em>not</em> +sounding as their corresponding letter should do.</p> + + + + + Bedford & Co + 2021-04-01T10:54:15+01:00 + 2021-04-01T10:54:15+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/bedfordandco/ + + <p>Simple single page website for a local accountancy business. +Has additional Vue.js implementation for news and exchange rates updates.</p> + + + + + Wilde IT + 2021-04-01T10:47:49+01:00 + 2021-04-01T10:47:49+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/wildeit/ + + <p>A local IT business website detailing available services. +Our business website.</p> + + + + + The Lost Tin Opener Society + 2021-03-31T22:20:31+01:00 + 2021-03-31T22:20:31+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/ltos/ + + <p>A spoof single page animation website of a secret society dedicated to finding all +lost tin openers.</p> + + + + + Noisy Faces + 2021-03-31T17:22:16+01:00 + 2021-03-31T17:22:16+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/faces/ + + <p>Just a very silly website with an animated face making sounds.<br /> +Yeah, just that really. (The image is <em>not</em> me)</p> + + + + + The Geese Webpage + 2021-03-31T10:05:31+01:00 + 2021-03-31T10:05:31+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/ponderings/geesewildecloud/ + + <p>Starting life as a (sort of inappropriate) parody of a certain popular dating website +the geese website was made as a bit of fun and to please minor obsession with geese.</p> + + + + + About Me + 2021-03-29T10:19:20+01:00 + 2021-03-29T10:19:20+01:00 + + + + + Unknown + + + + + + https://paulwilde.uk/aboutme/ + + <p>Hello,<br /> +This is my website which will contain my general thoughts, utterings, +maybe my opinions, possibly some tech stuff I find interesting, some of the +recipes I cook and want to remember the ingredients of and a bit of artwork I +draw for fun and I in no way claim to be a good artist in any way.</p> +<h3 id="some-things-about-me-i">Some things about me. I :</h3> +<ul> +<li>am an IT Professional. +<ul> +<li>I run my own <a href="https://wilde-it.co.uk">IT Business</a> that provides IT consulting, assistance and procurement services to local businesses (Devon, South West UK).</li> +</ul> +</li> +<li>am an Open Source advocate/evangelist. +<ul> +<li>I try to use Open Source products in my personal and working life as often as possible.</li> +</ul> +</li> +<li>am data privacy conscious. +<ul> +<li>I believe we shouldn't pay for products or services with our personal data and "marketability"</li> +<li>I don't use the mainstream social media services. You shouldn't either.</li> +</ul> +</li> +<li>use <a href="https://archlinux.org">Arch Linux</a> btw …</li> +</ul> +<h3 id="some-information-about-this-site-it">Some information about this site. It :</h3> +<ul> +<li>was created using <a href="https://getzola.org">Zola</a></li> +<li>is built with efficiency in mind; It's small and light and quick to view.</li> +<li>uses no JavaScript (except a little bit for <a href="https://plausible.io">Plausible Analytics</a>, forgive me).</li> +<li>runs on an <a href="https://caddyserver.com">Caddy</a> server on top of a <a href="https://rockylinux.org">Rocky Linux</a> VPS provided by <a href="https://ovh.com">OVH</a>.</li> +<li>was written using the <a href="https://neovim.io/">Neovim</a> text editor on a <a href="https://www.pcspecialist.co.uk/">PC Specialist</a> laptop running <a href="https://archlinux.org">Arch Linux</a></li> +</ul> + + + + diff --git a/buttons.css b/buttons.css new file mode 100644 index 0000000..462f45e --- /dev/null +++ b/buttons.css @@ -0,0 +1 @@ +.button-container{display:table;margin-left:auto;margin-right:auto}button,.button,a.button{position:relative;display:flex;align-items:center;justify-content:center;padding:8px 18px;margin-bottom:5px;text-align:center;border-radius:8px;border:1px solid rgba(0,0,0,0);appearance:none;cursor:pointer;outline:none;}button.outline,.button.outline,a.button.outline{background:rgba(0,0,0,0);box-shadow:none;padding:8px 18px}button.outline :hover,.button.outline :hover,a.button.outline :hover{transform:none;box-shadow:none}button.primary,.button.primary,a.button.primary{box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08)}button.primary:hover,.button.primary:hover,a.button.primary:hover{box-shadow:0 2px 6px rgba(50,50,93,.21),0 1px 3px rgba(0,0,0,.08)}button.link,.button.link,a.button.link{background:none;font-size:1rem}button.small,.button.small,a.button.small{font-size:.8rem}button.wide,.button.wide,a.button.wide{min-width:200px;padding:14px 24px}a.read-more,a.read-more:hover,a.read-more:active{display:inline-flex;background:none;box-shadow:none;padding:0;margin:20px 0;max-width:100%}.code-toolbar{margin-bottom:20px}.code-toolbar .toolbar-item a{position:relative;display:inline-flex;align-items:center;justify-content:center;padding:3px 8px;margin-bottom:5px;text-align:center;font-size:13px;font-weight:500;border-radius:8px;border:1px solid rgba(0,0,0,0);appearance:none;cursor:pointer;outline:none} \ No newline at end of file diff --git a/color/background_auto.css b/color/background_auto.css new file mode 100644 index 0000000..a14b617 --- /dev/null +++ b/color/background_auto.css @@ -0,0 +1 @@ +@media (prefers-color-scheme: light){:root{--background: white;--color: #101010}}@media (prefers-color-scheme: dark){:root{--background: #101010;--color: #A9B7C6}} \ No newline at end of file diff --git a/color/background_blue.css b/color/background_blue.css new file mode 100644 index 0000000..084eec8 --- /dev/null +++ b/color/background_blue.css @@ -0,0 +1 @@ +:root{--background: #1D212C} \ No newline at end of file diff --git a/color/background_dark.css b/color/background_dark.css new file mode 100644 index 0000000..c1b491b --- /dev/null +++ b/color/background_dark.css @@ -0,0 +1 @@ +:root{--background: #101010;--color: #A9B7C6} \ No newline at end of file diff --git a/color/background_green.css b/color/background_green.css new file mode 100644 index 0000000..de564d5 --- /dev/null +++ b/color/background_green.css @@ -0,0 +1 @@ +:root{--background: #1F222A} \ No newline at end of file diff --git a/color/background_light.css b/color/background_light.css new file mode 100644 index 0000000..ea0bc08 --- /dev/null +++ b/color/background_light.css @@ -0,0 +1 @@ +:root{--background: #f0f0f0} \ No newline at end of file diff --git a/color/background_orange.css b/color/background_orange.css new file mode 100644 index 0000000..8d64140 --- /dev/null +++ b/color/background_orange.css @@ -0,0 +1 @@ +:root{--background: #222129} \ No newline at end of file diff --git a/color/background_pink.css b/color/background_pink.css new file mode 100644 index 0000000..17693cb --- /dev/null +++ b/color/background_pink.css @@ -0,0 +1 @@ +:root{--background: #21202C} \ No newline at end of file diff --git a/color/background_red.css b/color/background_red.css new file mode 100644 index 0000000..3605399 --- /dev/null +++ b/color/background_red.css @@ -0,0 +1 @@ +:root{--background: #221F29} \ No newline at end of file diff --git a/color/blue-auto.css b/color/blue-auto.css new file mode 100644 index 0000000..56ff54f --- /dev/null +++ b/color/blue-auto.css @@ -0,0 +1 @@ +@media (prefers-color-scheme: dark){:root{--accent: rgb(35,176,255);--accent-alpha-70: rgba(35,176,255,.7);--accent-alpha-20: rgba(35,176,255,.2);--background: #101010;--color: #f0f0f0;--border-color: rgba(255,240,224,.125)}:root div.logo{color:#000}}@media (prefers-color-scheme: light){:root{--accent: rgb(32,128,192);--accent-alpha-70: rgba(32,128,192,.7);--accent-alpha-20: rgba(32,128,192,.2);--background: white;--color: #201030;--border-color: rgba(0,0,16,.125)}:root div.logo{color:#fff}} \ No newline at end of file diff --git a/color/blue-light.css b/color/blue-light.css new file mode 100644 index 0000000..2e8deda --- /dev/null +++ b/color/blue-light.css @@ -0,0 +1 @@ +:root{--accent: rgb(32,128,192);--accent-alpha-70: rgba(32,128,192,.7);--accent-alpha-20: rgba(32,128,192,.2);--background: white;--color: #1D212C;--border-color: rgba(0, 0, 0, .1)}:root div.logo{color:#fff} \ No newline at end of file diff --git a/color/blue.css b/color/blue.css new file mode 100644 index 0000000..b5ee951 --- /dev/null +++ b/color/blue.css @@ -0,0 +1 @@ +:root{--accent: rgb(35,176,255);--accent-alpha-70: rgba(35,176,255,.7);--accent-alpha-20: rgba(35,176,255,.2);--background: #1D212C;--color: white;--border-color: rgba(255, 255, 255, .1)} \ No newline at end of file diff --git a/color/green-auto.css b/color/green-auto.css new file mode 100644 index 0000000..e671b44 --- /dev/null +++ b/color/green-auto.css @@ -0,0 +1 @@ +@media (prefers-color-scheme: dark){:root{--accent: rgb(120,226,160);--accent-alpha-70: rgba(120,226,160,.7);--accent-alpha-20: rgba(120,226,160,.2);--background: #101010;--color: #f0f0f0;--border-color: rgba(255,240,224,.125)}:root div.logo{color:#000}}@media (prefers-color-scheme: light){:root{--accent: rgb(24, 192, 128);--accent-alpha-70: rgba(24, 192, 128,.7);--accent-alpha-20: rgba(24, 192, 128,.2);--background: white;--color: #201030;--border-color: rgba(0,0,16,.125)}:root div.logo{color:#fff}} \ No newline at end of file diff --git a/color/green-light.css b/color/green-light.css new file mode 100644 index 0000000..6788de0 --- /dev/null +++ b/color/green-light.css @@ -0,0 +1 @@ +:root{--accent: rgb(24, 192, 128);--accent-alpha-70: rgba(24, 192, 128,.7);--accent-alpha-20: rgba(24, 192, 128,.2);--background: white;--color: #1D212C;--border-color: rgba(0, 0, 0, .1)}:root div.logo{color:#fff} \ No newline at end of file diff --git a/color/green.css b/color/green.css new file mode 100644 index 0000000..e622015 --- /dev/null +++ b/color/green.css @@ -0,0 +1 @@ +:root{--accent: rgb(120,226,160);--accent-alpha-70: rgba(120,226,160,.7);--accent-alpha-20: rgba(120,226,160,.2);--background: #1F222A;--color: white;--border-color: rgba(255, 255, 255, .1)} \ No newline at end of file diff --git a/color/orange-auto.css b/color/orange-auto.css new file mode 100644 index 0000000..50ee1d8 --- /dev/null +++ b/color/orange-auto.css @@ -0,0 +1 @@ +@media (prefers-color-scheme: dark){:root{--accent: rgb(255,168,106);--accent-alpha-70: rgba(255,168,106,.7);--accent-alpha-20: rgba(255,168,106,.2);--background: #101010;--color: #f0f0f0;--border-color: rgba(255,240,224,.125)}:root div.logo{color:#000}}@media (prefers-color-scheme: light){:root{--accent: rgb(240,128,48);--accent-alpha-70: rgba(240,128,48,.7);--accent-alpha-20: rgba(240,128,48,.2);--background: white;--color: #201030;--border-color: rgba(0,0,16,.125)}:root div.logo{color:#fff}} \ No newline at end of file diff --git a/color/orange-light.css b/color/orange-light.css new file mode 100644 index 0000000..979f284 --- /dev/null +++ b/color/orange-light.css @@ -0,0 +1 @@ +:root{--accent: rgb(240,128,48);--accent-alpha-70: rgba(240,128,48,.7);--accent-alpha-20: rgba(240,128,48,.2);--background: white;--color: #1D212C;--border-color: rgba(0, 0, 0, .1)}:root div.logo{color:#fff} \ No newline at end of file diff --git a/color/orange.css b/color/orange.css new file mode 100644 index 0000000..3f1a992 --- /dev/null +++ b/color/orange.css @@ -0,0 +1 @@ +:root{--accent: rgb(255,168,106);--accent-alpha-70: rgba(255,168,106,.7);--accent-alpha-20: rgba(255,168,106,.2);--background: #222129;--color: white;--border-color: rgba(255, 255, 255, .1)} \ No newline at end of file diff --git a/color/pink-auto.css b/color/pink-auto.css new file mode 100644 index 0000000..34df818 --- /dev/null +++ b/color/pink-auto.css @@ -0,0 +1 @@ +@media (prefers-color-scheme: dark){:root{--accent: rgb(224,64,192);--accent-alpha-70: rgba(224,64,192);--accent-alpha-20: rgba(224,64,192,.2);--background: #101010;--color: #f0f0f0;--border-color: rgba(255,240,224,.125)}:root div.logo{color:#000}}@media (prefers-color-scheme: light){:root{--accent: rgb(238,114,241);--accent-alpha-70: rgba(238,114,241,.7);--accent-alpha-20: rgba(238,114,241,.2);--background: white;--color: #201030;--border-color: rgba(0,0,16,.125)}:root div.logo{color:#fff}} \ No newline at end of file diff --git a/color/pink-light.css b/color/pink-light.css new file mode 100644 index 0000000..881f216 --- /dev/null +++ b/color/pink-light.css @@ -0,0 +1 @@ +:root{--accent: rgb(224,64,192);--accent-alpha-70: rgba(224,64,192);--accent-alpha-20: rgba(224,64,192,.2);--background: white;--color: #1D212C;--border-color: rgba(0, 0, 0, .1)}:root div.logo{color:#fff} \ No newline at end of file diff --git a/color/pink.css b/color/pink.css new file mode 100644 index 0000000..f2c4c43 --- /dev/null +++ b/color/pink.css @@ -0,0 +1 @@ +:root{--accent: rgb(238,114,241);--accent-alpha-70: rgba(238,114,241,.7);--accent-alpha-20: rgba(238,114,241,.2);--background: #21202C;--color: white;--border-color: rgba(255, 255, 255, .1)} \ No newline at end of file diff --git a/color/red-auto.css b/color/red-auto.css new file mode 100644 index 0000000..d0c7147 --- /dev/null +++ b/color/red-auto.css @@ -0,0 +1 @@ +@media (prefers-color-scheme: dark){:root{--accent: rgb(255,98,102);--accent-alpha-70: rgba(255,98,102,.7);--accent-alpha-20: rgba(255,98,102,.2);--background: #101010;--color: #f0f0f0;--border-color: rgba(255,240,224,.125)}:root div.logo{color:#000}}@media (prefers-color-scheme: light){:root{--accent: rgb(240,48,64);--accent-alpha-70: rgba(240,48,64,.7);--accent-alpha-20: rgba(240,48,64,.2);--background: white;--color: #201030;--border-color: rgba(0,0,16,.125)}:root div.logo{color:#fff}} \ No newline at end of file diff --git a/color/red-light.css b/color/red-light.css new file mode 100644 index 0000000..a854a79 --- /dev/null +++ b/color/red-light.css @@ -0,0 +1 @@ +:root{--accent: rgb(240,48,64);--accent-alpha-70: rgba(240,48,64,.7);--accent-alpha-20: rgba(240,48,64,.2);--background: white;--color: #1D212C;--border-color: rgba(0, 0, 0, .1)}:root div.logo{color:#fff} \ No newline at end of file diff --git a/color/red.css b/color/red.css new file mode 100644 index 0000000..3b1e34a --- /dev/null +++ b/color/red.css @@ -0,0 +1 @@ +:root{--accent: rgb(255,98,102);--accent-alpha-70: rgba(255,98,102,.7);--accent-alpha-20: rgba(255,98,102,.2);--background: #221F29;--color: white;--border-color: rgba(255, 255, 255, .1)} \ No newline at end of file diff --git a/css/keyframes.css b/css/keyframes.css deleted file mode 100644 index a844012..0000000 --- a/css/keyframes.css +++ /dev/null @@ -1,43 +0,0 @@ -@keyframes lower-in { - from { - transform: translate3d(0,-100%,0); - opacity:0; - } - to { - transform: translate3d(0,0%,0); - opacity:1; - } -} -@keyframes fade-in-left { - from { - transform: translate3d(10%,0,0); - opacity:0; - } - to { - transform: translate3d(0,0,0); - opacity:1; - } -} -@keyframes cursor-blink { - 0% { - visibility: hidden; - opacity:0; - } - 50% { - visibility: visible; - opacity:1; - } - 100% { - visibility: hidden; - opacity:0; - } -} -@keyframes type { - from { - visibility:collapse; - } - to { - visibility: visible; - width: max-content; - } -} diff --git a/css/media.css b/css/media.css deleted file mode 100644 index c2e9d77..0000000 --- a/css/media.css +++ /dev/null @@ -1,44 +0,0 @@ -@media screen and (max-width: 1200px) { - .me { - margin:1em; - } -} -@media screen and (max-width: 800px) { - body.section .main, body.page .main { - padding:1em 1em; - } - body.home div.main.homepage { - margin:0; - } - body.home div.main.homepage .intro { - margin-top:4em; - margin-bottom:0em; - } - .row div.cell-2, - .row div.cell-3, - .row div.cell-4, - .row div.cell-5 { - width:100%; - } - .me { - margin:1em; - } - .me .my-image { - float:none; - margin-left:1em; - /* margin: auto;*/ - } - .me .my-name h1 { - text-align:left; - float:none; - margin-left:0.4em; - } - .my-things { - margin:2em; - text-align:left; - margin-left:5em; - } - .item { - width:100% !important; - } -} diff --git a/css/simple.min.css b/css/simple.min.css deleted file mode 100644 index 3b7b5c0..0000000 --- a/css/simple.min.css +++ /dev/null @@ -1 +0,0 @@ -:root{--sans-font:-apple-system,BlinkMacSystemFont,"Avenir Next",Avenir,"Nimbus Sans L",Roboto,Noto,"Segoe UI",Arial,Helvetica,"Helvetica Neue",sans-serif;--mono-font:Consolas,Menlo,Monaco,"Andale Mono","Ubuntu Mono",monospace;--base-fontsize:1.15rem;--header-scale:1.25;--line-height:1.618;--bg:#FFF;--accent-bg:#F5F7FF;--text:#212121;--text-light:#585858;--border:#D8DAE1;--accent:#0D47A1;--accent-light:#90CAF9;--code:#D81B60;--preformatted:#444;--marked:#FFDD33;--disabled:#EFEFEF}@media (prefers-color-scheme:dark){:root{--bg:#212121;--accent-bg:#2B2B2B;--text:#DCDCDC;--text-light:#ABABAB;--border:#666;--accent:#FFB300;--accent-light:#FFECB3;--code:#F06292;--preformatted:#CCC;--disabled:#111}img,video{opacity:.6}}html{font-family:var(--sans-font);font-size:16px}body{color:var(--text);background:var(--bg);font-size:var(--base-fontsize);line-height:var(--line-height);display:flex;min-height:100vh;flex-direction:column;flex:1;margin:0 auto;max-width:45rem;padding:0 .5rem;overflow-x:hidden;word-break:break-word;overflow-wrap:break-word}header{background:var(--accent-bg);border-bottom:1px solid var(--border);text-align:center;padding:2rem .5rem;width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}header h1,header p{margin:0}header h1{line-height:1.1}nav{font-size:1rem;line-height:2;padding:1rem 0}nav a{margin:1rem 1rem 0 0;border:1px solid var(--border);border-radius:5px;color:var(--text)!important;display:inline-block;padding:.1rem 1rem;text-decoration:none;transition:.4s}nav a:hover{color:var(--accent)!important;border-color:var(--accent)}nav a.current:hover{text-decoration:none}footer{margin-top:4rem;padding:2rem 1rem 1.5rem 1rem;color:var(--text-light);font-size:.9rem;text-align:center;border-top:1px solid var(--border)}h1{font-size:calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale) * var(--header-scale));margin-top:calc(var(--line-height) * 1.5rem)}h2{font-size:calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale));margin-top:calc(var(--line-height) * 1.5rem)}h3{font-size:calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale));margin-top:calc(var(--line-height) * 1.5rem)}h4{font-size:calc(var(--base-fontsize) * var(--header-scale));margin-top:calc(var(--line-height) * 1.5rem)}h5{font-size:var(--base-fontsize);margin-top:calc(var(--line-height) * 1.5rem)}h6{font-size:calc(var(--base-fontsize)/ var(--header-scale));margin-top:calc(var(--line-height) * 1.5rem)}a,a:visited{color:var(--accent)}a:hover{text-decoration:none}a button,button,input[type=button],input[type=reset],input[type=submit]{border:none;border-radius:5px;background:var(--accent);font-size:1rem;color:var(--bg);padding:.7rem .9rem;margin:.5rem 0;transition:.4s}a button[disabled],button[disabled],input[type=button][disabled],input[type=checkbox][disabled],input[type=radio][disabled],input[type=reset][disabled],input[type=submit][disabled],select[disabled]{cursor:default;opacity:.5;cursor:not-allowed}input:disabled,select:disabled,textarea:disabled{cursor:not-allowed;background-color:var(--disabled)}input[type=range]{padding:0}abbr{cursor:help}button:enabled:hover,button:focus,input[type=button]:enabled:hover,input[type=button]:focus,input[type=checkbox]:enabled:hover,input[type=checkbox]:focus,input[type=radio]:enabled:hover,input[type=radio]:focus,input[type=reset]:enabled:hover,input[type=reset]:focus,input[type=submit]:enabled:hover,input[type=submit]:focus{opacity:.8}details{padding:.6rem 1rem;background:var(--accent-bg);border:1px solid var(--border);border-radius:5px;margin-bottom:1rem}summary{cursor:pointer;font-weight:700}details[open]{padding-bottom:.75rem}details[open] summary{margin-bottom:.5rem}details[open]>:last-child{margin-bottom:0}table{border-collapse:collapse;width:100%;margin:1.5rem 0}td,th{border:1px solid var(--border);text-align:left;padding:.5rem}th{background:var(--accent-bg);font-weight:700}tr:nth-child(even){background:var(--accent-bg)}table caption{font-weight:700;margin-bottom:.5rem}ol,ul{padding-left:3rem}input,select,textarea{font-size:inherit;font-family:inherit;padding:.5rem;margin-bottom:.5rem;color:var(--text);background:var(--bg);border:1px solid var(--border);border-radius:5px;box-shadow:none;box-sizing:border-box;width:60%;appearance:none;-moz-appearance:none;-webkit-appearance:none}select{background-image:linear-gradient(45deg,transparent 49%,var(--text) 51%),linear-gradient(135deg,var(--text) 51%,transparent 49%);background-position:calc(100% - 20px),calc(100% - 15px);background-size:5px 5px,5px 5px;background-repeat:no-repeat}input[type=checkbox],input[type=radio]{vertical-align:bottom;position:relative}input[type=radio]{border-radius:100%}input[type=checkbox]:checked,input[type=radio]:checked{background:var(--accent)}input[type=checkbox]:checked::after{content:' ';width:.1em;height:.25em;border-radius:0;position:absolute;top:.05em;left:.18em;background:0 0;border-right:solid var(--bg) .08em;border-bottom:solid var(--bg) .08em;font-size:1.8em;transform:rotate(45deg)}input[type=radio]:checked::after{content:' ';width:.25em;height:.25em;border-radius:100%;position:absolute;top:.125em;background:var(--bg);left:.125em;font-size:32px}textarea{width:80%}@media only screen and (max-width:720px){input,select,textarea{width:100%}}input[type=checkbox],input[type=radio]{width:auto}input[type=file]{border:0}fieldset{border:0;padding:0;margin:0}hr{color:var(--border);border-top:1px;margin:1rem auto}mark{padding:2px 5px;border-radius:4px;background:var(--marked)}main img,main video{max-width:100%;border-radius:5px}figure{margin:0}figcaption{font-size:.9rem;color:var(--text-light);text-align:center;margin-bottom:1rem}blockquote{margin:2rem 0 2rem 2rem;padding:.4rem .8rem;border-left:.35rem solid var(--accent);opacity:.8;font-style:italic}cite{font-size:.9rem;color:var(--text-light);font-style:normal}code,kbd,pre,pre span,samp{font-size:1.075rem;font-family:var(--mono-font);color:var(--code)}kbd{color:var(--preformatted);border:1px solid var(--preformatted);border-bottom:3px solid var(--preformatted);border-radius:5px;padding:.1rem}pre{padding:1rem 1.4rem;max-width:100%;overflow:auto;overflow-x:auto;color:var(--preformatted);background:var(--accent-bg);border:1px solid var(--border);border-radius:5px}pre code{color:var(--preformatted);background:0 0;margin:0;padding:0} diff --git a/css/site.css b/css/site.css deleted file mode 100644 index ca7e556..0000000 --- a/css/site.css +++ /dev/null @@ -1,485 +0,0 @@ -* { - font-family:Hermit,Hack,monospace; -} -:root { - --bg-opacity:rgba(255,255,255,0.9); - --bg-opacity-2:rgba(255,255,255,0.3); - --box-shadow:0 0 2em #eee; - --bg-opacity:rgba(0,0,0,0.9); - --bg-opacity-2:rgba(0,0,0,0.3); - --box-shadow:0 0 2em #111; - --accent:#d3c610; - --bg:#101024; - --text:#eee; -} -@media (prefers-color-scheme: dark) { - :root { - --bg-opacity:rgba(0,0,0,0.9); - --bg-opacity-2:rgba(0,0,0,0.3); - --box-shadow:0 0 2em #111; - --accent:#d3c610; - } -} -body { - max-width: 65rem; -} -a { - text-decoration:none; - transition:all 0.5s; -} -a:hover { - color:var(--text); -} -header { - padding:0; - background:var(--bg); -} -body.home header { - /*animation: lower-in; - animation-duration: 2s;*/ -} -body.home footer { - margin-top:4em; -} -body.section footer, -body.page footer { - margin-top:2em; -} -header section { - overflow:hidden; -} -header section, footer section { - max-width: 65rem; - margin:auto; -} -header section nav { - float:right; -} -header section nav a { - border:0; - margin:0; -} -header section nav a::after { - content:""; - position:relative; - width:60%; - display:block; - transition: width 0.5s,border-color 0.5s, transform 0.5s; - border-bottom:2px solid var(--text); - float:right; -} -header section nav a:hover::after { - width:100%; - border-color:var(--accent) !important; - transform: rotate(5deg) scale(120%); -} -header section nav a:nth-child(odd):hover::after { - transform: rotate(-5deg) scale(120%); -} -body main { - position:relative; -} -body.home main { - animation:fade-in-left; - animation-duration:2s; -} -body.home div.main.homepage { - margin:1em; -} -footer { - text-align:left; - border-color:rgba(200,200,200,0.15); -} - -body.section .main, body.page .main { - padding:1em 4em; -} -.row { - width:100%; - height:auto; - display:block; - overflow:hidden; -} -.row div.cell-2, -.row div.cell-3, -.row div.cell-4, -.row div.cell-5 { - float:left; -} -.row div.cell-2 { - width:50%; -} -.row div.cell-2.margin { - width:48%; - margin-right:2%; -} -.row div.cell-3 { - width:33.3333333%; -} -.row div.cell-3.margin { - width:31.3333333%; - margin-right:2%; -} -.row div.cell-4 { - width:25%; -} -.row div.cell-4.margin { - width:23%; - margin-right:2%; -} -.row div.cell-5 { - width:20%; -} -.row div.cell-5.margin { - width:18%; - margin-right:2%; -} -.row div.margin:last-child{ - margin-right:0; -} - -.row::after { - clear:both; -} -.intro { - margin-top:10em; - margin-bottom:5em; -} -.me { - text-align:right; - margin:2em; - margin-left: 0.6em; -} -.me .my-name h1 { - text-align:left; - float:none; - /*margin-left:1.2em;*/ -} -.me .my-name h1::before { - content:"#\0020"; - color:var(--accent); -} -.me h1 { - overflow:hidden; -} -.me h1 .letter { - animation: type; - animation-fill-mode: forwards; - animation-duration: 0.2s; - width:0; - visibility: collapse; - display: inline-block; -} -.me h1 .letter:nth-child(1) { - animation-delay: 1.6s; -} -.me h1 .letter:nth-child(2) { - animation-delay: 1.8s; -} -.me h1 .letter:nth-child(3) { - animation-delay: 2.0s; -} -.me h1 .letter:nth-child(4) { - animation-delay: 2.10s; -} -.me h1 .letter:nth-child(5) { - animation-delay: 2.16s; -} -.me h1 .letter:nth-child(6) { - animation-delay: 2.22s; -} -.me h1 .letter:nth-child(7) { - animation-delay: 2.6s; -} -.me h1 .letter:nth-child(8) { - animation-delay: 2.8s; -} -.me h1 .letter:nth-child(9) { - animation-delay: 2.86s; -} -.me h1 .letter:nth-child(10) { - animation-delay: 2.92s; -} -.me h1 .letter:nth-child(11) { - animation-delay: 3.0s; -} -.me h1 .cursor { - animation:cursor-blink; - animation-duration: 1.5s; - animation-iteration-count: 3; - visibility:hidden; - opacity:0; -} - -.me .my-image { - width:12.5em; - float:none; -/* margin: auto;*/ -} -.me .my-image img { - max-width:8em; - margin-left:3.2em; - display:block; - position:relative; - transition:all 0.5s; - opacity:1; -} -.me .my-image img:hover { - transform:scale(1.2) rotate(5deg); -} -.me .my-name { - width:100%; - overflow:hidden; - display:block; -} - -.my-things { - margin:2em; - margin-left:6em; - text-align:right; -} -.poem-info { - font-size:0.6em; -} -.section-list { - display:flex; - flex-wrap: wrap; - overflow:hidden; -} -.item, -.tech .item, -.recipes .item { - border:1px solid #aaa; - border-radius: 0.2em; - transition: background 0.5s; - overflow:hidden; - box-sizing: border-box; - margin-right:1em; - margin-bottom:1em; -} -.item:hover, -.tech .item:hover { - background:#b2ecFb; -} - -.recipes .item:hover { - background:#ffff00; -} -.item a, -.tech .item a, -.recipes .item a { - padding:2em; - text-align: center; - color: var(--text); - display:block; -} - -.item h3, -.tech .item h3, -.recipes .item h3 { - margin-top:0; -} -#website-list .item { - width:49%; - margin-right:1%; - min-height:15em; - transition: opacity 1.25s; - transition-delay: 0s; - pointer-events: auto; - overflow: hidden; - position: relative; - display: block; -} -#website-list .item:hover { - background:none; -} -#website-list .item .website-image { - background-position: center; - background-repeat: no-repeat; - background-size: cover !important; - border: 0; - height: 100%; - left: 0; - box-sizing: border-box; - position: absolute; - top: 0; - width: 100%; - outline: currentcolor none 0px; - transition: all 3s, filter 1.5s; - transform-origin: top center; - filter: grayscale(0.5); -} -#website-list .item:hover .website-image, -#website-list .item:active .website-image { - transform: scale(1.5); - filter: grayscale(0); -} -#website-list .item .web-summary p { - font-size:0.8em; - padding-left:1em; - padding-right:1em; - color:var(--text); -} -#website-list .item a { - border:1px solid var(--border); - display:block; - width:max-content; - margin:auto; - margin-bottom:0.5em; - padding:0.5em 1em; - color:var(--text); -} -#website-list .item a:hover { - background:var(--bg); -} -#website-list .item:hover .web-summary, -#website-list .item:active .web-summary { - transform: translateY(1%); - background:var(--bg-opacity); -} -#website-list .item .web-summary { - bottom:0; - position:absolute; - text-align:center; - margin: auto; - width:101%; - height:auto; - background:var(--bg-opacity-2); - transition: all 2s; - transform: translateY(100%); - box-shadow: var(--box-shadow); -} -#website-list .item h3 { - padding-top:0.5em; - margin-bottom:0; -} - - -.light-text { - color:#ddd !important; -} -.dark-text { - color:#222 !important; -} -.item .row, -.tech .row, -.recipes .row { - margin-bottom:1em; -} -footer div.inline { - float:left; -} -footer div.inline:last-child { - float:right; -} -footer .footer-links ul -{ - float:left; -} -footer .footer-links ul li -{ - padding-bottom:0.5em; - list-style-type: none; -} -footer .footer-links ul li a -{ - - color:var(--text); - text-decoration: none; -} -footer .footer-links ul li a:hover { - color:var(--accent); -} -footer .footer-links ul li a::after -{ - content:""; - position:relative; - width:20%; - display:block; - transition: width 0.5s, border-color 0.5s, transform 0.5s; - border-bottom:2px solid var(--text); -} -footer .footer-links ul li a:hover::after -{ - width:75%; - border-bottom:2px solid var(--accent); - transform: rotate(-5deg) scale(120%); -} -footer .footer-links ul li:nth-child(odd) a:hover::after { - transform: rotate(5deg) scale(120%); - -} -footer .footer-links::after -{ - clear: both; -} -footer .social-links { - padding-right:3rem; - text-align:right; - overflow: hidden; - -} -footer .social-links a { - margin-left:0.6em; -} -footer .social-links img { - height:auto; - width:2em; - filter: grayscale(1); - transition: transform 0.5s, filter 0.5s; - margin-top:1em; -} -footer .social-links img:hover { - height:auto; - transform: scale(120%) rotate(15deg); - filter: grayscale(0); -} - -ul.pagination { - list-style-type: none; - margin:auto; - text-align:center; - padding-left:0; - -} -ul.pagination li { - display:inline-block; - margin-right:0.5em; - border-radius: 0.2em; - transition:all 0.5s; -} -ul.pagination li:hover { - background:#ccc; -} -ul.pagination li a { - - padding:0.2em 0.5em; - color:var(--text); -} -ul.pagination li:hover a { - color:#555; -} -ul.pagination li.active a { - font-weight: bold; -} -ul.pagination li.disabled a { - color:#ccc; -} -ul.pagination li.disabled:hover { - background: none; - color:var(--text) !important; -} -a.nocolouring { - text-decoration:none; - color:var(--text); -} -#lastmod{ - float:left; - position:relative; - max-width:50%; -} -#taglist{ - float:right; - position:relative; - max-width:50%; -} diff --git a/dev/dmenu_tools/index.html b/dev/dmenu_tools/index.html index 4b9b8dc..fecd4d6 100644 --- a/dev/dmenu_tools/index.html +++ b/dev/dmenu_tools/index.html @@ -1,6 +1,6 @@ - - + + Redirect -

Click here to be redirected.

+

Click here to be redirected.

diff --git a/dev/gemini-css/index.html b/dev/gemini-css/index.html new file mode 100644 index 0000000..687cbc5 --- /dev/null +++ b/dev/gemini-css/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/dev/gemini.css/index.html b/dev/gemini.css/index.html new file mode 100644 index 0000000..687cbc5 --- /dev/null +++ b/dev/gemini.css/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/dev/index.html b/dev/index.html deleted file mode 100644 index 3153b7b..0000000 --- a/dev/index.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - - - - - - - - - - Development :: My site of stuff :: Paul Wilde - - - -
-
- - -
-
- -
-
- -

- ~ - - - - - - - / Development -

- - - -

My Development Projects :

- -
-
    - -
  • - - Nemini - :: A simple Gemini server with virtual host and alias support -
  • - -
  • - - wm_tools - :: a set of information system tools displayed in dmenu (or rofi) -
  • - -
  • - - thisisnotmy.email - :: A fully featured email service with annoying marketers in mind -
  • - -
  • - - Mailautoconf - :: a simple, configurable autodiscover/autoconfig service for distributed and self-hosted services. -
  • - -
-
- - -
-
- - Last Modified : - - - - - Mon, 20 February 2023 at 12:57pm +0000 - - - - -
- - - - -
-
- - - - - diff --git a/dev/nemini/index.html b/dev/nemini/index.html deleted file mode 100644 index 00e7b1d..0000000 --- a/dev/nemini/index.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - - - - - - - - - Nemini :: My site of stuff :: Paul Wilde - - - -
-
- - -
-
- -
-
- -

- ~ - - - - - - - - - / Development - - / Nemini -

- - - -

Nemini is a simple Gemini server.
-“Simple” in the way it is, hopefully, simple to configure and use without minimal knowledge of web servers in general. You probably need to be familiar with TOML configuration files, but other than that the server should run fairly easily.

-

The source code is hosted at Codeberg here : https://codeberg.org/pswilde/nemini

- - - -
-
- - Published : Mon, 20 February 2023 at 12:57pm +0000
- - -
- - - - -
-
- - - - - diff --git a/dev/nimini/index.html b/dev/nimini/index.html new file mode 100644 index 0000000..61d5ff4 --- /dev/null +++ b/dev/nimini/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/dev/thisisnotmyemail/index.html b/dev/thisisnotmyemail/index.html deleted file mode 100644 index 8a57e47..0000000 --- a/dev/thisisnotmyemail/index.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - - - - - - - thisisnotmy.email :: My site of stuff :: Paul Wilde - - - -
-
- - -
-
- -
-
- -

- ~ - - - - - - - - - / Development - - / thisisnotmy.email -

- - - -

I run the thisisnotmy.email email service.
-It’s early days but I’m hoping to be able to offer something for people to -use eventually.

-

What’s it all about?

-

Don’t you hate it when people, businesses, random telephone callers, etc. ask you for your email address out of the blue under the ruse of “providing you a better service”?

-

Wouldn’t it be great to confidently give them your email address, but with a slight passive aggressiveness to make the situation more awkward for them, and less awkward for you‽

-

Enter thisisnotmy.email. thisisnotmy.email is a fully functional email service. When someone asks you for your email address, just say:

-

“Sure, it’s my name at this is not my, all one word, dot email”

-

And let them decide whether it’s worth continuing on with this worthless data collecting routine.

-

See more at https://thisisnotmy.email

- - - -
-
- - Published : Sat, 13 November 2021 at 16:17pm +0000
- - -
- - - - -
-
- - - - - diff --git a/dev/wm-tools/index.html b/dev/wm-tools/index.html deleted file mode 100644 index afd08a4..0000000 --- a/dev/wm-tools/index.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - - - - - - - - - wm_tools :: My site of stuff :: Paul Wilde - - - -
-
- - -
-
- -
-
- -

- ~ - - - - - - - - - / Development - - / wm_tools -

- - - -

A selection of information output tools for dmenu

-

These are a selection of independant tools for displaying various information -about system status in dmenu. Some of them i.e. volume have options (up, down, mute…) -which are selectable options in dmenu.

-

Tools

- -

The next two do not work with rofi unless you have alias dmenu=rofi set, but they’re pretty nice tools

- -

Example in dmenu:

-

dmenu_tools

-

Example of command_wrapper with clipmenu

-

command_wrap

-

How to compile

-

There are some configuration variables explicit to me, you’ll need to change them for you for them to be useful I imagine.
-Configuration variables are compile - there are no config files or runtime parameters (except for “rofi”)

-

Each tool is compiled separately, for example:

-
nim c pingclock
-
-

and then run with

-
./pingclock 
-# or
-./pingclock rofi
-
-

How to use

-

Personally, I have these bound to key combinations in i3. -In fact, I have a seperate bindsym mode in which all these -tools are accessible i.e. $mod+i to get to “info” mode then p to show pingclock.
-It’s completely up to you how to run them, they’re just simple CLI tools really.

-

You can also set the volume and brightness levels by typing a numeric figure into the dmenu/rofi input box

-

Dependencies

- - - - -
-
- - Published : Sun, 08 May 2022 at 16:25pm +0100
- - -
- - - - -
-
- - - - - diff --git a/elasticlunr.min.js b/elasticlunr.min.js new file mode 100644 index 0000000..79dad65 --- /dev/null +++ b/elasticlunr.min.js @@ -0,0 +1,10 @@ +/** + * elasticlunr - http://weixsong.github.io + * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.9.6 + * + * Copyright (C) 2017 Oliver Nightingale + * Copyright (C) 2017 Wei Song + * MIT Licensed + * @license + */ +!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o*:first-child:not(:only-child){margin-right:10px}@media (max-width: 899px){.footer .copyright>*:first-child:not(:only-child){border:none;padding:0;margin:0}}@media (max-width: 899px){.footer .copyright{flex-direction:column;margin-top:10px}}@media (max-width: 899px){.footer .copyright-theme-sep{display:none}}@media (max-width: 899px){.footer .copyright-theme{font-size:.75rem}} \ No newline at end of file diff --git a/googled6bc296b30b7aa26.html b/googled6bc296b30b7aa26.html deleted file mode 100644 index 307df58..0000000 --- a/googled6bc296b30b7aa26.html +++ /dev/null @@ -1 +0,0 @@ -google-site-verification: googled6bc296b30b7aa26.html \ No newline at end of file diff --git a/header.css b/header.css new file mode 100644 index 0000000..8961941 --- /dev/null +++ b/header.css @@ -0,0 +1 @@ +.header{display:flex;flex-direction:column;position:relative}.header__inner{display:flex;align-items:center;justify-content:space-between}.header__logo{display:flex;flex:1}.header__logo:after{content:"";background:repeating-linear-gradient(90deg, var(--accent), var(--accent) 2px, rgba(0,0,0,0) 0, rgba(0,0,0,0) 16px);display:block;width:100%;right:10px}.header__logo a{flex:0 0 auto;max-width:100%}.header .menu{margin:20px 0}.header .menu__inner{display:flex;flex-wrap:wrap;list-style:none;margin:0;padding:0}.header .menu__inner li.active{color:var(--accent-alpha-70)}.header .menu__inner li:not(:last-of-type){margin-right:20px;margin-bottom:10px;flex:0 0 auto}.header .menu__sub-inner{position:relative;list-style:none;padding:0;margin:0}.header .menu__sub-inner:not(:only-child){margin-left:20px}.header .menu__sub-inner-more{position:absolute;background:var(--background);box-shadow:var(--shadow);color:#fff;border:2px solid;margin:0;padding:10px;list-style:none;z-index:99;top:35px;left:0}.header .menu__sub-inner-more-trigger{color:var(--accent);user-select:none;cursor:pointer}.header .menu__sub-inner-more li{margin:0;padding:5px;white-space:nowrap} \ No newline at end of file diff --git a/images/chat.png b/images/chat.png deleted file mode 100644 index 9907070..0000000 Binary files a/images/chat.png and /dev/null differ diff --git a/images/fediverse.png b/images/fediverse.png deleted file mode 100644 index 8cc0b3f..0000000 Binary files a/images/fediverse.png and /dev/null differ diff --git a/images/git.png b/images/git.png deleted file mode 100644 index 51f4ae5..0000000 Binary files a/images/git.png and /dev/null differ diff --git a/images/github.png b/images/github.png deleted file mode 100644 index 182a1a3..0000000 Binary files a/images/github.png and /dev/null differ diff --git a/images/mastodon.svg b/images/mastodon.svg deleted file mode 100644 index 120b91a..0000000 --- a/images/mastodon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/images/me.png b/images/me.png deleted file mode 100644 index 6660df2..0000000 Binary files a/images/me.png and /dev/null differ diff --git a/images/vim.svg b/images/vim.svg deleted file mode 100644 index 54ff770..0000000 --- a/images/vim.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/images/websites/errors.png b/images/websites/errors.png new file mode 100644 index 0000000..d6a7b68 Binary files /dev/null and b/images/websites/errors.png differ diff --git a/index.html b/index.html index 3ea3ecf..95c01ed 100644 --- a/index.html +++ b/index.html @@ -1,196 +1,129 @@ - - - - - - - - - - - - - - - Welcome :: My site of stuff :: Paul Wilde - + - -
-
- - -
-
- -
-
+ + Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + -
-
-
-
-
-
- -
-
-

Paul Wilde_

-
-
-
-
-
-

IT Professional
-Husband
-Cat feeder
-Dog walker
-Open Source Enthusiast
-Baker & Eater
-Webmaster
-Postmaster
-Hobbyist Musician

+ + + + + + + -
-
-
-
-
+ + +
+ +
+ - -
-
- - + + + + + + + + + +
+

Welcome

+
    +
  • IT Professional
  • +
  • Husband
  • +
  • Cat feeder
  • +
  • Dog walker
  • +
  • Open Source Enthusiast
  • +
  • Baker & Eater
  • +
  • Webmaster
  • +
  • Postmaster
  • +
  • Hobbyist Musician
  • +
+ +
+ + + + + + + + + - diff --git a/iuse/index.html b/iuse/index.html new file mode 100644 index 0000000..f83a347 --- /dev/null +++ b/iuse/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/logo.css b/logo.css new file mode 100644 index 0000000..b5150a4 --- /dev/null +++ b/logo.css @@ -0,0 +1 @@ +.logo{display:flex;align-items:center;text-decoration:none;background:var(--accent);color:#000;padding:5px 10px} \ No newline at end of file diff --git a/main.css b/main.css new file mode 100644 index 0000000..8c6731b --- /dev/null +++ b/main.css @@ -0,0 +1 @@ +html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{margin:0;padding:0;font-family:Hack,DejaVu Sans Mono,Monaco,Consolas,Ubuntu Mono,monospace;font-size:1rem;line-height:1.54;background-color:var(--background);color:var(--color);text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-webkit-overflow-scrolling:touch;-webkit-text-size-adjust:100%}@media (max-width: 683px){body{font-size:1rem}}h1,h2,h3,h4,h5,h6{display:flex;align-items:center;font-weight:bold;line-height:1.3}h1{font-size:1.4rem}h2{font-size:1.3rem}h3{font-size:1.2rem}h4,h5,h6{font-size:1.15rem}a{color:inherit}img{display:block;max-width:100%}img.left{margin-right:auto}img.center{margin-left:auto;margin-right:auto}img.right{margin-left:auto}p{margin-bottom:20px}figure{display:table;max-width:100%;margin:25px 0}figure.left,figure img{margin-right:auto}figure.center,figure img{margin-left:auto;margin-right:auto}figure.right,figure img{margin-left:auto}figure figcaption{font-size:14px;padding:5px 10px;margin-top:5px;background:var(--accent);color:var(--background)}figure figcaption.left{text-align:left}figure figcaption.center{text-align:center}figure figcaption.right{text-align:right}code{font-family:Hack,DejaVu Sans Mono,Monaco,Consolas,Ubuntu Mono,monospace;font-feature-settings:normal;background:var(--accent-alpha-20);padding:1px 6px;margin:0 2px;font-size:.95rem}pre{font-family:Hack,DejaVu Sans Mono,Monaco,Consolas,Ubuntu Mono,monospace;padding:20px;font-size:.95rem;overflow:auto;border-top:1px solid rgba(255,255,255,.1);border-bottom:1px solid rgba(255,255,255,.1)}@media (max-width: 683px){pre{white-space:pre-wrap;word-wrap:break-word}}pre code{padding:0;margin:0;background:none}blockquote{border-top:1px solid var(--accent);border-bottom:1px solid var(--accent);margin:40px 0;padding:25px}@media (max-width: 683px){blockquote{padding-right:0}}blockquote:before{content:"”";font-family:Georgia,serif;font-size:3.875rem;position:absolute;left:-40px;top:-20px}blockquote p:first-of-type{margin-top:0}blockquote p:last-of-type{margin-bottom:0}blockquote p{position:relative}blockquote p:before{content:">";display:block;position:absolute;left:-25px;color:var(--accent)}table{table-layout:fixed;border-collapse:collapse;width:100%;margin:40px 0}table,th,td{border:1px dashed var(--accent);padding:10px}th{color:var(--accent)}ul,ol{margin-left:30px;padding:0}ul li,ol li{position:relative}@media (max-width: 683px){ul,ol{margin-left:20px}}ol ol{list-style-type:lower-alpha}.container{display:flex;flex-direction:column;padding:40px;max-width:864px;min-height:100vh;margin:0 auto}@media (max-width: 683px){.container{padding:20px}}.content{display:flex}hr{width:100%;border:none;background:var(--border-color);height:1px}.hidden{display:none} \ No newline at end of file diff --git a/nemini/index.html b/nemini/index.html new file mode 100644 index 0000000..61d5ff4 --- /dev/null +++ b/nemini/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/pagination.css b/pagination.css new file mode 100644 index 0000000..defd6c0 --- /dev/null +++ b/pagination.css @@ -0,0 +1 @@ +.pagination{margin-top:50px}.pagination__title{display:flex;text-align:center;position:relative;margin:100px 0 20px}.pagination__title-h{text-align:center;margin:0 auto;padding:5px 10px;background:var(--background);font-size:.8rem;text-transform:uppercase;letter-spacing:.1em;z-index:1}.pagination__title hr{position:absolute;left:0;right:0;width:100%;margin-top:15px;z-index:0}.pagination__buttons{display:flex;align-items:center;justify-content:center}@media (max-width: 683px){.pagination__buttons{flex-direction:column}}.button{position:relative;display:inline-flex;align-items:center;justify-content:center;font-size:1rem;border-radius:8px;max-width:40%;padding:0;cursor:pointer;appearance:none}@media (max-width: 683px){.button{max-width:80%}}.button+.button{margin-left:10px}.button a{display:flex;padding:8px 16px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.button__text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden} \ No newline at end of file diff --git a/poems/fortieth/index.html b/poems/fortieth/index.html deleted file mode 100644 index 68f5edb..0000000 --- a/poems/fortieth/index.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - - - - - - - Fortieth :: My site of stuff :: Paul Wilde - - - -
-
- - -
-
- -
-
- -

- ~ - - - - - - - - - / Poems - - / Fortieth -

- - - -

Fortieth

-

’Twas the morning after the fortieth
-And all through the house
-Not a creature was stirring
-Except the one making the coffee and Alkaseltzer

-

’Twas the morning after the morning after the fortieth
-And all through the house
-The creatures were starting to stir but generally still uncomfortable and underperforming

-

’Twas the morning after the morning after the morning after the fortieth
-And all through the house
-The creatures were stirring
-Even the mouse!
-It scurried up the staircase
-Squeaking the old well known phrase
-“Warning! Duration of hangover is proportionate to age!”

- -   - Author : Paul Wilde
-   - A poem, about turning 40 - - -
-
- - Published : Sat, 24 September 2022 at 15:45pm +0000
- - -
- - - - -
-
- - - - - diff --git a/poems/freshgpt/index.html b/poems/freshgpt/index.html deleted file mode 100644 index cdc171b..0000000 --- a/poems/freshgpt/index.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - - - - - - - - - AI Search :: My site of stuff :: Paul Wilde - - - -
-
- - -
-
- -
-
- -

- ~ - - - - - - - - - / Poems - - / AI Search -

- - - -

AI Search

-

This is a story all about how
-Your query got twist-turned upside down
-And I’d like to show an answer just sit right there
-It might not be fully accurate but I don’t care

- -   - Author : Paul Wilde
-   - A poem about AI search engines - - -
-
- - Published : Thu, 16 February 2023 at 14:40pm +0000
- - -
- - - - -
-
- - - - - diff --git a/poems/index.html b/poems/index.html deleted file mode 100644 index 19b5af2..0000000 --- a/poems/index.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - - - - - - - - - Poems :: My site of stuff :: Paul Wilde - - - -
-
- - -
-
- -
-
- -

- ~ - - - - - - - / Poems -

- - - - -
- -
- - -
-
- - Last Modified : - - - - - Thu, 16 February 2023 at 14:40pm +0000 - - - - -
- - - - -
-
- - - - - diff --git a/poems/sql-haiku/index.html b/poems/sql-haiku/index.html deleted file mode 100644 index cb4ff44..0000000 --- a/poems/sql-haiku/index.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - - - - - - - - - SQL Haiku :: My site of stuff :: Paul Wilde - - - -
-
- - -
-
- -
-
- -

- ~ - - - - - - - - - / Poems - - / SQL Haiku -

- - - -

SQL Haiku

-
SELECT haiku FROM
-tableHaikus WHERE LEFT(name,
-3) LIKE 'SQL';
-
- -   - Author : Paul Wilde
-   - A Haiku in SQL - - -
-
- - Published : Wed, 26 October 2022 at 22:40pm +0000
- - -
- - - - -
-
- - - - - diff --git a/ponderings/basicdough/index.html b/ponderings/basicdough/index.html new file mode 100644 index 0000000..3e712dd --- /dev/null +++ b/ponderings/basicdough/index.html @@ -0,0 +1,259 @@ + + + + + Basic Dough Recipe | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +
+ +

Basic Dough Recipe

+ + + + + + + + + + + + + + + + + +
+
Ingredients
+
    + +
  • 300ml warm-ish water
  • + +
  • 7g salt
  • + +
  • 28g sugar
  • + +
  • 30ml olive oil
  • + +
  • 500g flour
  • + +
  • 7g dried yeast OR a decent amount of sourdough starter and 2g dried yeast
  • + +
  • a selection of herbs (optional)
  • + +
+
+ + +
+
Tools Required
+
    + +
  • a bread making machine will make this a lot easier…
  • + +
  • …if you don't have a bread maker …
  • + +
  • large mixing bowl
  • + +
  • large wooden chopping board
  • + +
  • an apron - this can get messy
  • + +
+
+ + +
Time Required :
+
    +
  • 1 hour 30 minutes + more time to let the dough rise
  • +
+ + +
+

If you have a bread maker:

+
    +
  1. add the water, salt, sugar, herbs, oil, flour and yeast/sourdough starter +IN THAT ORDER to the bread maker's container. +
      +
    • You must add them in that order, or at least water first else the +mixture will not mix correctly.
    • +
    +
  2. +
  3. set the bread maker to its "dough" setting and set it going - job done!
    +(P.S. you can just use this same recipe as a regular bread too - just set the +bread maker to the regular "bread" mode)
  4. +
  5. At this point I normally transfer the dough to a suitable container and +cover it to let it rise.
  6. +
+

Without a bread maker:

+
    +
  1. add the flour, salt, sugar, herbs and yeast/sourdough starter to the +large mixing bowl and dry mix them all together.
  2. +
  3. form a well in the middle of the flour mixture and slowly pour in the +water bit by bit, mixing the flour mixture into the water as you go
  4. +
  5. continue to mix the flour and water mixture, you're going to need to use +your hands, but give it a good mix until everything is mixed together well. +
      +
    • you want the dough to still be a bit wet, so if it's dry, add a bit more +water
    • +
    +
  6. +
  7. dust the large chopping board with flour and turn out the wet-ish dough +ball onto the board.
  8. +
  9. Knead the dough, a lot! Just keep kneading, adding more flour if +necessary. +
      +
    • As you knead you'll noticed the dough ball become more smooth and +springy, but it will also feel "stronger"
    • +
    +
  10. +
  11. Once the ball is nice and firm, but still springy, place it into a suitable +container and cover to let it rise.
  12. +
+

After a few hours of rising time (longer if you're using sourdough starter) +your dough will, hopefully, have risen enormously. You can now use it. +I'll be adding recipes for pizzas, naans and other +things that use this dough here, eventually.

+ +
+ + + + +
+ + + + + +
+ + + diff --git a/ponderings/batmon/index.html b/ponderings/batmon/index.html new file mode 100644 index 0000000..ee3cee2 --- /dev/null +++ b/ponderings/batmon/index.html @@ -0,0 +1,216 @@ + + + + + BatMon | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +
+ +

BatMon

+ + + + + + + + + + + + + + + + + + + + + + +
+

A simple battery monitor tool that can notify you on battery status changes for FreeBSD.
+Inspired by but in no way similar to batsignal - inspiring the basic function only. +Written in pure Nim.

+

Requirements

+

Run Requirements

+
    +
  • apm
  • +
  • notify-send
  • +
+

Build Requirements

+
    +
  • nim
  • +
  • nimble
  • +
+

Installation

+

To install into your .nimble/bin directory

+
git clone https://codeberg.org/pswilde/batmon && cd batmon
+nimble install
+
+

Running

+
# To run the daemon server notifier, just run:
+batmon -d
+
+# To run once and just show battery level, run:
+batmon -o
+
+

Using

+

When importing Batmon as a module you have access to the get_battery_status() +procedure which will return a Battery object you can use elsewhere.

+

Battery Type

+
type 
+  Battery* = object
+    status*: Status
+    charge*: float
+  Status* = enum
+    High,
+    Low,
+    Critical,
+    Charging,
+    Unknown
+
+

Also, you have access to the notification handler module, where you can build +and send your own notifications:

+
var n = newNotification("Title", "Body", urgency = Normal , timeout = 5000)
+discard n.send()
+
+ +
+ + + + +
+ + + + + +
+ + + diff --git a/ponderings/bedfordandco/index.html b/ponderings/bedfordandco/index.html new file mode 100644 index 0000000..348e0a4 --- /dev/null +++ b/ponderings/bedfordandco/index.html @@ -0,0 +1,181 @@ + + + + + Bedford & Co | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +
+ +

Bedford & Co

+ + + + + + + + +
+ +
+ + + + + + + + + + + + + + + +
+

Simple single page website for a local accountancy business. +Has additional Vue.js implementation for news and exchange rates updates.

+ +
+ + + + +
+ + + + + +
+ + + diff --git a/ponderings/errors/index.html b/ponderings/errors/index.html new file mode 100644 index 0000000..d10e7de --- /dev/null +++ b/ponderings/errors/index.html @@ -0,0 +1,188 @@ + + + + + Wholesome Errors | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +
+ +

Wholesome Errors

+ + + + + + + + +
+ +
+ + + + + + + + + + + + + + + +
+

Your Friendly Error Code Index +Inspirational instructions for dealing with unhelpful error codes

+
ERROR -41: Failure!
+
+

Wouldn’t it be great if there was something to tell you what to do about this error?! +Wouldn’t it be great if it said

+
ERROR -41: Sit by a lake
+
+

instead?

+ +
+ + + + +
+ + + + + +
+ + + diff --git a/ponderings/faces/index.html b/ponderings/faces/index.html new file mode 100644 index 0000000..6292d51 --- /dev/null +++ b/ponderings/faces/index.html @@ -0,0 +1,181 @@ + + + + + Noisy Faces | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +
+ +

Noisy Faces

+ + + + + + + + +
+ +
+ + + + + + + + + + + + + + + +
+

Just a very silly website with an animated face making sounds.
+Yeah, just that really. (The image is not me)

+ +
+ + + + +
+ + + + + +
+ + + diff --git a/ponderings/fortieth/index.html b/ponderings/fortieth/index.html new file mode 100644 index 0000000..6576a6a --- /dev/null +++ b/ponderings/fortieth/index.html @@ -0,0 +1,185 @@ + + + + + Fortieth | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +
+ +

Fortieth

+ + + + + + + + + + + + + + + + + + + + +
+

'Twas the morning after the fortieth
+And all through the house
+Not a creature was stirring
+Except the one making the coffee and Alkaseltzer

+

'Twas the morning after the morning after the fortieth
+And all through the house
+The creatures were starting to stir but generally still uncomfortable and underperforming

+

'Twas the morning after the morning after the morning after the fortieth
+And all through the house
+The creatures were stirring
+Even the mouse!
+It scurried up the staircase
+Squeaking the old well known phrase
+"Warning! Duration of hangover is proportionate to age!"

+ +
+ + + + +
+ + + + + +
+ + + diff --git a/ponderings/freshgpt/index.html b/ponderings/freshgpt/index.html new file mode 100644 index 0000000..8250216 --- /dev/null +++ b/ponderings/freshgpt/index.html @@ -0,0 +1,177 @@ + + + + + AI Search | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +
+ +

AI Search

+ + + + + + + + + + + + + + + + + + + + +
+

This is a story all about how
+Your query got twist-turned upside down
+And I'd like to show an answer just sit right there
+It might not be fully accurate but I don't care

+ +
+ + + + +
+ + + + + +
+ + + diff --git a/ponderings/geesewildecloud/index.html b/ponderings/geesewildecloud/index.html new file mode 100644 index 0000000..9129f8a --- /dev/null +++ b/ponderings/geesewildecloud/index.html @@ -0,0 +1,174 @@ + + + + + The Geese Webpage | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +
+ +

The Geese Webpage

+ + + + + + + + +
+ +
+ + + + + + + + + + + + + + + +
+

Starting life as a (sort of inappropriate) parody of a certain popular dating website +the geese website was made as a bit of fun and to please minor obsession with geese.

+ +
+ + + + +
+ + + + + +
+ + + diff --git a/ponderings/geminicss/index.html b/ponderings/geminicss/index.html new file mode 100644 index 0000000..e5b65e5 --- /dev/null +++ b/ponderings/geminicss/index.html @@ -0,0 +1,179 @@ + + + + + Gemini.css | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +
+ +

Gemini.css

+ + + + + + + + + + + + + + + + + + + + + + +
+

Gemini.css is an almost classless CSS style for making Gemini-like HTML pages.

+

For a Gemini.css demonstration, go to geminicss.paulwilde.uk.

+ +
+ + + + +
+ + + + + +
+ + + diff --git a/ponderings/index.html b/ponderings/index.html new file mode 100644 index 0000000..4eeab22 --- /dev/null +++ b/ponderings/index.html @@ -0,0 +1,515 @@ + + + + + Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +
+
+
+ +

BatMon

+ + + + + + + +
+

A simple battery monitor tool that can notify you on battery status changes for FreeBSD.
+Inspired by but in no way similar to batsignal - inspiring the basic function only. +Written in pure Nim.

+

Requirements

+

Run Requirements

+
    +
  • apm
  • +
  • notify-send
  • +
+

Build Requirements

+
    +
  • nim
  • +
  • nimble
  • +
+

Installation

+

To install into your .nimble/bin directory

+
git clone https://codeberg.org/pswilde/batmon && cd batmon
+nimble install
+
+

Running

+
# To run the daemon server notifier, just run:
+batmon -d
+
+# To run once and just show battery level, run:
+batmon -o
+
+

Using

+

When importing Batmon as a module you have access to the get_battery_status() +procedure which will return a Battery object you can use elsewhere.

+

Battery Type

+
type 
+  Battery* = object
+    status*: Status
+    charge*: float
+  Status* = enum
+    High,
+    Low,
+    Critical,
+    Charging,
+    Unknown
+
+

Also, you have access to the notification handler module, where you can build +and send your own notifications:

+
var n = newNotification("Title", "Body", urgency = Normal , timeout = 5000)
+discard n.send()
+
+ +
+ +
+ +
+ +

TootInstall

+ + + + + + + + +
+

TootInstall Concept

+

Status of this Memo

+

This memo defines a conceptual protocol for software build and install scripts +for varying platforms published via Fediverse (ActivityPub i.e Mastodon, et al) posts.

+ +
+ + + +
+ +
+ +

Wholesome Errors

+ + + + + + + +
+

Your Friendly Error Code Index +Inspirational instructions for dealing with unhelpful error codes

+
ERROR -41: Failure!
+
+

Wouldn’t it be great if there was something to tell you what to do about this error?! +Wouldn’t it be great if it said

+
ERROR -41: Sit by a lake
+
+

instead?

+ +
+ +
+ +
+ +

Gemini.css

+ + + + + + + +
+

Gemini.css is an almost classless CSS style for making Gemini-like HTML pages.

+

For a Gemini.css demonstration, go to geminicss.paulwilde.uk.

+ +
+ +
+ +
+ +

Nemini

+ + + + + + + + +
+

'/nɛmɪnaɪ/' Nem-in-eye

+

A simple Gemini server

+

Nemini is a simple Gemini server with static file serving, virtual host and alias support. +"Simple" in the way it is, hopefully, simple to configure and use with minimal knowledge of web servers in general.

+ +
+ + + +
+ +
+ +

AI Search

+ + + + + + + +
+

This is a story all about how
+Your query got twist-turned upside down
+And I'd like to show an answer just sit right there
+It might not be fully accurate but I don't care

+ +
+ +
+ +
+ +

Why I have turned off my BirdsiteLIVE instance

+ + + + + + + + +
+

Hello. How are you? I am fine.
+
+You may know me from a few places, but likely on the Fediverse as the person that +maintains a BirdsiteLIVE instance with the url birdsite.wilde.cloud.

+ +
+ + + +
+ +
+ +

SQL Haiku

+ + + + + + + +
+
SELECT haiku FROM
+tableHaikus WHERE LEFT(name,
+3) LIKE 'SQL';
+
+ +
+ +
+ +
+ +

Fortieth

+ + + + + + + +
+

'Twas the morning after the fortieth
+And all through the house
+Not a creature was stirring
+Except the one making the coffee and Alkaseltzer

+

'Twas the morning after the morning after the fortieth
+And all through the house
+The creatures were starting to stir but generally still uncomfortable and underperforming

+

'Twas the morning after the morning after the morning after the fortieth
+And all through the house
+The creatures were stirring
+Even the mouse!
+It scurried up the staircase
+Squeaking the old well known phrase
+"Warning! Duration of hangover is proportionate to age!"

+ +
+ +
+ +
+ +

wm_tools

+ + + + + + + + +
+

A selection of information output tools for dmenu

+

These are a selection of independant tools for displaying various information +about system status in dmenu. Some of them i.e. volume have options (up, down, mute...) +which are selectable options in dmenu.

+ +
+ + + +
+ +
+
+ + + + + +
+ + + diff --git a/ponderings/ltos/index.html b/ponderings/ltos/index.html new file mode 100644 index 0000000..6bbe98b --- /dev/null +++ b/ponderings/ltos/index.html @@ -0,0 +1,181 @@ + + + + + The Lost Tin Opener Society | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +
+ +

The Lost Tin Opener Society

+ + + + + + + + +
+ +
+ + + + + + + + + + + + + + + +
+

A spoof single page animation website of a secret society dedicated to finding all +lost tin openers.

+ +
+ + + + +
+ + + + + +
+ + + diff --git a/dev/mailautoconf/index.html b/ponderings/mailautoconf/index.html similarity index 54% rename from dev/mailautoconf/index.html rename to ponderings/mailautoconf/index.html index 4ab42a6..8c9e6b2 100644 --- a/dev/mailautoconf/index.html +++ b/ponderings/mailautoconf/index.html @@ -1,93 +1,124 @@ - - - - - - - - - - - - - - - Mailautoconf :: My site of stuff :: Paul Wilde - + - -
-
- - -
-
- -
-
+ + Mailautoconf | Paul's Site of Stuff -

- ~ - + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + - / Development - - / Mailautoconf -

+ + + + +
+ +

Mailautoconf

+ + + + + + + + + + + + + + + + + + + +

A simple, configurable autodiscover/autoconfig service for distributed and self-hosted services.

-

Codeberg = codeberg link
-Github = github link

What is MailAutoConf?

MailAutoConf is autodiscover/autoconfig web server for self-hosted mail services which do not have their own autodiscover service.

-

What does MailAutoConf do?

+

What does MailAutoConf do?

MailAutoConf is currently in very early stages, but it does generate valid autoconfig XML files (/mail/config-v1.1.xml) compatible with many mail clients i.e. Thunderbird, Evolution, etc.
@@ -121,11 +152,11 @@ For example, in nginx:

}

First run will create sample.yaml files in the config directory. Copy these to config.yaml and services.yaml and configure them to your needs.

-

MailAutoConf will handle all the URLs it’s able to deal with, i.e. /mail/config-v1.1.xml, /Autodiscover/Autodiscover.xml automatically.

+

MailAutoConf will handle all the URLs it's able to deal with, i.e. /mail/config-v1.1.xml, /Autodiscover/Autodiscover.xml automatically.

DNS config

You will need to configure DNS records for your domain.
I would recommend setting up an A record for autoconfig.your.domain to point -directly to your MailAutoConf’s instance which will work for Thunderbird and +directly to your MailAutoConf's instance which will work for Thunderbird and Evolution clients. Then, if Outlook Autodiscover is required (currently not implemented), configure a SRV record to redirect to the autoconfig.your.domain A record. i.e.

@@ -153,9 +184,9 @@ Calendar and AddressBook is in the autoconfig XML documentation, but currently n
  • /mail/config-v1.1.xml file for Thunderbird and Evolution mail clients.
  • -Add more code commenting, it’s pretty terrible right now.
  • +Add more code commenting, it's pretty terrible right now.
  • -Refactor the autoconfig and autodiscover XML files, they’ve been copied and bodged together and could look so much better.
  • +Refactor the autoconfig and autodiscover XML files, they've been copied and bodged together and could look so much better.
  • Autodiscover.xml for Outlook clients - currently does generate, but untested.
  • @@ -163,122 +194,72 @@ Autodiscover.json for more modern Outlook clients - this is currently undocument
  • Calendars and Address Book - does generate into mail/config-v1.1.xml, but no actual clients support it yet.
  • -Additional, custom services. For example, Nextcloud - instead of having to type in your Nextcloud instance URL, you can just enter your email address associated with you Nextcloud account and it looks up the URL from autoconfig - wouldn’t that be nice?
  • +Additional, custom services. For example, Nextcloud - instead of having to type in your Nextcloud instance URL, you can just enter your email address associated with you Nextcloud account and it looks up the URL from autoconfig - wouldn't that be nice?
  • -Probably loads of stuff I haven’t thought of yet.
  • +Probably loads of stuff I haven't thought of yet.

    When will it be ready for production?

    Well, not yet. Though it does sort of work already.
    -I’m working on this ultimately for my own use for my own small business. I’m hoping once it’s good enough I could deploy the set up to my businesses customers and ultimately get them away from a Microsoft Exchange based environment. There’s a long way to go for that right now though.

    +I'm working on this ultimately for my own use for my own small business. I'm hoping once it's good enough I could deploy the set up to my businesses customers and ultimately get them away from a Microsoft Exchange based environment. There's a long way to go for that right now though.

    If you feel you may be able to help, or ideas on features and their implementation, notice any bugs, or just want to say hi. Please do so and submit a pull request if required.

    Thanks for reading!

    +
    -
    -
    - - Published : Tue, 17 August 2021 at 10:49am +0100
    - - -
    - - - - -
    -
    - - + + + + + + + + + + + - diff --git a/ponderings/nemini/index.html b/ponderings/nemini/index.html new file mode 100644 index 0000000..4f20542 --- /dev/null +++ b/ponderings/nemini/index.html @@ -0,0 +1,209 @@ + + + + + Nemini | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    Nemini

    + + + + + + + + + + + + + + + + + + + + + + +
    +

    '/nɛmɪnaɪ/' Nem-in-eye

    +

    A simple Gemini server

    +

    Nemini is a simple Gemini server with static file serving, virtual host and alias support. +"Simple" in the way it is, hopefully, simple to configure and use with minimal knowledge of web servers in general.

    + +

    You probably need to be familiar with TOML configuration files, but other than that the server should run fairly easily.

    +

    See this page on Nemini : gemini://paulwilde.uk/dev/nemini

    +

    The source code is hosted at Codeberg.

    +

    Features

    +
      +
    • Will serve static files
    • +
    • Virtual host and alias capability
    • +
    • Headers and Footers can be applied to each page
    • +
    +

    How to run

    +
      +
    • Copy the config/nemini.sample.toml file to /etc/nemini/nemini.toml nd edit to your liking
    • +
    • Certificates are required so make sure you have those set. They will be automatically created via openssl if they don't exist.
    • +
    • Host your files in your root_dir director/y|ies/
    • +
    • Run the nemini binary
    • +
    +

    Parameters

    +

    Passing the --config parameter with a file location will allow the use of a custom config file saved wherever you wish.

    +

    Build from source

    +

    Install nim and nimble and run the following command:

    +
    +

    nimble build

    +
    +

    All nim dependencies will be installed.

    + +

    Source Code
    +TOML Config file reference

    + +
    + + + + +
    + + + + + +
    + + + diff --git a/ponderings/page/1/index.html b/ponderings/page/1/index.html new file mode 100644 index 0000000..e08dea9 --- /dev/null +++ b/ponderings/page/1/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

    Click here to be redirected.

    diff --git a/ponderings/page/2/index.html b/ponderings/page/2/index.html new file mode 100644 index 0000000..dfa185a --- /dev/null +++ b/ponderings/page/2/index.html @@ -0,0 +1,498 @@ + + + + + Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +
    +
    + +

    thisisnotmy.email

    + + + + + + + + +
    +

    I run the thisisnotmy.email email service.

    +

    What's it all about?

    +

    Don’t you hate it when people, businesses, random telephone callers, etc. ask you for your email address out of the blue under the ruse of “providing you a better service”? +It's early days but I'm hoping to be able to offer something for people to +use eventually.

    + +
    + + + +
    + +
    + +

    Peanut Butter Recipe

    + + + + + + + +
    +

    This is the easiest thing in the world.

    +
      +
    1. Dry-fry (no oil etc.) the peanuts in the large frying pan for about 10 mins or for as long as it takes for the peanuts to become golden brown. +
        +
      • This will encourage the oils in the peanuts to release - which is exactly what we want!
      • +
      +
    2. +
    3. Put the now-roasted peanuts into the blender and blend. +
        +
      • Blend, blend, blend and blend some more.
      • +
      • There will be a point when you think nothing's happening and the small bits of peanut are just moving around the blender, or just stuck in place. Give the stuck pieces a nudge with a spatula and get back to blending.
      • +
      • Blend, blend, blend even more until, eventually, the mixture starts to bind together and turn into a thick solid mass.
      • +
      • Keep blending and the mixture will loosen up become a lovely, smooth, peanut butter.
      • +
      +
    4. +
    5. Spoon out into a suitable container and allow to cool (or just eat it there and then, I won't judge you).
    6. +
    +

    Top Tips =

    +
      +
    • If you prefer a chunky peanut butter, save some of the roasted peanuts back and only put them into the blended mixture at the end with a bit of a stir - lovely!
    • +
    + +
    + +
    + +
    + +

    I Use …

    + + + + + + + + +
    +

    In the interest of sharing interesting information, I thought I'd create this page to list some of my favourite software packages and tools.
    +This list is by no means complete as, if you're like me you'll understand, I use hundreds of software packages.

    +

    For PC/Laptop :

    +
    + + + +
    + +
    + +

    Mailautoconf

    + + + + + + + + +
    +

    A simple, configurable autodiscover/autoconfig service for distributed and self-hosted services.

    +

    What is MailAutoConf?

    +

    MailAutoConf is autodiscover/autoconfig web server for self-hosted mail services +which do not have their own autodiscover service.

    + +
    + + + +
    + +
    + +

    St Skeletor's Day

    + + + + + + + +
    +

    St Skeletor's Day
    +February 15th
    +Every Year

    + +
    + +
    + +
    + +

    Ross Rates

    + + + + + + + +
    +

    Rate Stuff with Ross, quite simple.

    + +
    + +
    + +
    + +

    Basic Dough Recipe

    + + + + + + + +
    +

    If you have a bread maker:

    +
      +
    1. add the water, salt, sugar, herbs, oil, flour and yeast/sourdough starter +IN THAT ORDER to the bread maker's container. +
        +
      • You must add them in that order, or at least water first else the +mixture will not mix correctly.
      • +
      +
    2. +
    3. set the bread maker to its "dough" setting and set it going - job done!
      +(P.S. you can just use this same recipe as a regular bread too - just set the +bread maker to the regular "bread" mode)
    4. +
    5. At this point I normally transfer the dough to a suitable container and +cover it to let it rise.
    6. +
    +

    Without a bread maker:

    +
      +
    1. add the flour, salt, sugar, herbs and yeast/sourdough starter to the +large mixing bowl and dry mix them all together.
    2. +
    3. form a well in the middle of the flour mixture and slowly pour in the +water bit by bit, mixing the flour mixture into the water as you go
    4. +
    5. continue to mix the flour and water mixture, you're going to need to use +your hands, but give it a good mix until everything is mixed together well. +
        +
      • you want the dough to still be a bit wet, so if it's dry, add a bit more +water
      • +
      +
    6. +
    7. dust the large chopping board with flour and turn out the wet-ish dough +ball onto the board.
    8. +
    9. Knead the dough, a lot! Just keep kneading, adding more flour if +necessary. +
        +
      • As you knead you'll noticed the dough ball become more smooth and +springy, but it will also feel "stronger"
      • +
      +
    10. +
    11. Once the ball is nice and firm, but still springy, place it into a suitable +container and cover to let it rise.
    12. +
    +

    After a few hours of rising time (longer if you're using sourdough starter) +your dough will, hopefully, have risen enormously. You can now use it. +I'll be adding recipes for pizzas, naans and other +things that use this dough here, eventually.

    + +
    + +
    + +
    + +

    Unphonetic ABC

    + + + + + + + +
    +

    A website directory of all words that can be associated with their letters by not +sounding as their corresponding letter should do.

    + +
    + +
    + +
    + +

    Bedford & Co

    + + + + + + + +
    +

    Simple single page website for a local accountancy business. +Has additional Vue.js implementation for news and exchange rates updates.

    + +
    + +
    + +
    + +

    Wilde IT

    + + + + + + + +
    +

    A local IT business website detailing available services. +Our business website.

    + +
    + +
    + +
    +
    + + + + + +
    + + + diff --git a/ponderings/page/3/index.html b/ponderings/page/3/index.html new file mode 100644 index 0000000..b8ed619 --- /dev/null +++ b/ponderings/page/3/index.html @@ -0,0 +1,202 @@ + + + + + Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +
    +
    + +

    The Lost Tin Opener Society

    + + + + + + + +
    +

    A spoof single page animation website of a secret society dedicated to finding all +lost tin openers.

    + +
    + +
    + +
    + +

    Noisy Faces

    + + + + + + + +
    +

    Just a very silly website with an animated face making sounds.
    +Yeah, just that really. (The image is not me)

    + +
    + +
    + +
    + +

    The Geese Webpage

    + + + + + + + +
    +

    Starting life as a (sort of inappropriate) parody of a certain popular dating website +the geese website was made as a bit of fun and to please minor obsession with geese.

    + +
    + +
    + +
    +
    + + + + + +
    + + + diff --git a/ponderings/peanut-butter/index.html b/ponderings/peanut-butter/index.html new file mode 100644 index 0000000..5acfea5 --- /dev/null +++ b/ponderings/peanut-butter/index.html @@ -0,0 +1,219 @@ + + + + + Peanut Butter Recipe | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    Peanut Butter Recipe

    + + + + + + + + + + + + + + + + + +
    +
    Ingredients
    +
      + +
    • Raw Peanuts - as many as you like (400g will make about 250ml of Peanut Butter)
    • + +
    +
    + + +
    +
    Tools Required
    +
      + +
    • Large Frying Pan
    • + +
    • Blender
    • + +
    +
    + + +
    Time Required :
    +
      +
    • 20 minutes
    • +
    + + +
    +

    This is the easiest thing in the world.

    +
      +
    1. Dry-fry (no oil etc.) the peanuts in the large frying pan for about 10 mins or for as long as it takes for the peanuts to become golden brown. +
        +
      • This will encourage the oils in the peanuts to release - which is exactly what we want!
      • +
      +
    2. +
    3. Put the now-roasted peanuts into the blender and blend. +
        +
      • Blend, blend, blend and blend some more.
      • +
      • There will be a point when you think nothing's happening and the small bits of peanut are just moving around the blender, or just stuck in place. Give the stuck pieces a nudge with a spatula and get back to blending.
      • +
      • Blend, blend, blend even more until, eventually, the mixture starts to bind together and turn into a thick solid mass.
      • +
      • Keep blending and the mixture will loosen up become a lovely, smooth, peanut butter.
      • +
      +
    4. +
    5. Spoon out into a suitable container and allow to cool (or just eat it there and then, I won't judge you).
    6. +
    +

    Top Tips =

    +
      +
    • If you prefer a chunky peanut butter, save some of the roasted peanuts back and only put them into the blended mixture at the end with a bit of a stir - lovely!
    • +
    + +
    + + + + +
    + + + + + +
    + + + diff --git a/ponderings/rossrates/index.html b/ponderings/rossrates/index.html new file mode 100644 index 0000000..b54946e --- /dev/null +++ b/ponderings/rossrates/index.html @@ -0,0 +1,180 @@ + + + + + Ross Rates | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    Ross Rates

    + + + + + + + + +
    + +
    + + + + + + + + + + + + + + + +
    +

    Rate Stuff with Ross, quite simple.

    + +
    + + + + +
    + + + + + +
    + + + diff --git a/ponderings/skeletor/index.html b/ponderings/skeletor/index.html new file mode 100644 index 0000000..a8254f4 --- /dev/null +++ b/ponderings/skeletor/index.html @@ -0,0 +1,182 @@ + + + + + St Skeletor's Day | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    St Skeletor's Day

    + + + + + + + + +
    + +
    + + + + + + + + + + + + + + + +
    +

    St Skeletor's Day
    +February 15th
    +Every Year

    + +
    + + + + +
    + + + + + +
    + + + diff --git a/ponderings/sql-haiku/index.html b/ponderings/sql-haiku/index.html new file mode 100644 index 0000000..68d333f --- /dev/null +++ b/ponderings/sql-haiku/index.html @@ -0,0 +1,178 @@ + + + + + SQL Haiku | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    SQL Haiku

    + + + + + + + + + + + + + + + + + + + + +
    +
    SELECT haiku FROM
    +tableHaikus WHERE LEFT(name,
    +3) LIKE 'SQL';
    +
    + +
    + + + + +
    + + + + + +
    + + + diff --git a/ponderings/thisisnotmyemail/index.html b/ponderings/thisisnotmyemail/index.html new file mode 100644 index 0000000..83dbad2 --- /dev/null +++ b/ponderings/thisisnotmyemail/index.html @@ -0,0 +1,184 @@ + + + + + thisisnotmy.email | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    thisisnotmy.email

    + + + + + + + + + + + + + + + + + + + + +
    +

    I run the thisisnotmy.email email service.

    +

    What's it all about?

    +

    Don’t you hate it when people, businesses, random telephone callers, etc. ask you for your email address out of the blue under the ruse of “providing you a better service”? +It's early days but I'm hoping to be able to offer something for people to +use eventually.

    + +

    Wouldn’t it be great to confidently give them your email address, but with a slight passive aggressiveness to make the situation more awkward for them, and less awkward for you‽

    +

    Enter thisisnotmy.email. thisisnotmy.email is a fully functional email service. When someone asks you for your email address, just say:

    +
    +

    “Sure, it’s my name at this is not my, all one word, dot email”

    +
    +

    And let them decide whether it’s worth continuing on with this worthless data collecting routine.

    + +
    + + + + +
    + + + + + +
    + + + diff --git a/ponderings/toolsiuse/index.html b/ponderings/toolsiuse/index.html new file mode 100644 index 0000000..e93ace6 --- /dev/null +++ b/ponderings/toolsiuse/index.html @@ -0,0 +1,249 @@ + + + + + I Use … | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    I Use …

    + + + + + + + + + + + + + + + + + + + + +
    +

    In the interest of sharing interesting information, I thought I'd create this page to list some of my favourite software packages and tools.
    +This list is by no means complete as, if you're like me you'll understand, I use hundreds of software packages.

    +

    For PC/Laptop :

    + +

    For Servers :

    + +

    If I have missed anyone out, I apologise!

    + +
    + + + + +
    + + + + + +
    + + + diff --git a/ponderings/tootinstall-concept/index.html b/ponderings/tootinstall-concept/index.html new file mode 100644 index 0000000..eed2028 --- /dev/null +++ b/ponderings/tootinstall-concept/index.html @@ -0,0 +1,374 @@ + + + + + TootInstall | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    TootInstall

    + + + + + + + + + + + + + + + + + + + + +
    +

    TootInstall Concept

    +

    Status of this Memo

    +

    This memo defines a conceptual protocol for software build and install scripts +for varying platforms published via Fediverse (ActivityPub i.e Mastodon, et al) posts.

    +

    Overview

    +

    These days, the options for software build and install processes are many, +and jumping through the hoops required for some operating systems can be +troublesome and sometimes impossible.
    +Additionally, having to maintain many published packages for varying platforms +is laborious, and sometimes means packages in some platforms become out of date +and unmaintained.
    +The TootInstall concept aims to bypass many of these requirements in an effort +to have build and install scripts available for any application available on a +decentralized, federated, all-accessible platform.

    +

    Usage - by Developers

    +

    A software developer or package maintainer would post their script using their +preferred federated ActivityPub service, and mention a tootinstall bot +(i.e. @tootinstall_bot@tootinstall.example). The tootinstall bot would then +parse the script and re-post it, giving attribution to the original poster.

    +

    It would be in everyone's best interests if all package requirements are listed +to ensure all dependencies are satisfied before attempting the install.

    +

    For example, a simple tootinstall script may look like the following:

    +
    @tootinstall_bot@tootinstall.example 
    ++++
    +name = "my_package"
    +targets = ["linux+amd64", "linux+arm", "freebsd+amd64"]
    +dependencies = ["bash","git"]
    ++++
    +#!/usr/bin/env bash
    +git clone https://gitrepo.example/me/my_package /tmp/my_package
    +cd /tmp/my_package
    +cp ./my_package /usr/local/bin/my_package
    +
    +

    which the bot would receive, and re-post like so:

    +
    +++
    +name = "my_package"
    +targets = ["linux+amd64", "linux+arm", "freebsd+amd64"]
    +dependencies = ["bash","git"]
    +author = "@you@a_mastodon_instance.example"
    +date = "2024-29-07T14:48:00"
    +status = "pending approval"
    +tootinstall_host = "packages.tootinstall.example"
    ++++
    +#!/usr/bin/env bash
    +git clone https://gitrepo.example/me/my_package /tmp/my_package
    +cd /tmp/my_package
    +cp ./my_package.bash /usr/local/bin/my_package
    +
    +

    The tootinstall bot should have RSS enabled for their posts, which is then +parsed by a tootinstall helper and collated into a tootinstall database and +published on a tootinstall host.

    +

    Usage - by End Users

    +

    An end user only requires a simple portable tootinstall binary which can be +used as follows:

    +
    tootinstall install my_package @packages.tootinstall.example
    +
    +

    TootInstall Bot

    +

    A tootinstall bot is a ActivityPub account that is able to read posts it is +mentioned in, adapt incoming information and create new posts with correctly +formatted tootinstall script text.

    +

    It must:

    +
      +
    • be able to publish their ActivityPub feed via RSS so a +tootinstall helper is able to easily read posts it sends for new +tootinstall scripts.
    • +
    • post a tootinstall script as a new post, +not a reply, nor a boost, nor a quote boost, nor anything similar, +to simplify RSS feed handling.
    • +
    • create 'author', 'date', 'status', and +'tootinstall_host' tags in the tootinstall script and ignore those in the +original post to prevent information poisoning.
    • +
    • be able to operate a blacklist of accounts/instances to prevent spamming
    • +
    +

    It may also be useful if it could:

    +
      +
    • receive boosts/favourites and forward these on to a tootinstall helper +for approval and scoring purposes (see Approvals and Scoring).
    • +
    +

    TootInstall Helper

    +

    A tootinstall helper is a background service that can read RSS feeds provided +by configured tootinstall bots collating all new tootinstall scripts it +has posted, store them in a database, and be able to search and return +information about them as requested by a tootinstall user binary.

    +

    It must:

    +
      +
    • be able to be configured to check multiple tootinstall bot RSS feeds to +allow for a more federated and decentralised service.
    • +
    • be able to write to a persistent database
    • +
    • be able to return a script by name
    • +
    • NOT allow anyone other than the original author or maintainers to update a script
    • +
    • be able to operate a blacklist of accounts/instances to prevent spamming
    • +
    +

    It would also be useful if it could:

    +
      +
    • increment a version number of a tootinstall script automatically. Incoming version numbers +should be ignored.
    • +
    +

    TootInstall Host

    +

    A tootinstall host is a web frontend used by tootinstall user binary +that is able to utilise the tootinstall helper to return tootinstall scripts.

    +

    It must:

    +
      +
    • be accessible on the internet
    • +
    • be able to search and return a list of packages in json format
    • +
    • be able to return a specific package script by name in toml format
    • +
    +

    Endpoint URLs should be as follows:

    +
      +
    • /search?q=package_name
    • +
    • /install?p=package_name
    • +
    +

    The TootInstall Bot, Helper and Host can all be the same system and do not necessarily need to be separate services

    +

    TootInstall Script

    +

    A tootinstall script is a toml document describing the dependencies and +build/install process of a package.
    +It has the following parameters:

    +
      +
    • Editable:
    • +
    +
    name         : string : the package name (not editable after the first post)
    +targets      : array[string] : a list of os+arch targets
    +dependencies : array[string] : a list of software dependencies required 
    +maintainers  : array[string] : a list of ActivityPub accounts who can update a script
    +
    +
      +
    • Non-Editable:
    • +
    +
    author           : string : the original author of the script
    +date             : datetime : the date and time the script was last updated (RFC3339)
    +status           : string : the status of the script (pending approval, approved, archived)
    +tootinstall_host : string : the host on which this package has been published
    +
    +

    The Editable parameters are enclosed in +++'s to define separation between the +parameters and the main script.
    +A tootinstall script should also include a shebang to ensure the script runs +as expected.

    +

    TootInstall Binary

    +

    A tootinstall binary is a simple portable binary that anyone can download and +run to get TootInstall functionality.

    +

    A guideline for usage is as below:

    +
    tootinstall [mode] package_name @[tootinstall_host] 
    +  modes:
    +    install    -    builds and installs the package as per the script
    +    download   -    downloads a script but does not run it
    +    search     -    searches the tootinstall url for a package name
    +    inspect    -    finds and displays the tootinstall script
    +    
    +  parameters:  
    +    package_name          - Required. the package name to install or 
    +                            search or inspect
    +    @[tootinstall host]   - Required. the host on which a tootinstall 
    +                            database is running
    +
    +

    It must:

    +
      +
    • be able to access the internet
    • +
    • be able to search and download tootinstall scripts from multiple tootinstall hosts
    • +
    • be able to run the downloaded script
    • +
    • allow the user to inspect the script
    • +
    +

    Verification

    +

    The various tootinstall bots and helpers should be configured to do some +basic verification of the script poster.

    +

    Good examples of some basic checks are:

    +
      +
    • does the poster have a bio?
    • +
    • does the poster have an image?
    • +
    • has the poster been active on the fediverse for a reasonable amount of time
    • +
    • has the poster been interacting with people of the fediverse for a reasonable +amount of time?
    • +
    • does the poster have some other people following them?
    • +
    • has the poster ever been boosted and/or favourited by somebody else a few times?
    • +
    +

    Scoring

    +

    As a popularity/rating service, we can utilise ActivityPub boosts and favourites +as a scoring platform for tootinstall scripts.

    +
      +
    • favourite = "I like this" = 1 point
    • +
    • boost = "I want other people to see this" = 1 point
    • +
    +

    A favourite and a boost from one account can give a script 2 points.

    +

    Approvals

    +

    It would not be sensible to publish a script immediately after posting as +doing so massively increases the risk of distributing malware.
    +Instead, it would be wise to implement an approval concept whereby authorised +accounts could authorise a script by replying to the tootinstall bot's post +with an approval state i.e. "approved" or "denied". A tootinstall bot could +also actively seek out approval from a list of configured accounts, and post the +script privately to them before actually posting the published script.
    +Secondary to this, we could implement a form of crowdsourced approval whereby if +a script score reaches a certain level, it is automatically approved.

    +

    Written by Paul Wilde - 29th July 2024

    +

    @paul@notnull.space

    +

    Final Notes

    +

    OK… let's address the elephant in the room. I am very aware this is incredibly +dangerous and you should be very aware this is a parody concept. +Please, everyone, PLEASE, do not implement any of this!! It is just meant as a +humorous thought experiment and is in no way intended to make it to production.

    + +
    + + + + +
    + + + + + +
    + + + diff --git a/ponderings/turning-off-birdsitelive/index.html b/ponderings/turning-off-birdsitelive/index.html new file mode 100644 index 0000000..97a40d5 --- /dev/null +++ b/ponderings/turning-off-birdsitelive/index.html @@ -0,0 +1,198 @@ + + + + + Why I have turned off my BirdsiteLIVE instance | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    Why I have turned off my BirdsiteLIVE instance

    + + + + + + + + + + + + + + + + + + + + +
    +

    Hello. How are you? I am fine.
    +
    +You may know me from a few places, but likely on the Fediverse as the person that +maintains a BirdsiteLIVE instance with the url birdsite.wilde.cloud.

    +

    Why?

    +

    Due to the recent influx of people from the corporately owned microblogging platform, +the use of many BirdsiteLIVE instances has become massive. +Added to this, I have received many requests from users to block access to block +their posts from the other place via BirdsiteLIVE - which I have happily done +for them, but some people are do not ask nicely and instead resort to claims +of attacks on their privacy (I know, right‽ it's a clear misunderstanding of +how the internet works...). I've also been witness to some pretty brutal comments made towards BirdsiteLIVE's creator.
    +I simply don't feel comfortable with this.
    +
    +Added to this, the instance has become so saturated (over 1000%) that posts +from the other place only turn up sporadically and normally in a flurry that +clutters home timelines.
    +This really isn't nice to see when you're trying to interact with many other people on the fediverse, only to have a huge block on nonsense posts in the middle of it all.

    +

    Offline

    +

    So, I've been considering doing this for some time, but as from today, December 21st 2022, my BirdsiteLIVE instance is offline. I may start a new one up at some point in the future but with a new database, no old follows will remain.
    +I will continue to run my BirdsiteLIVE Instance List which appears to be fairly web search-able to help people out - my original BSL instance URL will now redirect to this site.

    +

    What else can I do?

    +

    Well, to put it bluntly, forget about the other place. Use of the Fediverse has skyrocketed since the other place's recent ownership changed. You'll find most of the people you want to see postsby are on the Fediverse already! Who needs content from the other place?

    +

    If you do need content from the other place, why not try using something like Nitter or one of it's many instances. You can even put /rss at the end of the URL to get that content as a lovely RSS feed to put into your favorite RSS reader (you are using RSS, right‽).

    +

    Sign off

    +

    Anyway, if you managed to get this far, thank you. I don't blog normally, but I felt I needed to put some kind of statement up, even if it is poorly written and slightly opinionated. Thanks for reading anyway.

    + +
    + + + + +
    + + + + + +
    + + + diff --git a/ponderings/unphoneticabc/index.html b/ponderings/unphoneticabc/index.html new file mode 100644 index 0000000..fd303c1 --- /dev/null +++ b/ponderings/unphoneticabc/index.html @@ -0,0 +1,181 @@ + + + + + Unphonetic ABC | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    Unphonetic ABC

    + + + + + + + + +
    + +
    + + + + + + + + + + + + + + + +
    +

    A website directory of all words that can be associated with their letters by not +sounding as their corresponding letter should do.

    + +
    + + + + +
    + + + + + +
    + + + diff --git a/ponderings/wildeit/index.html b/ponderings/wildeit/index.html new file mode 100644 index 0000000..bdb24c8 --- /dev/null +++ b/ponderings/wildeit/index.html @@ -0,0 +1,181 @@ + + + + + Wilde IT | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    Wilde IT

    + + + + + + + + +
    + +
    + + + + + + + + + + + + + + + +
    +

    A local IT business website detailing available services. +Our business website.

    + +
    + + + + +
    + + + + + +
    + + + diff --git a/ponderings/wm-tools/index.html b/ponderings/wm-tools/index.html new file mode 100644 index 0000000..71fa04d --- /dev/null +++ b/ponderings/wm-tools/index.html @@ -0,0 +1,233 @@ + + + + + wm_tools | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    wm_tools

    + + + + + + + + + + + + + + + + + + + + + + +
    +

    A selection of information output tools for dmenu

    +

    These are a selection of independant tools for displaying various information +about system status in dmenu. Some of them i.e. volume have options (up, down, mute...) +which are selectable options in dmenu.

    +

    Tools

    +
      +
    • pingclock performs a single ping to a server and returns the response time
    • +
    • battery shows the current battery level
    • +
    • brightness shows the current backlight level and gives options to adjust it
    • +
    • volume shows the current volume level and gives options to adjust and manage it
    • +
    • date shows the date
    • +
    • fuzzytime shows the fuzzytime clock
    • +
    • wlan shows the state of the wireless network interface. SSID connected to and signal level.
    • +
    • nic shows the status and/or the ip address of the network interface card
    • +
    • temperature shows the current CPU temperature
    • +
    • notes a simple one liner note taking tool, displaying notes in dmenu/rofi
    • +
    +

    The next two do not work with rofi unless you have alias dmenu=rofi set, but they're pretty nice tools

    +
      +
    • passmenu_wrapper a wrapper for passmenu. It basically just styles passmenu with no other features
    • +
    • command_wrapper inspired by passmenu_wrapper, a basic tool to run other dmenu related tools with uniform styling. +
        +
      • For example: dmenu_run, clipmenu, passmenu etc.
      • +
      +
    • +
    +

    Example in dmenu:

    +

    dmenu_tools

    +

    Example of command_wrapper with clipmenu

    +

    command_wrap

    +

    How to compile

    +

    There are some configuration variables explicit to me, you'll need to change them for you for them to be useful I imagine.
    +Configuration variables are compile - there are no config files or runtime parameters (except for "rofi")

    +

    Each tool is compiled separately, for example:

    +
    nim c pingclock
    +
    +

    and then run with

    +
    ./pingclock 
    +# or
    +./pingclock rofi
    +
    +

    How to use

    +

    Personally, I have these bound to key combinations in i3. +In fact, I have a seperate bindsym mode in which all these +tools are accessible i.e. $mod+i to get to "info" mode then p to show pingclock.
    +It's completely up to you how to run them, they're just simple CLI tools really.

    +

    You can also set the volume and brightness levels by typing a numeric figure into the dmenu/rofi input box

    +

    Dependencies

    +
      +
    • dmenu or rofi
    • +
    • yad for calendar
    • +
    • passmenu for passmenu_wrapper
    • +
    • basically any tool that's used to gather the information.
    • +
    • "tools" for audio etc. (pamixer, ncpamixer, etc.) can be set in the source
    • +
    + +
    + + + + +
    + + + + + +
    + + + diff --git a/post.css b/post.css new file mode 100644 index 0000000..2d8fd20 --- /dev/null +++ b/post.css @@ -0,0 +1 @@ +.posts{width:100%;margin:0 auto}.post{width:100%;text-align:left;margin:20px auto;padding:20px 0}@media (max-width: 899px){.post{max-width:660px}}.post:not(:last-of-type){border-bottom:1px solid var(--border-color)}.post .post-meta-inline,.post .post-meta{font-size:1rem;margin-bottom:10px;color:var(--accent-alpha-70)}.post-meta-inline{display:inline}.post-title{--border: 2px dashed var(--accent);position:relative;color:var(--accent);margin:0 0 15px;padding-bottom:15px;border-bottom:var(--border);font-weight:normal}.post-title a{text-decoration:none}.post .post-tags-inline,.post .post-tags{margin-bottom:20px;font-size:1rem;opacity:.5}.post-tags{display:block}.post-tags-inline{display:inline}@media (max-width: 683px){.post-tags-inline{display:block}}.post-content{margin-top:30px}.post-cover{border:20px solid var(--accent);background:rgba(0,0,0,0);margin:40px 0;padding:20px}@media (max-width: 683px){.post-cover{padding:10px;border-width:10px}}.post ul{list-style:none}.post ul li:before{content:"►";position:absolute;left:-20px;color:var(--accent)}.post--regulation h1{justify-content:center}.post--regulation h2{justify-content:center;margin-bottom:10px}.post--regulation h2+h2{margin-top:-10px;margin-bottom:20px}.post-list .post-date{color:var(--accent-alpha-70);text-decoration:none}.post-list a{text-decoration:none}.post-list .post-list-title{text-decoration:underline}.post-list .post-tag{text-decoration:underline} \ No newline at end of file diff --git a/recipes/basicdough/index.html b/recipes/basicdough/index.html deleted file mode 100644 index 94213f5..0000000 --- a/recipes/basicdough/index.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - - - - - - - - - Basic Dough Recipe :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Recipes - - / Basic Dough Recipe -

    - - - -   - A really easy dough that you can use for bread, pizzas, naan bread, etc. -
    -

    Ingredients

    -
      - -
    • 300ml warm-ish water
    • - -
    • 7g salt
    • - -
    • 28g sugar
    • - -
    • 30ml olive oil
    • - -
    • 500g flour
    • - -
    • 7g dried yeast OR a decent amount of sourdough starter and 2g dried yeast
    • - -
    • a selection of herbs (optional)
    • - -
    -
    -

    You'll need…

    -
      - -
    • a bread making machine will make this a lot easier…
    • - -
    • …if you don't have a bread maker …
    • - -
    • large mixing bowl
    • - -
    • large wooden chopping board
    • - -
    • an apron - this can get messy
    • - -
    -
    -

    Recipe

    -

    It'll take about 1 hour 30 minutes + more time to let the dough rise

    -

    If you have a bread maker:

    -
      -
    1. add the water, salt, sugar, herbs, oil, flour and yeast/sourdough starter -IN THAT ORDER to the bread maker’s container. -
        -
      • You must add them in that order, or at least water first else the -mixture will not mix correctly.
      • -
      -
    2. -
    3. set the bread maker to its “dough” setting and set it going - job done!
      -(P.S. you can just use this same recipe as a regular bread too - just set the -bread maker to the regular “bread” mode)
    4. -
    5. At this point I normally transfer the dough to a suitable container and -cover it to let it rise.
    6. -
    -

    Without a bread maker:

    -
      -
    1. add the flour, salt, sugar, herbs and yeast/sourdough starter to the -large mixing bowl and dry mix them all together.
    2. -
    3. form a well in the middle of the flour mixture and slowly pour in the -water bit by bit, mixing the flour mixture into the water as you go
    4. -
    5. continue to mix the flour and water mixture, you’re going to need to use -your hands, but give it a good mix until everything is mixed together well. -
        -
      • you want the dough to still be a bit wet, so if it’s dry, add a bit more -water
      • -
      -
    6. -
    7. dust the large chopping board with flour and turn out the wet-ish dough -ball onto the board.
    8. -
    9. Knead the dough, a lot! Just keep kneading, adding more flour if -necessary. -
        -
      • As you knead you’ll noticed the dough ball become more smooth and -springy, but it will also feel “stronger”
      • -
      -
    10. -
    11. Once the ball is nice and firm, but still springy, place it into a suitable -container and cover to let it rise.
    12. -
    -

    After a few hours of rising time (longer if you’re using sourdough starter) -your dough will, hopefully, have risen enormously. You can now use it. -I’ll be adding recipes for pizzas, naans and other -things that use this dough here, eventually.

    - - - -
    -
    - - Published : Thu, 01 April 2021 at 11:41am +0100
    - - -
    - - - - -
    -
    - - - - - diff --git a/recipes/index.html b/recipes/index.html deleted file mode 100644 index 12072bf..0000000 --- a/recipes/index.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - - - - - - - - - - - Recipes :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - / Recipes -

    - - - -

    Here’s a few of the recipes I like to cook sometimes. I hope to keep these -simple and brief, you don’t need introductions, you just need to cook.

    - -
    - -
    - - -
    -
    - - Last Modified : - - - - - Sat, 13 November 2021 at 14:15pm +0000 - - - - -
    - - - - -
    -
    - - - - - diff --git a/recipes/peanut-butter/index.html b/recipes/peanut-butter/index.html deleted file mode 100644 index 03a54bb..0000000 --- a/recipes/peanut-butter/index.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - - - - - - - - - Peanut Butter Recipe :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Recipes - - / Peanut Butter Recipe -

    - - - -   - The easiest, greatest, peanut butter you'll have ever tasted. -
    -

    Ingredients

    -
      - -
    • Raw Peanuts - as many as you like (400g will make about 250ml of Peanut Butter)
    • - -
    -
    -

    You'll need…

    -
      - -
    • Large Frying Pan
    • - -
    • Blender
    • - -
    -
    -

    Recipe

    -

    It'll take about 20 minutes

    -

    This is the easiest thing in the world.

    -
      -
    1. Dry-fry (no oil etc.) the peanuts in the large frying pan for about 10 mins or for as long as it takes for the peanuts to become golden brown. -
        -
      • This will encourage the oils in the peanuts to release - which is exactly what we want!
      • -
      -
    2. -
    3. Put the now-roasted peanuts into the blender and blend. -
        -
      • Blend, blend, blend and blend some more.
      • -
      • There will be a point when you think nothing’s happening and the small bits of peanut are just moving around the blender, or just stuck in place. Give the stuck pieces a nudge with a spatula and get back to blending.
      • -
      • Blend, blend, blend even more until, eventually, the mixture starts to bind together and turn into a thick solid mass.
      • -
      • Keep blending and the mixture will loosen up become a lovely, smooth, peanut butter.
      • -
      -
    4. -
    5. Spoon out into a suitable container and allow to cool (or just eat it there and then, I won’t judge you).
    6. -
    -

    Top Tips =

    -
      -
    • If you prefer a chunky peanut butter, save some of the roasted peanuts back and only put them into the blended mixture at the end with a bit of a stir - lovely!
    • -
    - - - -
    -
    - - Published : Sat, 13 November 2021 at 14:15pm +0000
    - - -
    - - - - -
    -
    - - - - - diff --git a/search_index.en.js b/search_index.en.js new file mode 100644 index 0000000..1620bca --- /dev/null +++ b/search_index.en.js @@ -0,0 +1 @@ +window.searchIndex = {"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0,"1":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1,"0":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1,"0":{"docs":{},"df":0,"0":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"5":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/skeletor/":{"tf":1.0}},"df":1}}}},"2":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1,"0":{"docs":{},"df":0,"2":{"docs":{},"df":0,"2":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1},"4":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"1":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"9":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"8":{"docs":{},"df":0,"0":{"docs":{},"df":0,"1":{"docs":{},"df":0,"0":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/unphoneticabc/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":4}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.0}},"df":3,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.23606797749979}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}}}},"d":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":2,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"d":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":2.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":2,"i":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":2,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":4,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772}},"df":1}}}}}}}}},"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"g":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0}},"df":1,"m":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":2}},"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772}},"df":3}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":2}}}},"i":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.0},"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0}},"df":2}},"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0}},"df":1}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":2}},"t":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":1}}}}},"p":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1,"c":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":3.0}},"df":1}}}}},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/unphoneticabc/":{"tf":1.0}},"df":2}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}}},"o":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.6457513110645907}},"df":1,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":3}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wildeit/":{"tf":1.0}},"df":2}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1},"y":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"k":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.4142135623730951}},"df":1}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.4142135623730951}},"df":1,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.7320508075688772}},"df":1}},"s":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.7320508075688772}},"df":4}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951}},"df":1}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":2.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":2}}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":4}}},"d":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0}},"df":1}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"w":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":2}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.449489742783178}},"df":2}}},"d":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}}}}}}}}},"l":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":2.449489742783178}},"df":1,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/basicdough/":{"tf":2.0},"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.4142135623730951}},"df":4}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":3.3166247903554}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.4142135623730951}},"df":1}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.7320508075688772}},"df":1}},"g":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951}},"df":1}}},"d":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.449489742783178}},"df":1,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":3.3166247903554}},"df":1,"'":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}},"x":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":2.6457513110645907}},"df":1}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.7320508075688772}},"df":1}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1},"p":{"docs":{},"df":0,"w":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"w":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772}},"df":3,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/wildeit/":{"tf":1.4142135623730951}},"df":5}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.7320508075688772}},"df":1}}}}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":2}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1},"e":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"f":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.0}},"df":1}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"i":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.8284271247461903},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":2}}},"p":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0}},"df":1,"d":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951}},"df":3,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}},"e":{"docs":{"https://paulwilde.uk/ponderings/":{"tf":1.0}},"df":1},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.7320508075688772}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":2}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.0}},"df":1,"u":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1},"g":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}},"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.449489742783178},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":4}}},"r":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":3}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.7320508075688772}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":3}}}}},"o":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1},"l":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/unphoneticabc/":{"tf":1.0}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":5,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.7320508075688772}},"df":1}}}}},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.8284271247461903},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":2.0}},"df":2}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":2}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"a":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":2,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}}},"e":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":3}},"y":{"docs":{"https://paulwilde.uk/ponderings/skeletor/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":3}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":2}},"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/wildeit/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"y":{"docs":{},"df":0,"|":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}},"i":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/unphoneticabc/":{"tf":1.0}},"df":3}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":2.449489742783178}},"df":1,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}}}},"=":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}}}}},"n":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951}},"df":1},"o":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}}}}},"g":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":4}},"e":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2},"’":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}},"t":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":3.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}},"w":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":2,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772}},"df":1}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"w":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}},"i":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2}},"u":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951}},"df":1}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}}},"t":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772}},"df":2,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}}},"f":{"docs":{},"df":0,"a":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":2.449489742783178},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":3}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":3,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":2}},"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":2.0}},"df":1}}}},"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1,"c":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.7320508075688772}},"df":4,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":3,"t":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":3}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"'":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.0}},"df":1}}}}},"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":2.0}},"df":3}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":2}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}}}},"y":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.4142135623730951}},"df":1},"t":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.0}},"df":2}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/skeletor/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772}},"df":1}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":2.0}},"df":2}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}}},"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":3}},"l":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}},"w":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":3}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.6457513110645907},"https://paulwilde.uk/ponderings/nemini/":{"tf":2.8284271247461903},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"d":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":3},"e":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}},"m":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":2}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":2.6457513110645907}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.23606797749979},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":4}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"m":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772}},"df":1}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":2.0}},"df":1}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":2}}}}},"i":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":2}}},"n":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0}},"df":2,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":3}}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}},"z":{"docs":{},"df":0,"z":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.7320508075688772}},"df":1}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951}},"df":2,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.7320508075688772}},"df":1}}}},":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/":{"tf":1.0},"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":5}}},"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":5}}},"o":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":3,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":4}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":2}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/ponderings/sql-haiku/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}},"v":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}},"p":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.8284271247461903}},"df":1}}}},"r":{"docs":{},"df":0,"b":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951}},"df":1},"e":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1,"’":{"docs":{"https://paulwilde.uk/ponderings/":{"tf":1.0}},"df":1}}}},"i":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":2,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":2}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/nemini/":{"tf":2.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.23606797749979}},"df":3}},"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1},"s":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.7320508075688772}},"df":1}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,":":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,":":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":2},"l":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}},"m":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":2},"v":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":1}},".":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":3},"3":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}},"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772}},"df":3}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"d":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}},"x":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"o":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1,"r":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.7320508075688772}},"df":5}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/errors/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.0}},"df":4,"l":{"docs":{},"df":0,"?":{"docs":{},"df":0,"p":{"docs":{},"df":0,"=":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":2.8284271247461903}},"df":2}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":4}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":3}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}}}}}},"p":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"'":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":6},"’":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.4142135623730951}},"df":1}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"b":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2}},"y":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.7320508075688772}},"df":1}}},"o":{"docs":{},"df":0,"w":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":1,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}},"n":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"'":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/unphoneticabc/":{"tf":1.4142135623730951}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":2.23606797749979}},"df":2}}}},"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}}}},"f":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0}},"df":2}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"k":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}},"k":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1},"u":{"docs":{},"df":0,"x":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":2}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":3}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/wildeit/":{"tf":1.0}},"df":3},"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":2}}},"g":{"docs":{"https://paulwilde.uk/ponderings/":{"tf":1.0}},"df":1},"n":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/ltos/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1},"v":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.449489742783178}},"df":1,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.23606797749979}},"df":1}}}}}}},"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":3.3166247903554},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":2,"'":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.0},"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0},"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":6,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":2.0}},"df":1,"'":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":2}},"i":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":2.0}},"df":3}},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}},"y":{"docs":{},"df":0,"b":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"o":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}}}},"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}},"n":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1,"d":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}}}}}}}},"x":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":2.6457513110645907}},"df":1,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":2.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.7320508075688772}},"df":2}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"+":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}},"e":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":2,"r":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951}},"df":1}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":5},"n":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":2.449489742783178}},"df":1}},"u":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}},"v":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":2}}},"c":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":6}},"m":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":2.0}},"df":1}}}},"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}}}},"w":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":3},"x":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.0}},"df":1}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"x":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":2}}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1,"e":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":4}},"m":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":3,"b":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951}},"df":2,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.0}},"df":1}}},"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":2}}}},"t":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.7320508075688772}},"df":2},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"'":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":2},"f":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951}},"df":1}}}},"w":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":4}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}},"ɛ":{"docs":{},"df":0,"m":{"docs":{},"df":0,"ɪ":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0}},"df":1}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.4142135623730951}},"df":2}},"k":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}},"n":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":5,"c":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":2},"t":{"docs":{},"df":0,"o":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/":{"tf":1.0},"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/ltos/":{"tf":1.4142135623730951}},"df":3,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}},"r":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772}},"df":2}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":2.0}},"df":2}}}}},"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":6,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772}},"df":1}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}},"w":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}}}}}},"p":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1,".":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.6457513110645907}},"df":3}}}},"g":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.0},"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":5}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}},"n":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}},"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":2.0}},"df":1,"_":{"docs":{},"df":0,"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1,"@":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"y":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}},"c":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":3.0}},"df":1}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":2.23606797749979}},"df":3}}},"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}}}},"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}}}}}},"z":{"docs":{},"df":0,"z":{"docs":{},"df":0,"a":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":2.449489742783178}},"df":3,"'":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"n":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.23606797749979},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":3}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":5}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":4.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.7320508075688772}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.8284271247461903}},"df":1}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772}},"df":1}}}}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}},"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":2}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":3}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/":{"tf":1.0},"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":2}}}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":4}}},"x":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.449489742783178}},"df":2}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"t":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":2.0}},"df":2}},"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://paulwilde.uk/ponderings/rossrates/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/rossrates/":{"tf":1.4142135623730951}},"df":2}}},"e":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"d":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}},"i":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}},"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":3}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.0}},"df":1}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/":{"tf":1.0}},"df":1}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":3}}},"i":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.0}},"df":4}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.23606797749979},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":3}}},"s":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.7320508075688772}},"df":1,"n":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}},"k":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.4142135623730951}},"df":1}}},"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.7320508075688772}},"df":2}},"o":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/rossrates/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.23606797749979},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":2.0}},"df":2}},"u":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/nemini/":{"tf":2.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.7320508075688772}},"df":8,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1},"t":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}},"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.23606797749979}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":5.5677643628300215}},"df":1}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":3,"?":{"docs":{},"df":0,"q":{"docs":{},"df":0,"=":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0}},"df":1}}}},"e":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":3,"k":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.7320508075688772}},"df":1}}},"f":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":2}},"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/nemini/":{"tf":2.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":5}},"i":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.6457513110645907},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.23606797749979},"https://paulwilde.uk/ponderings/wildeit/":{"tf":1.0}},"df":6,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":2.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.7320508075688772}},"df":4}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951}},"df":1}}}}}},"w":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":3.0}},"df":2}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}}},"p":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":2.0},"https://paulwilde.uk/ponderings/rossrates/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":7,"i":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1,"f":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}},"t":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0}},"df":1,"e":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{"https://paulwilde.uk/ponderings/skeletor/":{"tf":1.4142135623730951}},"df":1}}}}}}},"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":3}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/ltos/":{"tf":1.4142135623730951}},"df":1}}}}},"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772}},"df":3}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/":{"tf":1.0},"https://paulwilde.uk/ponderings/errors/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":4},"i":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":2}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.0},"https://paulwilde.uk/ponderings/unphoneticabc/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/":{"tf":1.0},"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":4},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}}},"f":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0}},"df":1},"n":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951}},"df":1}}}}}},"q":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/sql-haiku/":{"tf":1.0}},"df":1},"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}},"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://paulwilde.uk/ponderings/skeletor/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951}},"df":1}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0},"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":4,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.7320508075688772}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":2,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":3}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":2}},"r":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1},"i":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.4142135623730951}},"df":1}},"f":{"docs":{},"df":0,"f":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/rossrates/":{"tf":1.0}},"df":4}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":2}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":2}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":2}}},"x":{"docs":{},"df":0,"h":{"docs":{},"df":0,"k":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1},"k":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"x":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":2}},"t":{"docs":{},"df":0,"'":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"'":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1},"v":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":3},"k":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":2.0}},"df":1}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772}},"df":1,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":4}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":2}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":4,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{"https://paulwilde.uk/ponderings/ltos/":{"tf":1.4142135623730951}},"df":1},"p":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}},"o":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":3}}}},"m":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":2}},"o":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":3.4641016151377544}},"df":3},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":6.6332495807108}},"df":1,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"@":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"p":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":2},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.4142135623730951}},"df":4}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0}},"df":1}}},"o":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":3}}}},"u":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951}},"df":1}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/unphoneticabc/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2}}}},"p":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":5,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":2}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.7320508075688772}},"df":3}},"s":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":2.449489742783178},"https://paulwilde.uk/ponderings/":{"tf":1.0},"https://paulwilde.uk/ponderings/basicdough/":{"tf":2.23606797749979},"https://paulwilde.uk/ponderings/batmon/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.23606797749979},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":2.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.7320508075688772}},"df":11,"a":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.7320508075688772}},"df":1}},"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":2.23606797749979},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.23606797749979}},"df":1}}}}}}},"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"4":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"3":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}}},"7":{"docs":{},"df":0,"8":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":2}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.7320508075688772},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":3,"f":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":2}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":3},"e":{"docs":{},"df":0,"w":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.4142135623730951}},"df":1}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":2.0}},"df":2}}}},"p":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1},"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0}},"df":1}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":6}},"r":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":2.449489742783178}},"df":1}}},"y":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":5}},"e":{"docs":{},"df":0,"b":{"docs":{"https://paulwilde.uk/ponderings/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":6,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0},"https://paulwilde.uk/ponderings/faces/":{"tf":1.0},"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0},"https://paulwilde.uk/ponderings/unphoneticabc/":{"tf":1.0},"https://paulwilde.uk/ponderings/wildeit/":{"tf":1.4142135623730951}},"df":7}}}},"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/":{"tf":1.4142135623730951}},"df":1}}},"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":4}},"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951}},"df":1}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.4142135623730951}},"df":1}},"v":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/wildeit/":{"tf":1.0}},"df":2,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1},"h":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}},"m":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/":{"tf":1.0},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0},"https://paulwilde.uk/ponderings/unphoneticabc/":{"tf":1.0}},"df":3},"k":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.23606797749979},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":4},"l":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2}},"t":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}},"’":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":2}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":4}}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/":{"tf":1.0}},"df":1}}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":2.23606797749979}},"df":1}}},"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.0}},"df":1},"r":{"docs":{"https://paulwilde.uk/ponderings/skeletor/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0},"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":4}},"r":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.4142135623730951},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":3}}}}},"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://paulwilde.uk/aboutme/":{"tf":1.0},"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":2}}},"s":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}}}}},"title":{"root":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/unphoneticabc/":{"tf":1.0}},"df":1}},"i":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0}},"df":1}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/batmon/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{"https://paulwilde.uk/ponderings/bedfordandco/":{"tf":1.0}},"df":1}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://paulwilde.uk/ponderings/skeletor/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.0}},"df":1}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/fortieth/":{"tf":1.0}},"df":1}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/geminicss/":{"tf":1.0}},"df":1}}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{"https://paulwilde.uk/ponderings/sql-haiku/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{"https://paulwilde.uk/ponderings/mailautoconf/":{"tf":1.0}},"df":1}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/nemini/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/faces/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://paulwilde.uk/ponderings/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://paulwilde.uk/ponderings/rossrates/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"https://paulwilde.uk/ponderings/basicdough/":{"tf":1.0},"https://paulwilde.uk/ponderings/peanut-butter/":{"tf":1.0}},"df":2}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://paulwilde.uk/ponderings/rossrates/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://paulwilde.uk/ponderings/freshgpt/":{"tf":1.0}},"df":1}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{"https://paulwilde.uk/ponderings/skeletor/":{"tf":1.0}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0}},"df":1}}}}}},"q":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/sql-haiku/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://paulwilde.uk/ponderings/skeletor/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/ltos/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/tootinstall-concept/":{"tf":1.0}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://paulwilde.uk/ponderings/unphoneticabc/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{"https://paulwilde.uk/ponderings/toolsiuse/":{"tf":1.0}},"df":1}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://paulwilde.uk/ponderings/geesewildecloud/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://paulwilde.uk/ponderings/errors/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://paulwilde.uk/ponderings/wildeit/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://paulwilde.uk/ponderings/wm-tools/":{"tf":1.0}},"df":1}}}}}}}}}},"documentStore":{"save":true,"docs":{"https://paulwilde.uk/":{"body":"Welcome\n\nIT Professional\nHusband\nCat feeder\nDog walker\nOpen Source Enthusiast\nBaker & Eater\nWebmaster\nPostmaster\nHobbyist Musician\n\n","id":"https://paulwilde.uk/","title":"Welcome"},"https://paulwilde.uk/aboutme/":{"body":"Hello,\nThis is my website which will contain my general thoughts, utterings,\nmaybe my opinions, possibly some tech stuff I find interesting, some of the\nrecipes I cook and want to remember the ingredients of and a bit of artwork I\ndraw for fun and I in no way claim to be a good artist in any way.\nSome things about me. I :\n\nam an IT Professional.\n\nI run my own IT Business that provides IT consulting, assistance and procurement services to local businesses (Devon, South West UK).\n\n\nam an Open Source advocate/evangelist.\n\nI try to use Open Source products in my personal and working life as often as possible.\n\n\nam data privacy conscious.\n\nI believe we shouldn't pay for products or services with our personal data and \"marketability\"\nI don't use the mainstream social media services. You shouldn't either.\n\n\nuse Arch Linux btw …\n\nSome information about this site. It :\n\nwas created using Zola\nis built with efficiency in mind; It's small and light and quick to view.\nuses no JavaScript (except a little bit for Plausible Analytics, forgive me).\nruns on an Caddy server on top of a Rocky Linux VPS provided by OVH.\nwas written using the Neovim text editor on a PC Specialist laptop running Arch Linux\n\n","id":"https://paulwilde.uk/aboutme/","title":"About Me"},"https://paulwilde.uk/ponderings/":{"body":"I refuse to use the word that comes from a compounded “web log”, but here’s some stuff I did or wrote or generally something I have pondered\n","id":"https://paulwilde.uk/ponderings/","title":"Ponderings"},"https://paulwilde.uk/ponderings/basicdough/":{"body":"If you have a bread maker:\n\nadd the water, salt, sugar, herbs, oil, flour and yeast/sourdough starter\nIN THAT ORDER to the bread maker's container.\n\nYou must add them in that order, or at least water first else the\nmixture will not mix correctly.\n\n\nset the bread maker to its \"dough\" setting and set it going - job done!\n(P.S. you can just use this same recipe as a regular bread too - just set the\nbread maker to the regular \"bread\" mode)\nAt this point I normally transfer the dough to a suitable container and\ncover it to let it rise.\n\nWithout a bread maker:\n\nadd the flour, salt, sugar, herbs and yeast/sourdough starter to the\nlarge mixing bowl and dry mix them all together.\nform a well in the middle of the flour mixture and slowly pour in the\nwater bit by bit, mixing the flour mixture into the water as you go\ncontinue to mix the flour and water mixture, you're going to need to use\nyour hands, but give it a good mix until everything is mixed together well.\n\nyou want the dough to still be a bit wet, so if it's dry, add a bit more\nwater\n\n\ndust the large chopping board with flour and turn out the wet-ish dough\nball onto the board.\nKnead the dough, a lot! Just keep kneading, adding more flour if\nnecessary.\n\nAs you knead you'll noticed the dough ball become more smooth and\nspringy, but it will also feel \"stronger\"\n\n\nOnce the ball is nice and firm, but still springy, place it into a suitable\ncontainer and cover to let it rise.\n\nAfter a few hours of rising time (longer if you're using sourdough starter)\nyour dough will, hopefully, have risen enormously. You can now use it.\nI'll be adding recipes for pizzas, naans and other\nthings that use this dough here, eventually.\n","id":"https://paulwilde.uk/ponderings/basicdough/","title":"Basic Dough Recipe"},"https://paulwilde.uk/ponderings/batmon/":{"body":"A simple battery monitor tool that can notify you on battery status changes for FreeBSD.\nInspired by but in no way similar to batsignal - inspiring the basic function only.\nWritten in pure Nim.\nRequirements\nRun Requirements\n\napm\nnotify-send\n\nBuild Requirements\n\nnim\nnimble\n\nInstallation\nTo install into your .nimble/bin directory\n\nRunning\n\nUsing\nWhen importing Batmon as a module you have access to the get_battery_status()\nprocedure which will return a Battery object you can use elsewhere.\nBattery Type\n\nAlso, you have access to the notification handler module, where you can build\nand send your own notifications:\n\n","id":"https://paulwilde.uk/ponderings/batmon/","title":"BatMon"},"https://paulwilde.uk/ponderings/bedfordandco/":{"body":"Simple single page website for a local accountancy business.\nHas additional Vue.js implementation for news and exchange rates updates.\n","id":"https://paulwilde.uk/ponderings/bedfordandco/","title":"Bedford & Co"},"https://paulwilde.uk/ponderings/errors/":{"body":"Your Friendly Error Code Index\nInspirational instructions for dealing with unhelpful error codes\n\nWouldn’t it be great if there was something to tell you what to do about this error?!\nWouldn’t it be great if it said\n\ninstead?\n","id":"https://paulwilde.uk/ponderings/errors/","title":"Wholesome Errors"},"https://paulwilde.uk/ponderings/faces/":{"body":"Just a very silly website with an animated face making sounds.\nYeah, just that really. (The image is not me)\n","id":"https://paulwilde.uk/ponderings/faces/","title":"Noisy Faces"},"https://paulwilde.uk/ponderings/fortieth/":{"body":"'Twas the morning after the fortieth\nAnd all through the house\nNot a creature was stirring\nExcept the one making the coffee and Alkaseltzer\n'Twas the morning after the morning after the fortieth\nAnd all through the house\nThe creatures were starting to stir but generally still uncomfortable and underperforming\n'Twas the morning after the morning after the morning after the fortieth\nAnd all through the house\nThe creatures were stirring\nEven the mouse!\nIt scurried up the staircase\nSqueaking the old well known phrase\n\"Warning! Duration of hangover is proportionate to age!\"\n","id":"https://paulwilde.uk/ponderings/fortieth/","title":"Fortieth"},"https://paulwilde.uk/ponderings/freshgpt/":{"body":"This is a story all about how\nYour query got twist-turned upside down\nAnd I'd like to show an answer just sit right there\nIt might not be fully accurate but I don't care\n","id":"https://paulwilde.uk/ponderings/freshgpt/","title":"AI Search"},"https://paulwilde.uk/ponderings/geesewildecloud/":{"body":"Starting life as a (sort of inappropriate) parody of a certain popular dating website\nthe geese website was made as a bit of fun and to please minor obsession with geese.\n","id":"https://paulwilde.uk/ponderings/geesewildecloud/","title":"The Geese Webpage"},"https://paulwilde.uk/ponderings/geminicss/":{"body":"Gemini.css is an almost classless CSS style for making Gemini-like HTML pages.\nFor a Gemini.css demonstration, go to geminicss.paulwilde.uk.\n","id":"https://paulwilde.uk/ponderings/geminicss/","title":"Gemini.css"},"https://paulwilde.uk/ponderings/ltos/":{"body":"A spoof single page animation website of a secret society dedicated to finding all\nlost tin openers.\n","id":"https://paulwilde.uk/ponderings/ltos/","title":"The Lost Tin Opener Society"},"https://paulwilde.uk/ponderings/mailautoconf/":{"body":"A simple, configurable autodiscover/autoconfig service for distributed and self-hosted services.\nWhat is MailAutoConf?\nMailAutoConf is autodiscover/autoconfig web server for self-hosted mail services\nwhich do not have their own autodiscover service.\nWhat does MailAutoConf do?\nMailAutoConf is currently in very early stages, but it does generate valid\nautoconfig XML files (/mail/config-v1.1.xml) compatible with many mail clients\ni.e. Thunderbird, Evolution, etc.\nTheoretically, anything that can read the standard autoconfig XML file -\nhttps://wiki.mozilla.org/Thunderbird:Autoconfiguration:ConfigFileFormat, should\nbe able to auto-configure using this service.\nInstallation\nMailAutoConf runs its own webserver on port 8010.\nYou will need to supply a volume for the configuration file and port forwarding.\n\nYou will need a reverse proxy server to publish to the outside world and handle SSL encryption.\nFor example, in nginx:\n\nFirst run will create sample.yaml files in the config directory. Copy these to config.yaml and services.yaml and configure them to your needs.\nMailAutoConf will handle all the URLs it's able to deal with, i.e. /mail/config-v1.1.xml, /Autodiscover/Autodiscover.xml automatically.\nDNS config\nYou will need to configure DNS records for your domain.\nI would recommend setting up an A record for autoconfig.your.domain to point\ndirectly to your MailAutoConf's instance which will work for Thunderbird and\nEvolution clients.\nThen, if Outlook Autodiscover is required (currently not implemented), configure\na SRV record to redirect to the autoconfig.your.domain A record. i.e.\n\nCompatibility\nMailAutoConf has been tested and confirmed working with the following software packages\n\n\nThunderbird (v78 and probably earlier versions too)\n\nEvolution Mail (v3.40.3 and probably earlier versions too)\n\nNextcloud Mail app\n\nOther Mail Clients are likely supported if they support /mail/config-v1.1.xml\n\nFuture plans\nMailAutoConf is currently in very early stages, with a very limited set of features.\nMy hope for MailAutoConf is to run as an autoconfig service which provides Calendar and AddressBook locations as well.\nCalendar and AddressBook is in the autoconfig XML documentation, but currently not implemented. MailAutoConf can generate the correct information for Calendar and AddressBook into the autoconfig XML file, though no clients currently use it.\nTODO:\n\n\n/mail/config-v1.1.xml file for Thunderbird and Evolution mail clients.\n\nAdd more code commenting, it's pretty terrible right now.\n\nRefactor the autoconfig and autodiscover XML files, they've been copied and bodged together and could look so much better.\n\nAutodiscover.xml for Outlook clients - currently does generate, but untested.\n\nAutodiscover.json for more modern Outlook clients - this is currently undocumented. I have implemented some features of it but it is currently not working.\n\nCalendars and Address Book - does generate into mail/config-v1.1.xml, but no actual clients support it yet.\n\nAdditional, custom services. For example, Nextcloud - instead of having to type in your Nextcloud instance URL, you can just enter your email address associated with you Nextcloud account and it looks up the URL from autoconfig - wouldn't that be nice?\n\nProbably loads of stuff I haven't thought of yet.\n\nWhen will it be ready for production?\nWell, not yet. Though it does sort of work already.\nI'm working on this ultimately for my own use for my own small business. I'm hoping once it's good enough I could deploy the set up to my businesses customers and ultimately get them away from a Microsoft Exchange based environment. There's a long way to go for that right now though.\nIf you feel you may be able to help, or ideas on features and their implementation, notice any bugs, or just want to say hi. Please do so and submit a pull request if required.\nThanks for reading!\n","id":"https://paulwilde.uk/ponderings/mailautoconf/","title":"Mailautoconf"},"https://paulwilde.uk/ponderings/nemini/":{"body":"'/nɛmɪnaɪ/' Nem-in-eye\nA simple Gemini server\nNemini is a simple Gemini server with static file serving, virtual host and alias support.\n\"Simple\" in the way it is, hopefully, simple to configure and use with minimal knowledge of web servers in general.\n\nYou probably need to be familiar with TOML configuration files, but other than that the server should run fairly easily.\nSee this page on Nemini : gemini://paulwilde.uk/dev/nemini\nThe source code is hosted at Codeberg.\nFeatures\n\nWill serve static files\nVirtual host and alias capability\nHeaders and Footers can be applied to each page\n\nHow to run\n\nCopy the config/nemini.sample.toml file to /etc/nemini/nemini.toml nd edit to your liking\nCertificates are required so make sure you have those set. They will be automatically created via openssl if they don't exist.\nHost your files in your root_dir director/y|ies/\nRun the nemini binary\n\nParameters\nPassing the --config parameter with a file location will allow the use of a custom config file saved wherever you wish.\nBuild from source\nInstall nim and nimble and run the following command:\n\nnimble build\n\nAll nim dependencies will be installed.\nLinks\nSource Code\nTOML Config file reference\n","id":"https://paulwilde.uk/ponderings/nemini/","title":"Nemini"},"https://paulwilde.uk/ponderings/peanut-butter/":{"body":"This is the easiest thing in the world.\n\nDry-fry (no oil etc.) the peanuts in the large frying pan for about 10 mins or for as long as it takes for the peanuts to become golden brown.\n\nThis will encourage the oils in the peanuts to release - which is exactly what we want!\n\n\nPut the now-roasted peanuts into the blender and blend.\n\nBlend, blend, blend and blend some more.\nThere will be a point when you think nothing's happening and the small bits of peanut are just moving around the blender, or just stuck in place. Give the stuck pieces a nudge with a spatula and get back to blending.\nBlend, blend, blend even more until, eventually, the mixture starts to bind together and turn into a thick solid mass.\nKeep blending and the mixture will loosen up become a lovely, smooth, peanut butter.\n\n\nSpoon out into a suitable container and allow to cool (or just eat it there and then, I won't judge you).\n\nTop Tips =\n\nIf you prefer a chunky peanut butter, save some of the roasted peanuts back and only put them into the blended mixture at the end with a bit of a stir - lovely!\n\n","id":"https://paulwilde.uk/ponderings/peanut-butter/","title":"Peanut Butter Recipe"},"https://paulwilde.uk/ponderings/rossrates/":{"body":"Rate Stuff with Ross, quite simple.\n","id":"https://paulwilde.uk/ponderings/rossrates/","title":"Ross Rates"},"https://paulwilde.uk/ponderings/skeletor/":{"body":"St Skeletor's Day\nFebruary 15th\nEvery Year\n","id":"https://paulwilde.uk/ponderings/skeletor/","title":"St Skeletor's Day"},"https://paulwilde.uk/ponderings/sql-haiku/":{"body":"\n","id":"https://paulwilde.uk/ponderings/sql-haiku/","title":"SQL Haiku"},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"body":"I run the thisisnotmy.email email service.\nWhat's it all about?\nDon’t you hate it when people, businesses, random telephone callers, etc. ask you for your email address out of the blue under the ruse of “providing you a better service”?\nIt's early days but I'm hoping to be able to offer something for people to\nuse eventually.\n\nWouldn’t it be great to confidently give them your email address, but with a slight passive aggressiveness to make the situation more awkward for them, and less awkward for you‽\nEnter thisisnotmy.email. thisisnotmy.email is a fully functional email service. When someone asks you for your email address, just say:\n\n“Sure, it’s my name at this is not my, all one word, dot email”\n\nAnd let them decide whether it’s worth continuing on with this worthless data collecting routine.\n","id":"https://paulwilde.uk/ponderings/thisisnotmyemail/","title":"thisisnotmy.email"},"https://paulwilde.uk/ponderings/toolsiuse/":{"body":"In the interest of sharing interesting information, I thought I'd create this page to list some of my favourite software packages and tools.\nThis list is by no means complete as, if you're like me you'll understand, I use hundreds of software packages.\nFor PC/Laptop :\n\nOperating System\n\nArch Linux\nbspwm\n\n\n\nsxhkd\nrofi\ndunst\nalacritty\nzsh\nsome of my own WM tools\n\n\nWeb browsers\n\nVivaldi Browser\nFirefox Browser\nqutebrowser\n\n\nEmail Clients\n\nThunderbird\n\n\nOffice Software\n\nLibreOffice\nNeovim\n\n\nProgramming Languages\n\nNim\nGoLang\nPython\nRust\n\n\nTheming/Colourschemes\n\nCatppuccin\n\n\n\nFor Servers :\n\nOperating Systems\n\nFreeBSD\nDebian\n\n\nServices\n\nPodman\neFA\nZola\nMailScanner\nMailWatch\nDovecot\nPostfix\nWildDuck\nHAProxy\nnginx\nMailAutoConf\n\n\n\nIf I have missed anyone out, I apologise!\n","id":"https://paulwilde.uk/ponderings/toolsiuse/","title":"I Use …"},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"body":"TootInstall Concept\nStatus of this Memo\nThis memo defines a conceptual protocol for software build and install scripts\nfor varying platforms published via Fediverse (ActivityPub i.e Mastodon, et al) posts.\nOverview\nThese days, the options for software build and install processes are many,\nand jumping through the hoops required for some operating systems can be\ntroublesome and sometimes impossible.\nAdditionally, having to maintain many published packages for varying platforms\nis laborious, and sometimes means packages in some platforms become out of date\nand unmaintained.\nThe TootInstall concept aims to bypass many of these requirements in an effort\nto have build and install scripts available for any application available on a\ndecentralized, federated, all-accessible platform.\nUsage - by Developers\nA software developer or package maintainer would post their script using their\npreferred federated ActivityPub service, and mention a tootinstall bot\n(i.e. @tootinstall_bot@tootinstall.example). The tootinstall bot would then\nparse the script and re-post it, giving attribution to the original poster.\nIt would be in everyone's best interests if all package requirements are listed\nto ensure all dependencies are satisfied before attempting the install.\nFor example, a simple tootinstall script may look like the following:\n\nwhich the bot would receive, and re-post like so:\n\nThe tootinstall bot should have RSS enabled for their posts, which is then\nparsed by a tootinstall helper and collated into a tootinstall database and\npublished on a tootinstall host.\nUsage - by End Users\nAn end user only requires a simple portable tootinstall binary which can be\nused as follows:\n\nTootInstall Bot\nA tootinstall bot is a ActivityPub account that is able to read posts it is\nmentioned in, adapt incoming information and create new posts with correctly\nformatted tootinstall script text.\nIt must:\n\nbe able to publish their ActivityPub feed via RSS so a\ntootinstall helper is able to easily read posts it sends for new\ntootinstall scripts.\npost a tootinstall script as a new post,\nnot a reply, nor a boost, nor a quote boost, nor anything similar,\nto simplify RSS feed handling.\ncreate 'author', 'date', 'status', and\n'tootinstall_host' tags in the tootinstall script and ignore those in the\noriginal post to prevent information poisoning.\nbe able to operate a blacklist of accounts/instances to prevent spamming\n\nIt may also be useful if it could:\n\nreceive boosts/favourites and forward these on to a tootinstall helper\nfor approval and scoring purposes (see Approvals and Scoring).\n\nTootInstall Helper\nA tootinstall helper is a background service that can read RSS feeds provided\nby configured tootinstall bots collating all new tootinstall scripts it\nhas posted, store them in a database, and be able to search and return\ninformation about them as requested by a tootinstall user binary.\nIt must:\n\nbe able to be configured to check multiple tootinstall bot RSS feeds to\nallow for a more federated and decentralised service.\nbe able to write to a persistent database\nbe able to return a script by name\nNOT allow anyone other than the original author or maintainers to update a script\nbe able to operate a blacklist of accounts/instances to prevent spamming\n\nIt would also be useful if it could:\n\nincrement a version number of a tootinstall script automatically. Incoming version numbers\nshould be ignored.\n\nTootInstall Host\nA tootinstall host is a web frontend used by tootinstall user binary\nthat is able to utilise the tootinstall helper to return tootinstall scripts.\nIt must:\n\nbe accessible on the internet\nbe able to search and return a list of packages in json format\nbe able to return a specific package script by name in toml format\n\nEndpoint URLs should be as follows:\n\n/search?q=package_name\n/install?p=package_name\n\nThe TootInstall Bot, Helper and Host can all be the same system and do not necessarily need to be separate services\nTootInstall Script\nA tootinstall script is a toml document describing the dependencies and\nbuild/install process of a package.\nIt has the following parameters:\n\nEditable:\n\n\n\nNon-Editable:\n\n\nThe Editable parameters are enclosed in +++'s to define separation between the\nparameters and the main script.\nA tootinstall script should also include a shebang to ensure the script runs\nas expected.\nTootInstall Binary\nA tootinstall binary is a simple portable binary that anyone can download and\nrun to get TootInstall functionality.\nA guideline for usage is as below:\n\nIt must:\n\nbe able to access the internet\nbe able to search and download tootinstall scripts from multiple tootinstall hosts\nbe able to run the downloaded script\nallow the user to inspect the script\n\nVerification\nThe various tootinstall bots and helpers should be configured to do some\nbasic verification of the script poster.\nGood examples of some basic checks are:\n\ndoes the poster have a bio?\ndoes the poster have an image?\nhas the poster been active on the fediverse for a reasonable amount of time\nhas the poster been interacting with people of the fediverse for a reasonable\namount of time?\ndoes the poster have some other people following them?\nhas the poster ever been boosted and/or favourited by somebody else a few times?\n\nScoring\nAs a popularity/rating service, we can utilise ActivityPub boosts and favourites\nas a scoring platform for tootinstall scripts.\n\nfavourite = \"I like this\" = 1 point\nboost = \"I want other people to see this\" = 1 point\n\nA favourite and a boost from one account can give a script 2 points.\nApprovals\nIt would not be sensible to publish a script immediately after posting as\ndoing so massively increases the risk of distributing malware.\nInstead, it would be wise to implement an approval concept whereby authorised\naccounts could authorise a script by replying to the tootinstall bot's post\nwith an approval state i.e. \"approved\" or \"denied\". A tootinstall bot could\nalso actively seek out approval from a list of configured accounts, and post the\nscript privately to them before actually posting the published script.\nSecondary to this, we could implement a form of crowdsourced approval whereby if\na script score reaches a certain level, it is automatically approved.\nWritten by Paul Wilde - 29th July 2024\n@paul@notnull.space\nFinal Notes\nOK… let's address the elephant in the room. I am very aware this is incredibly\ndangerous and you should be very aware this is a parody concept.\nPlease, everyone, PLEASE, do not implement any of this!! It is just meant as a\nhumorous thought experiment and is in no way intended to make it to production.\n","id":"https://paulwilde.uk/ponderings/tootinstall-concept/","title":"TootInstall"},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"body":"Hello. How are you? I am fine.\n\nYou may know me from a few places, but likely on the Fediverse as the person that\nmaintains a BirdsiteLIVE instance with the url birdsite.wilde.cloud.\nWhy?\nDue to the recent influx of people from the corporately owned microblogging platform,\nthe use of many BirdsiteLIVE instances has become massive.\nAdded to this, I have received many requests from users to block access to block\ntheir posts from the other place via BirdsiteLIVE - which I have happily done\nfor them, but some people are do not ask nicely and instead resort to claims\nof attacks on their privacy (I know, right‽ it's a clear misunderstanding of\nhow the internet works...). I've also been witness to some pretty brutal comments made towards BirdsiteLIVE's creator.\nI simply don't feel comfortable with this.\n\nAdded to this, the instance has become so saturated (over 1000%) that posts\nfrom the other place only turn up sporadically and normally in a flurry that\nclutters home timelines.\nThis really isn't nice to see when you're trying to interact with many other people on the fediverse, only to have a huge block on nonsense posts in the middle of it all.\nOffline\nSo, I've been considering doing this for some time, but as from today, December 21st 2022, my BirdsiteLIVE instance is offline. I may start a new one up at some point in the future but with a new database, no old follows will remain.\nI will continue to run my BirdsiteLIVE Instance List which appears to be fairly web search-able to help people out - my original BSL instance URL will now redirect to this site.\nWhat else can I do?\nWell, to put it bluntly, forget about the other place. Use of the Fediverse has skyrocketed since the other place's recent ownership changed. You'll find most of the people you want to see postsby are on the Fediverse already! Who needs content from the other place?\nIf you do need content from the other place, why not try using something like Nitter or one of it's many instances. You can even put /rss at the end of the URL to get that content as a lovely RSS feed to put into your favorite RSS reader (you are using RSS, right‽).\nSign off\nAnyway, if you managed to get this far, thank you. I don't blog normally, but I felt I needed to put some kind of statement up, even if it is poorly written and slightly opinionated. Thanks for reading anyway.\n","id":"https://paulwilde.uk/ponderings/turning-off-birdsitelive/","title":"Why I have turned off my BirdsiteLIVE instance"},"https://paulwilde.uk/ponderings/unphoneticabc/":{"body":"A website directory of all words that can be associated with their letters by not\nsounding as their corresponding letter should do.\n","id":"https://paulwilde.uk/ponderings/unphoneticabc/","title":"Unphonetic ABC"},"https://paulwilde.uk/ponderings/wildeit/":{"body":"A local IT business website detailing available services.\nOur business website.\n","id":"https://paulwilde.uk/ponderings/wildeit/","title":"Wilde IT"},"https://paulwilde.uk/ponderings/wm-tools/":{"body":"A selection of information output tools for dmenu\nThese are a selection of independant tools for displaying various information\nabout system status in dmenu. Some of them i.e. volume have options (up, down, mute...)\nwhich are selectable options in dmenu.\nTools\n\npingclock performs a single ping to a server and returns the response time\nbattery shows the current battery level\nbrightness shows the current backlight level and gives options to adjust it\nvolume shows the current volume level and gives options to adjust and manage it\ndate shows the date\nfuzzytime shows the fuzzytime clock\nwlan shows the state of the wireless network interface. SSID connected to and signal level.\nnic shows the status and/or the ip address of the network interface card\ntemperature shows the current CPU temperature\nnotes a simple one liner note taking tool, displaying notes in dmenu/rofi\n\nThe next two do not work with rofi unless you have alias dmenu=rofi set, but they're pretty nice tools\n\npassmenu_wrapper a wrapper for passmenu. It basically just styles passmenu with no other features\ncommand_wrapper inspired by passmenu_wrapper, a basic tool to run other dmenu related tools with uniform styling.\n\nFor example: dmenu_run, clipmenu, passmenu etc.\n\n\n\nExample in dmenu:\n\nExample of command_wrapper with clipmenu\n\nHow to compile\nThere are some configuration variables explicit to me, you'll need to change them for you for them to be useful I imagine.\nConfiguration variables are compile - there are no config files or runtime parameters (except for \"rofi\")\nEach tool is compiled separately, for example:\n\nand then run with\n\nHow to use\nPersonally, I have these bound to key combinations in i3.\nIn fact, I have a seperate bindsym mode in which all these\ntools are accessible i.e. $mod+i to get to \"info\" mode then p to show pingclock.\nIt's completely up to you how to run them, they're just simple CLI tools really.\nYou can also set the volume and brightness levels by typing a numeric figure into the dmenu/rofi input box\nDependencies\n\ndmenu or rofi\nyad for calendar\npassmenu for passmenu_wrapper\nbasically any tool that's used to gather the information.\n\"tools\" for audio etc. (pamixer, ncpamixer, etc.) can be set in the source\n\n","id":"https://paulwilde.uk/ponderings/wm-tools/","title":"wm_tools"}},"docInfo":{"https://paulwilde.uk/":{"body":17,"title":1},"https://paulwilde.uk/aboutme/":{"body":117,"title":0},"https://paulwilde.uk/ponderings/":{"body":13,"title":1},"https://paulwilde.uk/ponderings/basicdough/":{"body":180,"title":3},"https://paulwilde.uk/ponderings/batmon/":{"body":55,"title":1},"https://paulwilde.uk/ponderings/bedfordandco/":{"body":14,"title":2},"https://paulwilde.uk/ponderings/errors/":{"body":18,"title":2},"https://paulwilde.uk/ponderings/faces/":{"body":10,"title":2},"https://paulwilde.uk/ponderings/fortieth/":{"body":46,"title":1},"https://paulwilde.uk/ponderings/freshgpt/":{"body":15,"title":2},"https://paulwilde.uk/ponderings/geesewildecloud/":{"body":18,"title":2},"https://paulwilde.uk/ponderings/geminicss/":{"body":12,"title":1},"https://paulwilde.uk/ponderings/ltos/":{"body":12,"title":4},"https://paulwilde.uk/ponderings/mailautoconf/":{"body":336,"title":1},"https://paulwilde.uk/ponderings/nemini/":{"body":120,"title":1},"https://paulwilde.uk/ponderings/peanut-butter/":{"body":106,"title":3},"https://paulwilde.uk/ponderings/rossrates/":{"body":5,"title":2},"https://paulwilde.uk/ponderings/skeletor/":{"body":6,"title":3},"https://paulwilde.uk/ponderings/sql-haiku/":{"body":0,"title":2},"https://paulwilde.uk/ponderings/thisisnotmyemail/":{"body":75,"title":1},"https://paulwilde.uk/ponderings/toolsiuse/":{"body":79,"title":1},"https://paulwilde.uk/ponderings/tootinstall-concept/":{"body":574,"title":1},"https://paulwilde.uk/ponderings/turning-off-birdsitelive/":{"body":213,"title":3},"https://paulwilde.uk/ponderings/unphoneticabc/":{"body":8,"title":2},"https://paulwilde.uk/ponderings/wildeit/":{"body":8,"title":1},"https://paulwilde.uk/ponderings/wm-tools/":{"body":218,"title":1}},"length":26},"lang":"English"} \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml index c9dd42e..e9fdf8b 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -8,113 +8,189 @@ 2021-03-29T10:19:20+01:00 - https://paulwilde.uk/dev/ + https://paulwilde.uk/ponderings/ - https://paulwilde.uk/dev/mailautoconf/ - 2021-08-17T10:49:13+01:00 - - - https://paulwilde.uk/dev/nemini/ - 2023-02-20T12:57:13+00:00 - - - https://paulwilde.uk/dev/thisisnotmyemail/ - 2021-11-13T16:17:59Z - - - https://paulwilde.uk/dev/wm-tools/ - 2022-05-08T16:25:13+01:00 - - - https://paulwilde.uk/poems/ - - - https://paulwilde.uk/poems/fortieth/ - 2022-09-24T15:45:22Z - - - https://paulwilde.uk/poems/freshgpt/ - 2023-02-16T14:40:00 - - - https://paulwilde.uk/poems/sql-haiku/ - 2022-10-26T22:40:00 - - - https://paulwilde.uk/recipes/ - - - https://paulwilde.uk/recipes/basicdough/ + https://paulwilde.uk/ponderings/basicdough/ 2021-04-01T11:41:38+01:00 - https://paulwilde.uk/recipes/peanut-butter/ + https://paulwilde.uk/ponderings/batmon/ + 2024-07-29T21:16:00 + + + https://paulwilde.uk/ponderings/bedfordandco/ + 2021-04-01T10:54:15+01:00 + + + https://paulwilde.uk/ponderings/errors/ + 2024-02-02T00:00:00 + + + https://paulwilde.uk/ponderings/faces/ + 2021-03-31T17:22:16+01:00 + + + https://paulwilde.uk/ponderings/fortieth/ + 2022-09-24T15:45:22Z + + + https://paulwilde.uk/ponderings/freshgpt/ + 2023-02-16T14:40:00 + + + https://paulwilde.uk/ponderings/geesewildecloud/ + 2021-03-31T10:05:31+01:00 + + + https://paulwilde.uk/ponderings/geminicss/ + 2023-02-22T20:57:13+00:00 + + + https://paulwilde.uk/ponderings/ltos/ + 2021-03-31T22:20:31+01:00 + + + https://paulwilde.uk/ponderings/mailautoconf/ + 2021-08-17T10:49:13+01:00 + + + https://paulwilde.uk/ponderings/nemini/ + 2023-02-20T12:57:13+00:00 + + + https://paulwilde.uk/ponderings/page/1/ + + + https://paulwilde.uk/ponderings/page/2/ + + + https://paulwilde.uk/ponderings/page/3/ + + + https://paulwilde.uk/ponderings/peanut-butter/ 2021-11-13T14:15:22Z + + https://paulwilde.uk/ponderings/rossrates/ + 2021-04-06T21:12:57+01:00 + + + https://paulwilde.uk/ponderings/skeletor/ + 2021-08-03T16:53:20+01:00 + + + https://paulwilde.uk/ponderings/sql-haiku/ + 2022-10-26T22:40:00 + + + https://paulwilde.uk/ponderings/thisisnotmyemail/ + 2021-11-13T16:17:59Z + + + https://paulwilde.uk/ponderings/toolsiuse/ + 2021-08-17T11:04:14+01:00 + + + https://paulwilde.uk/ponderings/tootinstall-concept/ + 2024-07-29T14:18:00 + + + https://paulwilde.uk/ponderings/turning-off-birdsitelive/ + 2022-12-21T11:36:00+00:00 + + + https://paulwilde.uk/ponderings/unphoneticabc/ + 2021-04-01T11:05:46+01:00 + + + https://paulwilde.uk/ponderings/wildeit/ + 2021-04-01T10:47:49+01:00 + + + https://paulwilde.uk/ponderings/wm-tools/ + 2022-05-08T16:25:13+01:00 + https://paulwilde.uk/tags/ + + https://paulwilde.uk/tags/code/ + + + https://paulwilde.uk/tags/concept/ + + + https://paulwilde.uk/tags/development/ + + + https://paulwilde.uk/tags/dough/ + + + https://paulwilde.uk/tags/email/ + + + https://paulwilde.uk/tags/fediverse/ + https://paulwilde.uk/tags/food/ + + https://paulwilde.uk/tags/funny/ + + + https://paulwilde.uk/tags/gemini/ + + + https://paulwilde.uk/tags/humour/ + + + https://paulwilde.uk/tags/iuse/ + + + https://paulwilde.uk/tags/me/ + + + https://paulwilde.uk/tags/nim/ + + + https://paulwilde.uk/tags/parody/ + + + https://paulwilde.uk/tags/poems/ + + + https://paulwilde.uk/tags/protocols/ + + + https://paulwilde.uk/tags/recipes/ + + + https://paulwilde.uk/tags/rfc/ + https://paulwilde.uk/tags/spreads/ - https://paulwilde.uk/tech/ + https://paulwilde.uk/tags/sql/ - https://paulwilde.uk/tech/toolsiuse/ - 2021-08-17T11:04:14+01:00 + https://paulwilde.uk/tags/tech/ - https://paulwilde.uk/tech/turning-off-birdsitelive/ - 2022-12-21T11:36:00+00:00 + https://paulwilde.uk/tags/tools/ - https://paulwilde.uk/thanks/ + https://paulwilde.uk/tags/web/ + + + https://paulwilde.uk/tags/website/ + + + https://paulwilde.uk/tags/window-manager-tools/ https://paulwilde.uk/verify/keyoxide/ 2022-11-17T11:44:27 - - https://paulwilde.uk/websites/ - - - https://paulwilde.uk/websites/bedfordandco/ - 2021-04-01T10:54:15+01:00 - - - https://paulwilde.uk/websites/faces/ - 2021-03-31T17:22:16+01:00 - - - https://paulwilde.uk/websites/geesewildecloud/ - 2021-03-31T10:05:31+01:00 - - - https://paulwilde.uk/websites/ltos/ - 2021-03-31T22:20:31+01:00 - - - https://paulwilde.uk/websites/page/1/ - - - https://paulwilde.uk/websites/rossrates/ - 2021-04-06T21:12:57+01:00 - - - https://paulwilde.uk/websites/skeletor/ - 2021-08-03T16:53:20+01:00 - - - https://paulwilde.uk/websites/unphoneticabc/ - 2021-04-01T11:05:46+01:00 - - - https://paulwilde.uk/websites/wildeit/ - 2021-04-01T10:47:49+01:00 - diff --git a/style.css b/style.css new file mode 100644 index 0000000..d51f5f1 --- /dev/null +++ b/style.css @@ -0,0 +1 @@ +.button-container{display:table;margin-left:auto;margin-right:auto}button,.button,a.button{position:relative;display:flex;align-items:center;justify-content:center;padding:8px 18px;margin-bottom:5px;text-align:center;border-radius:8px;border:1px solid rgba(0,0,0,0);appearance:none;cursor:pointer;outline:none;}button.outline,.button.outline,a.button.outline{background:rgba(0,0,0,0);box-shadow:none;padding:8px 18px}button.outline :hover,.button.outline :hover,a.button.outline :hover{transform:none;box-shadow:none}button.primary,.button.primary,a.button.primary{box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08)}button.primary:hover,.button.primary:hover,a.button.primary:hover{box-shadow:0 2px 6px rgba(50,50,93,.21),0 1px 3px rgba(0,0,0,.08)}button.link,.button.link,a.button.link{background:none;font-size:1rem}button.small,.button.small,a.button.small{font-size:.8rem}button.wide,.button.wide,a.button.wide{min-width:200px;padding:14px 24px}a.read-more,a.read-more:hover,a.read-more:active{display:inline-flex;background:none;box-shadow:none;padding:0;margin:20px 0;max-width:100%}.code-toolbar{margin-bottom:20px}.code-toolbar .toolbar-item a{position:relative;display:inline-flex;align-items:center;justify-content:center;padding:3px 8px;margin-bottom:5px;text-align:center;font-size:13px;font-weight:500;border-radius:8px;border:1px solid rgba(0,0,0,0);appearance:none;cursor:pointer;outline:none}.header{display:flex;flex-direction:column;position:relative}.header__inner{display:flex;align-items:center;justify-content:space-between}.header__logo{display:flex;flex:1}.header__logo:after{content:"";background:repeating-linear-gradient(90deg, var(--accent), var(--accent) 2px, rgba(0,0,0,0) 0, rgba(0,0,0,0) 16px);display:block;width:100%;right:10px}.header__logo a{flex:0 0 auto;max-width:100%}.header .menu{margin:20px 0}.header .menu__inner{display:flex;flex-wrap:wrap;list-style:none;margin:0;padding:0}.header .menu__inner li.active{color:var(--accent-alpha-70)}.header .menu__inner li:not(:last-of-type){margin-right:20px;margin-bottom:10px;flex:0 0 auto}.header .menu__sub-inner{position:relative;list-style:none;padding:0;margin:0}.header .menu__sub-inner:not(:only-child){margin-left:20px}.header .menu__sub-inner-more{position:absolute;background:var(--background);box-shadow:var(--shadow);color:#fff;border:2px solid;margin:0;padding:10px;list-style:none;z-index:99;top:35px;left:0}.header .menu__sub-inner-more-trigger{color:var(--accent);user-select:none;cursor:pointer}.header .menu__sub-inner-more li{margin:0;padding:5px;white-space:nowrap}.logo{display:flex;align-items:center;text-decoration:none;background:var(--accent);color:#000;padding:5px 10px}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{margin:0;padding:0;font-family:Hack,DejaVu Sans Mono,Monaco,Consolas,Ubuntu Mono,monospace;font-size:1rem;line-height:1.54;background-color:var(--background);color:var(--color);text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-webkit-overflow-scrolling:touch;-webkit-text-size-adjust:100%}@media (max-width: 683px){body{font-size:1rem}}h1,h2,h3,h4,h5,h6{display:flex;align-items:center;font-weight:bold;line-height:1.3}h1{font-size:1.4rem}h2{font-size:1.3rem}h3{font-size:1.2rem}h4,h5,h6{font-size:1.15rem}a{color:inherit}img{display:block;max-width:100%}img.left{margin-right:auto}img.center{margin-left:auto;margin-right:auto}img.right{margin-left:auto}p{margin-bottom:20px}figure{display:table;max-width:100%;margin:25px 0}figure.left,figure img{margin-right:auto}figure.center,figure img{margin-left:auto;margin-right:auto}figure.right,figure img{margin-left:auto}figure figcaption{font-size:14px;padding:5px 10px;margin-top:5px;background:var(--accent);color:var(--background)}figure figcaption.left{text-align:left}figure figcaption.center{text-align:center}figure figcaption.right{text-align:right}code{font-family:Hack,DejaVu Sans Mono,Monaco,Consolas,Ubuntu Mono,monospace;font-feature-settings:normal;background:var(--accent-alpha-20);padding:1px 6px;margin:0 2px;font-size:.95rem}pre{font-family:Hack,DejaVu Sans Mono,Monaco,Consolas,Ubuntu Mono,monospace;padding:20px;font-size:.95rem;overflow:auto;border-top:1px solid rgba(255,255,255,.1);border-bottom:1px solid rgba(255,255,255,.1)}@media (max-width: 683px){pre{white-space:pre-wrap;word-wrap:break-word}}pre code{padding:0;margin:0;background:none}blockquote{border-top:1px solid var(--accent);border-bottom:1px solid var(--accent);margin:40px 0;padding:25px}@media (max-width: 683px){blockquote{padding-right:0}}blockquote:before{content:"”";font-family:Georgia,serif;font-size:3.875rem;position:absolute;left:-40px;top:-20px}blockquote p:first-of-type{margin-top:0}blockquote p:last-of-type{margin-bottom:0}blockquote p{position:relative}blockquote p:before{content:">";display:block;position:absolute;left:-25px;color:var(--accent)}table{table-layout:fixed;border-collapse:collapse;width:100%;margin:40px 0}table,th,td{border:1px dashed var(--accent);padding:10px}th{color:var(--accent)}ul,ol{margin-left:30px;padding:0}ul li,ol li{position:relative}@media (max-width: 683px){ul,ol{margin-left:20px}}ol ol{list-style-type:lower-alpha}.container{display:flex;flex-direction:column;padding:40px;max-width:864px;min-height:100vh;margin:0 auto}@media (max-width: 683px){.container{padding:20px}}.content{display:flex}hr{width:100%;border:none;background:var(--border-color);height:1px}.hidden{display:none}.posts{width:100%;margin:0 auto}.post{width:100%;text-align:left;margin:20px auto;padding:20px 0}@media (max-width: 899px){.post{max-width:660px}}.post:not(:last-of-type){border-bottom:1px solid var(--border-color)}.post .post-meta-inline,.post .post-meta{font-size:1rem;margin-bottom:10px;color:var(--accent-alpha-70)}.post-meta-inline{display:inline}.post-title{--border: 2px dashed var(--accent);position:relative;color:var(--accent);margin:0 0 15px;padding-bottom:15px;border-bottom:var(--border);font-weight:normal}.post-title a{text-decoration:none}.post .post-tags-inline,.post .post-tags{margin-bottom:20px;font-size:1rem;opacity:.5}.post-tags{display:block}.post-tags-inline{display:inline}@media (max-width: 683px){.post-tags-inline{display:block}}.post-content{margin-top:30px}.post-cover{border:20px solid var(--accent);background:rgba(0,0,0,0);margin:40px 0;padding:20px}@media (max-width: 683px){.post-cover{padding:10px;border-width:10px}}.post ul{list-style:none}.post ul li:before{content:"►";position:absolute;left:-20px;color:var(--accent)}.post--regulation h1{justify-content:center}.post--regulation h2{justify-content:center;margin-bottom:10px}.post--regulation h2+h2{margin-top:-10px;margin-bottom:20px}.post-list .post-date{color:var(--accent-alpha-70);text-decoration:none}.post-list a{text-decoration:none}.post-list .post-list-title{text-decoration:underline}.post-list .post-tag{text-decoration:underline}.pagination{margin-top:50px}.pagination__title{display:flex;text-align:center;position:relative;margin:100px 0 20px}.pagination__title-h{text-align:center;margin:0 auto;padding:5px 10px;background:var(--background);font-size:.8rem;text-transform:uppercase;letter-spacing:.1em;z-index:1}.pagination__title hr{position:absolute;left:0;right:0;width:100%;margin-top:15px;z-index:0}.pagination__buttons{display:flex;align-items:center;justify-content:center}@media (max-width: 683px){.pagination__buttons{flex-direction:column}}.button{position:relative;display:inline-flex;align-items:center;justify-content:center;font-size:1rem;border-radius:8px;max-width:40%;padding:0;cursor:pointer;appearance:none}@media (max-width: 683px){.button{max-width:80%}}.button+.button{margin-left:10px}.button a{display:flex;padding:8px 16px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.button__text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.footer{padding:40px 0;flex-grow:0;opacity:.5}.footer__inner{display:flex;align-items:center;justify-content:space-between;margin:0;width:760px;max-width:100%}@media (max-width: 899px){.footer__inner{flex-direction:column}}.footer a{color:inherit}.footer .copyright{display:flex;flex-direction:row;align-items:center;font-size:1rem;color:var(--light-color-secondary)}.footer .copyright--user{margin:auto;text-align:center}.footer .copyright>*:first-child:not(:only-child){margin-right:10px}@media (max-width: 899px){.footer .copyright>*:first-child:not(:only-child){border:none;padding:0;margin:0}}@media (max-width: 899px){.footer .copyright{flex-direction:column;margin-top:10px}}@media (max-width: 899px){.footer .copyright-theme-sep{display:none}}@media (max-width: 899px){.footer .copyright-theme{font-size:.75rem}} \ No newline at end of file diff --git a/tags/code/index.html b/tags/code/index.html new file mode 100644 index 0000000..c50dccc --- /dev/null +++ b/tags/code/index.html @@ -0,0 +1,154 @@ + + + + + +Tag: code | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #code + (2 posts) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/concept/index.html b/tags/concept/index.html new file mode 100644 index 0000000..bb4c3ed --- /dev/null +++ b/tags/concept/index.html @@ -0,0 +1,144 @@ + + + + + +Tag: concept | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #concept + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/development/index.html b/tags/development/index.html new file mode 100644 index 0000000..4928dbb --- /dev/null +++ b/tags/development/index.html @@ -0,0 +1,200 @@ + + + + + +Tag: development | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #development + (6 posts) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/dough/index.html b/tags/dough/index.html new file mode 100644 index 0000000..11ae875 --- /dev/null +++ b/tags/dough/index.html @@ -0,0 +1,140 @@ + + + + + +Tag: dough | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #dough + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/email/index.html b/tags/email/index.html new file mode 100644 index 0000000..d657260 --- /dev/null +++ b/tags/email/index.html @@ -0,0 +1,151 @@ + + + + + +Tag: email | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #email + (2 posts) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/fediverse/index.html b/tags/fediverse/index.html new file mode 100644 index 0000000..f771fc2 --- /dev/null +++ b/tags/fediverse/index.html @@ -0,0 +1,140 @@ + + + + + +Tag: fediverse | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #fediverse + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/food/atom.xml b/tags/food/atom.xml deleted file mode 100644 index 5fbe4fe..0000000 --- a/tags/food/atom.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - Paul Wilde - food - My site of stuff - - - Zola - 2021-11-13T14:15:22+00:00 - https://paulwilde.uk/tags/food/atom.xml - - Peanut Butter Recipe - 2021-11-13T14:15:22+00:00 - 2021-11-13T14:15:22+00:00 - - https://paulwilde.uk/recipes/peanut-butter/ - <p>This is the easiest thing in the world.</p> -<ol> -<li>Dry-fry (no oil etc.) the peanuts in the large frying pan for about 10 mins or for as long as it takes for the peanuts to become golden brown. -<ul> -<li>This will encourage the oils in the peanuts to release - which is exactly what we want!</li> -</ul> -</li> -<li>Put the now-roasted peanuts into the blender and blend. -<ul> -<li>Blend, blend, blend and blend some more. </li> -<li>There will be a point when you think nothing’s happening and the small bits of peanut are just moving around the blender, or just stuck in place. Give the stuck pieces a nudge with a spatula and get back to blending. </li> -<li>Blend, blend, blend even more until, eventually, the mixture starts to bind together and turn into a thick solid mass. </li> -<li>Keep blending and the mixture will loosen up become a lovely, smooth, peanut butter.</li> -</ul> -</li> -<li>Spoon out into a suitable container and allow to cool (or just eat it there and then, I won’t judge you).</li> -</ol> -<p>Top Tips =</p> -<ul> -<li>If you prefer a chunky peanut butter, save some of the roasted peanuts back and only put them into the blended mixture at the end with a bit of a stir - lovely!</li> -</ul> - - - diff --git a/tags/food/index.html b/tags/food/index.html index 8b13789..d60dcc3 100644 --- a/tags/food/index.html +++ b/tags/food/index.html @@ -1 +1,141 @@ + + + + +Tag: food | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #food + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/funny/index.html b/tags/funny/index.html new file mode 100644 index 0000000..80463b6 --- /dev/null +++ b/tags/funny/index.html @@ -0,0 +1,154 @@ + + + + + +Tag: funny | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #funny + (2 posts) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/gemini/index.html b/tags/gemini/index.html new file mode 100644 index 0000000..1fdddf8 --- /dev/null +++ b/tags/gemini/index.html @@ -0,0 +1,153 @@ + + + + + +Tag: gemini | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #gemini + (2 posts) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/humour/index.html b/tags/humour/index.html new file mode 100644 index 0000000..4927d1a --- /dev/null +++ b/tags/humour/index.html @@ -0,0 +1,144 @@ + + + + + +Tag: humour | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #humour + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/index.html b/tags/index.html index 8b13789..f927305 100644 --- a/tags/index.html +++ b/tags/index.html @@ -1 +1,271 @@ + + + + Tags | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags/iuse/index.html b/tags/iuse/index.html new file mode 100644 index 0000000..a79346d --- /dev/null +++ b/tags/iuse/index.html @@ -0,0 +1,141 @@ + + + + + +Tag: iuse | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #iuse + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/me/index.html b/tags/me/index.html new file mode 100644 index 0000000..1cda7a3 --- /dev/null +++ b/tags/me/index.html @@ -0,0 +1,151 @@ + + + + + +Tag: me | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #me + (2 posts) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/nim/index.html b/tags/nim/index.html new file mode 100644 index 0000000..1d1423e --- /dev/null +++ b/tags/nim/index.html @@ -0,0 +1,166 @@ + + + + + +Tag: nim | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #nim + (3 posts) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/parody/index.html b/tags/parody/index.html new file mode 100644 index 0000000..16c8894 --- /dev/null +++ b/tags/parody/index.html @@ -0,0 +1,144 @@ + + + + + +Tag: parody | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #parody + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/poems/index.html b/tags/poems/index.html new file mode 100644 index 0000000..2476e1b --- /dev/null +++ b/tags/poems/index.html @@ -0,0 +1,164 @@ + + + + + +Tag: poems | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #poems + (3 posts) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/protocols/index.html b/tags/protocols/index.html new file mode 100644 index 0000000..ca78e94 --- /dev/null +++ b/tags/protocols/index.html @@ -0,0 +1,144 @@ + + + + + +Tag: protocols | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #protocols + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/recipes/index.html b/tags/recipes/index.html new file mode 100644 index 0000000..896bf8c --- /dev/null +++ b/tags/recipes/index.html @@ -0,0 +1,152 @@ + + + + + +Tag: recipes | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #recipes + (2 posts) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/rfc/index.html b/tags/rfc/index.html new file mode 100644 index 0000000..ff6dc48 --- /dev/null +++ b/tags/rfc/index.html @@ -0,0 +1,144 @@ + + + + + +Tag: rfc | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #rfc + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/spreads/atom.xml b/tags/spreads/atom.xml deleted file mode 100644 index e3a7ba9..0000000 --- a/tags/spreads/atom.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - Paul Wilde - spreads - My site of stuff - - - Zola - 2021-11-13T14:15:22+00:00 - https://paulwilde.uk/tags/spreads/atom.xml - - Peanut Butter Recipe - 2021-11-13T14:15:22+00:00 - 2021-11-13T14:15:22+00:00 - - https://paulwilde.uk/recipes/peanut-butter/ - <p>This is the easiest thing in the world.</p> -<ol> -<li>Dry-fry (no oil etc.) the peanuts in the large frying pan for about 10 mins or for as long as it takes for the peanuts to become golden brown. -<ul> -<li>This will encourage the oils in the peanuts to release - which is exactly what we want!</li> -</ul> -</li> -<li>Put the now-roasted peanuts into the blender and blend. -<ul> -<li>Blend, blend, blend and blend some more. </li> -<li>There will be a point when you think nothing’s happening and the small bits of peanut are just moving around the blender, or just stuck in place. Give the stuck pieces a nudge with a spatula and get back to blending. </li> -<li>Blend, blend, blend even more until, eventually, the mixture starts to bind together and turn into a thick solid mass. </li> -<li>Keep blending and the mixture will loosen up become a lovely, smooth, peanut butter.</li> -</ul> -</li> -<li>Spoon out into a suitable container and allow to cool (or just eat it there and then, I won’t judge you).</li> -</ol> -<p>Top Tips =</p> -<ul> -<li>If you prefer a chunky peanut butter, save some of the roasted peanuts back and only put them into the blended mixture at the end with a bit of a stir - lovely!</li> -</ul> - - - diff --git a/tags/spreads/index.html b/tags/spreads/index.html index 8b13789..4a1bfb9 100644 --- a/tags/spreads/index.html +++ b/tags/spreads/index.html @@ -1 +1,141 @@ + + + + +Tag: spreads | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #spreads + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/sql/index.html b/tags/sql/index.html new file mode 100644 index 0000000..0d0269e --- /dev/null +++ b/tags/sql/index.html @@ -0,0 +1,142 @@ + + + + + +Tag: sql | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #sql + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/tech/index.html b/tags/tech/index.html new file mode 100644 index 0000000..97311e6 --- /dev/null +++ b/tags/tech/index.html @@ -0,0 +1,167 @@ + + + + + +Tag: tech | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #tech + (3 posts) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/tools/index.html b/tags/tools/index.html new file mode 100644 index 0000000..e3c1bc7 --- /dev/null +++ b/tags/tools/index.html @@ -0,0 +1,154 @@ + + + + + +Tag: tools | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #tools + (2 posts) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/web/index.html b/tags/web/index.html new file mode 100644 index 0000000..c0cd1c8 --- /dev/null +++ b/tags/web/index.html @@ -0,0 +1,141 @@ + + + + + +Tag: web | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #web + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tags/website/index.html b/tags/website/index.html new file mode 100644 index 0000000..27d9102 --- /dev/null +++ b/tags/website/index.html @@ -0,0 +1,219 @@ + + + + + +Tag: website | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags/window-manager-tools/index.html b/tags/window-manager-tools/index.html new file mode 100644 index 0000000..fd3d38d --- /dev/null +++ b/tags/window-manager-tools/index.html @@ -0,0 +1,142 @@ + + + + + +Tag: window manager tools | Paul's Site of Stuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    +

    + tag: #window manager tools + (1 post) +

    + + + Show all tags + + + + + +
    + + + + + +
    + + + diff --git a/tech/index.html b/tech/index.html deleted file mode 100644 index e262e3b..0000000 --- a/tech/index.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - Tech Stuff :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - / Tech Stuff -

    - - - -

    My general tech utterings of stuff and things.

    - -
    - -
    - - -
    -
    - - Last Modified : - - - - - Wed, 21 December 2022 at 11:36am +0000 - - - - -
    - - - - -
    -
    - - - - - diff --git a/tech/toolsiuse/index.html b/tech/toolsiuse/index.html deleted file mode 100644 index ebf85eb..0000000 --- a/tech/toolsiuse/index.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - - - - - - - - - Tools I Use :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Tech Stuff - - / Tools I Use -

    - - - -

    In the interest of sharing interesting information, I thought I’d create this page to list some of my favourite software packages and tools.
    -This list is by no means complete as, if you’re like me you’ll understand, I use hundreds of software packages.

    -

    For PC/Laptop :

    - -


    -For Servers :

    - -

    If I have missed anyone out, I apologise!

    - - - -
    -
    - - Published : Tue, 17 August 2021 at 11:04am +0100
    - - Last Modified : Sun, 08 May 2022 at 16:11pm +0100
    - - -
    - - - - -
    -
    - - - - - diff --git a/tech/turning-off-birdsitelive/index.html b/tech/turning-off-birdsitelive/index.html deleted file mode 100644 index 600862c..0000000 --- a/tech/turning-off-birdsitelive/index.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - - - - - - - - - - - Why I have turned off my BirdsiteLIVE instance :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Tech Stuff - - / Why I have turned off my BirdsiteLIVE instance -

    - - - -

    Hello. How are you? I am fine.
    -
    -You may know me from a few places, but likely on the Fediverse as the person that -maintains a BirdsiteLIVE instance with the url birdsite.wilde.cloud.

    -

    Why?

    -

    Due to the recent influx of people from the corporately owned microblogging platform, -the use of many BirdsiteLIVE instances has become massive. -Added to this, I have received many requests from users to block access to block -their posts from the other place via BirdsiteLIVE - which I have happily done -for them, but some people are do not ask nicely and instead resort to claims -of attacks on their privacy (I know, right‽ it’s a clear misunderstanding of -how the internet works…). I’ve also been witness to some pretty brutal comments made towards BirdsiteLIVE’s creator.
    -I simply don’t feel comfortable with this.
    -
    -Added to this, the instance has become so saturated (over 1000%) that posts -from the other place only turn up sporadically and normally in a flurry that -clutters home timelines.
    -This really isn’t nice to see when you’re trying to interact with many other people on the fediverse, only to have a huge block on nonsense posts in the middle of it all.

    -

    Offline

    -

    So, I’ve been considering doing this for some time, but as from today, December 21st 2022, my BirdsiteLIVE instance is offline. I may start a new one up at some point in the future but with a new database, no old follows will remain.
    -I will continue to run my BirdsiteLIVE Instance List which appears to be fairly web search-able to help people out - my original BSL instance URL will now redirect to this site.

    -

    What else can I do?

    -

    Well, to put it bluntly, forget about the other place. Use of the Fediverse has skyrocketed since the other place’s recent ownership changed. You’ll find most of the people you want to see postsby are on the Fediverse already! Who needs content from the other place?

    -

    If you do need content from the other place, why not try using something like Nitter or one of it’s many instances. You can even put /rss at the end of the URL to get that content as a lovely RSS feed to put into your favorite RSS reader (you are using RSS, right‽).

    -

    Sign off

    -

    Anyway, if you managed to get this far, thank you. I don’t blog normally, but I felt I needed to put some kind of statement up, even if it is poorly written and slightly opinionated. Thanks for reading anyway.

    - - - -
    -
    - - Published : Wed, 21 December 2022 at 11:36am +0000
    - - Last Modified : Wed, 21 December 2022 at 11:36am +0000
    - - -
    - - - - -
    -
    - - - - - diff --git a/thanks/index.html b/thanks/index.html deleted file mode 100644 index b0e83f5..0000000 --- a/thanks/index.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - - - - - - - - - Thanks :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - / Thanks -

    - - - -

    I’d like to give credit and say thanks to all of the below who, with their -support, tools and services, make this website possible =

    -
      -
    • Hugo - Static Site Generator - used in making this website.
    • -
    • The Atom text editor - for Text Editing goodness.
    • -
    • Kev Quirk - for Simple.CSS - -used for styling this website.
    • -
    • The Fosstodon and Fediverse communities - for software recommendations and -general pleasant conversations and natterings.
    • -
    • OVH - for the VPS this website runs on.
    • -
    • Rocky Linux - for the OS used on the VPS.
    • -
    • NGINX - for the web server software that publishes this website.
    • -
    • Let’s Encrypt - for the SSL certificate that secures this website.
    • -
    • Plausible Analytics - for providing privacy-friendly analytics for this website.
    • -
    • You - for visiting this website.
    • -
    • Arch Linux - for the OS used on my laptop.
    • -
    • PC Specialist - for providing my laptop.
    • -
    • Manjaro - for the OS used on my PC.
    • -
    • Various other companies - for providing various components for my PC.
    • -
    -
      -
    • Becky Wilde - for putting up with me and my pointless whims and tinkerings.
    • -
    - -
    -
      - -
    -
    - - -
    -
    - - Last Modified : - - - -
    - - - - -
    -
    - - - - - diff --git a/variables.css b/variables.css new file mode 100644 index 0000000..e69de29 diff --git a/verify/keyoxide/index.html b/verify/keyoxide/index.html index c7326eb..c97258d 100644 --- a/verify/keyoxide/index.html +++ b/verify/keyoxide/index.html @@ -1,188 +1,145 @@ - - - - - - - - - - - - - - - Keyoxide Verification :: My site of stuff :: Paul Wilde - + - -
    -
    - - -
    -
    - -
    -
    + + Keyoxide Verification | Paul's Site of Stuff -

    - ~ - + + + + + + + + - - - / Keyoxide Verification -

    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + +
    + + +
    + +

    Keyoxide Verification

    + + + + + + + + + + + + + + + +

    [Verifying my keyoxide cryptographic key: 85633E30514CC1932E4268460ED12CF710BC42CA]

    +
    -
    -
    - - Published : Thu, 17 November 2022 at 11:44am +0000
    - - -
    - - - - -
    -
    - - - + + + + + + + diff --git a/websites/bedfordandco/index.html b/websites/bedfordandco/index.html deleted file mode 100644 index 7f53430..0000000 --- a/websites/bedfordandco/index.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - Bedford & Co :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Websites - - / Bedford & Co -

    - - - -

    Simple single page website for a local accountancy business. -Has additional Vue.js implement[extra]ion for news and exchange rates updates.

    - - - -
    -
    - - Published : Thu, 01 April 2021 at 10:54am +0100
    - - -
    - - - - -
    -
    - - - - - diff --git a/websites/faces/index.html b/websites/faces/index.html deleted file mode 100644 index 69de41a..0000000 --- a/websites/faces/index.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - Noisy Faces :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Websites - - / Noisy Faces -

    - - - -

    Just a very silly website with an anim[extra]ed face making sounds.
    -Yeah, just th[extra] really.

    - - - -
    -
    - - Published : Wed, 31 March 2021 at 17:22pm +0100
    - - -
    - - - - -
    -
    - - - - - diff --git a/websites/geesewildecloud/index.html b/websites/geesewildecloud/index.html deleted file mode 100644 index a4b0f8d..0000000 --- a/websites/geesewildecloud/index.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - The Geese Webpage :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Websites - - / The Geese Webpage -

    - - - -

    Starting life as a (sort of inappropriate) parody of a certain popular dating website -the geese website was made as a bit of fun and to please minor obsession with geese.

    - - - -
    -
    - - Published : Wed, 31 March 2021 at 10:05am +0100
    - - -
    - - - - -
    -
    - - - - - diff --git a/websites/index.html b/websites/index.html deleted file mode 100644 index 87fee34..0000000 --- a/websites/index.html +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - - - - - - - - - - Websites :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - / Websites -

    - - - -

    A few examples of some websites I have worked on. Some are just for fun, some are for business.

    - -
    - -
    - -
    -

    St Skeletor's Day

    -

    St Skeletor’s Day
    -February 15th
    -Every Year

    - - Click here to visit. -
    -
    - -
    - -
    -

    Ross Rates

    -

    Rate Stuff with Ross, quite simple.

    - - Click here to visit. -
    -
    - -
    - -
    -

    Unphonetic ABC

    -

    A website directory of all words that can be associated with their letters by not -sounding as their corresponding letter should do.

    - - Click here to visit. -
    -
    - -
    - -
    -

    Bedford & Co

    -

    Simple single page website for a local accountancy business. -Has additional Vue.js implement[extra]ion for news and exchange rates updates.

    - - Click here to visit. -
    -
    - -
    - -
    -

    Wilde IT

    -

    A local IT business website detailing available services. -Our business website.

    - - Click here to visit. -
    -
    - -
    - -
    -

    The Lost Tin Opener Society

    -

    A spoof single page animation website of a secret society dedicated to finding all -lost tin openers.

    - - Click here to visit. -
    -
    - -
    - -
    -

    Noisy Faces

    -

    Just a very silly website with an anim[extra]ed face making sounds.
    -Yeah, just th[extra] really.

    - - Click here to visit. -
    -
    - -
    - -
    -

    The Geese Webpage

    -

    Starting life as a (sort of inappropriate) parody of a certain popular dating website -the geese website was made as a bit of fun and to please minor obsession with geese.

    - - Click here to visit. -
    -
    - -
    - - - -
    -
    - - Last Modified : - - - - - - - Tue, 03 August 2021 at 16:53pm +0100 - - - - -
    - - - - -
    -
    - - - - - diff --git a/websites/ltos/index.html b/websites/ltos/index.html deleted file mode 100644 index 68b2004..0000000 --- a/websites/ltos/index.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - The Lost Tin Opener Society :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Websites - - / The Lost Tin Opener Society -

    - - - -

    A spoof single page animation website of a secret society dedicated to finding all -lost tin openers.

    - - - -
    -
    - - Published : Wed, 31 March 2021 at 22:20pm +0100
    - - -
    - - - - -
    -
    - - - - - diff --git a/websites/page/1/index.html b/websites/page/1/index.html deleted file mode 100644 index a73a6ba..0000000 --- a/websites/page/1/index.html +++ /dev/null @@ -1,6 +0,0 @@ - - - - -Redirect -

    Click here to be redirected.

    diff --git a/websites/rossrates/index.html b/websites/rossrates/index.html deleted file mode 100644 index 7460d99..0000000 --- a/websites/rossrates/index.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - - - - - - - - - Ross Rates :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Websites - - / Ross Rates -

    - - - -

    Rate Stuff with Ross, quite simple.

    - - - -
    -
    - - Published : Tue, 06 April 2021 at 21:12pm +0100
    - - -
    - - - - -
    -
    - - - - - diff --git a/websites/skeletor/index.html b/websites/skeletor/index.html deleted file mode 100644 index 19e6440..0000000 --- a/websites/skeletor/index.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - - - - - - - - - St Skeletor's Day :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Websites - - / St Skeletor's Day -

    - - - -

    St Skeletor’s Day
    -February 15th
    -Every Year

    - - - -
    -
    - - Published : Tue, 03 August 2021 at 16:53pm +0100
    - - -
    - - - - -
    -
    - - - - - diff --git a/websites/unphoneticabc/index.html b/websites/unphoneticabc/index.html deleted file mode 100644 index 4dfa40f..0000000 --- a/websites/unphoneticabc/index.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - Unphonetic ABC :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Websites - - / Unphonetic ABC -

    - - - -

    A website directory of all words that can be associated with their letters by not -sounding as their corresponding letter should do.

    - - - -
    -
    - - Published : Thu, 01 April 2021 at 11:05am +0100
    - - -
    - - - - -
    -
    - - - - - diff --git a/websites/wildeit/index.html b/websites/wildeit/index.html deleted file mode 100644 index de4f7a5..0000000 --- a/websites/wildeit/index.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - Wilde IT :: My site of stuff :: Paul Wilde - - - -
    -
    - - -
    -
    - -
    -
    - -

    - ~ - - - - - - - - - / Websites - - / Wilde IT -

    - - - -

    A local IT business website detailing available services. -Our business website.

    - - - -
    -
    - - Published : Thu, 01 April 2021 at 10:47am +0100
    - - -
    - - - - -
    -
    - - - - -