<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Axxuy's Internet Notebook</title>
<id>https://axxuy.com/</id>
<link href="https://axxuy.com/blog/" rel="alternate"/>
<generator>Hugo</generator>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<rights>axxuy@axxuy.com</rights>
<updated>2026-06-25T00:00:00Z</updated>
<link href="https://axxuy.com/blog/feed.xml" rel="self" type="application/rss+xml"/>
<entry>
<title>Writing Too Slowly</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/writing-too-slowly/"/>
<published>2026-06-25T00:00:00Z</published>
<updated>2026-06-25T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/writing-too-slowly/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;My last post is not long, but it did end up taking quite a bit longer than I wouldhave liked. Sometimes you just do not have as much time for a project as you expect. In this case it was also hindered by being tied to a programming project, which invited tweaking and contemplation of features, etc.&lt;/p&gt;
&lt;p&gt;I became hesitant to post it. It took too long to finish.&lt;/p&gt;
&lt;p&gt;What I find happens, is that the longer I spend with a piece of writing, the less confident I become in it. As I tweak, edit, revise, the writing seems (&lt;em&gt;seems&lt;/em&gt;, not &lt;em&gt;does&lt;/em&gt;) to become less clear, not more. Editing always has the feeling of pushing food around on my plate with my fork, at best stirring everything up without really changing the substance, at worst making a mess of it. I come to doubt whether I&amp;rsquo;ve made any point at all.&lt;/p&gt;
&lt;p&gt;And so with these blog posts I have a tendency to rush and try to get them out as quickly as possible. One writing session is best. I can tell you, it is very possible to write something without reading it all by oneself—no AI required. I suppose it would be interesting for me to actually reread some of my own posts. I treat my blog like a stack of papers, each new post goes on the top and older ones sink deeper and deeper.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=writing-too-slowly"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>Adding Stats to a Static Blog</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/adding-stats-to-a-static-blog/"/>
<published>2026-06-24T00:00:00Z</published>
<updated>2026-06-24T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/adding-stats-to-a-static-blog/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;A little while ago I was wondering just how many words I&amp;rsquo;ve written on my blog. I was inspired by Wouter over at &lt;a class="h-cite" href="https://brainbaking.com/post/2024/07/good-blogging-habits-yield-a-book-each-year/"&gt;Brain Baking&lt;/a&gt;
.&lt;/p&gt;
&lt;p&gt;Now, I use a static site generator for my blog, the upshot of which is that the whole thing is just a big folder full of files. So counting up all the words is really easy with a simple shell command:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;wc --total=only -w content/blog/*/*.md
55198
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;That&amp;rsquo;s 55,198 total words as of the time of this writing. Well that&amp;rsquo;s neat. With &lt;a class="h-cite" href="https://gregable.com/2010/09/why-you-should-know-just-little-awk.html"&gt;a little bit of &lt;code&gt;awk&lt;/code&gt;&lt;/a&gt;
 you can get the average too:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;wc --total=never -w content/blog/*/*.md \
| awk &amp;#39;{total+=$1} END{print total, total/NR}&amp;#39;
55270 321.337
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;(The change in total word count is because I am running these commands as I write this post.)&lt;/p&gt;
&lt;p&gt;And finally I have a breakdown of the number of posts by year.&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;rg &amp;#34;^date: \d{4}-\d{2}-\d{2}&amp;#34; -t markdown -o content/blog \
| cut -d&amp;#39; &amp;#39; -f2 \
| date -f - +&amp;#34;%Y&amp;#34; \
| sort | uniq -c \
| awk &amp;#39;BEGIN{print &amp;#34;|Year|Number of posts|\n|----|----|&amp;#34;; OFS=&amp;#34;|&amp;#34;}
    {printf &amp;#34;|%-4s|%-4s|\n&amp;#34;, $2, $1}&amp;#39;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;That one is a little more complicated&amp;hellip; But in brief it searches my files for the date each post was published and tallies up the number of files in each year. With a bunch of wrangling to get everything in the right format. There is an impulse to downplay that part, but really a large amount of programming consists of wrangling data into the right format.&lt;/p&gt;
&lt;p&gt;That gets us some information that is hopefully interesting to someone besides me.&lt;/p&gt;
&lt;p&gt;I copied this set of stats from &lt;a class="h-cite" href="https://joelchrono.xyz/stats"&gt;Joel&lt;/a&gt;
. The nice thing about them is that they are very easy to do. I have ideas for more complex data to show about my blog, but that is beyond my skills with shell scripting, so this will have to do for now. There are a number of &lt;code&gt;bash&lt;/code&gt; wizards on my Mastodon timeline, but I am just not one of them. But the beauty of it is that you do not need to know all that much to do some cool things.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=adding-stats-to-a-static-blog"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>I Bought a New Notebook</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/i-bought-a-new-notebook/"/>
<published>2026-06-16T00:00:00Z</published>
<updated>2026-06-16T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/i-bought-a-new-notebook/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;I bought a notebook. Yes, another one. No, I did not &lt;em&gt;need&lt;/em&gt; another notebook. But, you know&amp;hellip;&lt;/p&gt;
&lt;p&gt;It all started when I heard about a new stationery shop that opened in my city. Of course I had to go visit one weekend. They had a great selection of fancy notebooks. (Despite my avidly accumulating notebooks, I am picky about which ones. It is important that they have paper suitable for fountain pens, my preferred writing instruments.) It was a nice, friendly, cozy place. I only wanted to support them. So I bought a notebook.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s a brand I&amp;rsquo;ve never seen before: a Nakabayashi Logical T-line.
&lt;img src="https://axxuy.com/images/26/t-line_notebook.webp" alt="A grey notebook on a tabletop. It is a Nakabayashi Logical T-Line in A4 size" title="A grey notebook on a tabletop. It is a Nakabayashi Logical T-Line in A4 size"&gt;&lt;/p&gt;
&lt;p&gt;What am I going to do with it? Well, let me tell you. You don&amp;rsquo;t end up a notebook hoarder like I am by worrying about questions like that. But as it happens, I do have a clear purpose for it. I am going to use it for writing blog posts. It is really surprising that I don&amp;rsquo;t draft more posts by hand.&lt;/p&gt;
&lt;p&gt;This post was first written in the aforesaid notebook. I took it to a cafe and wrote these words with coffee and a donut. The sun is streaming in through the windows. It is a lovely day at the start of summer. The air is gently warm. I can raise my head and look outside at all the people going by, on foot and in car. I&amp;rsquo;d include a picture if I weren&amp;rsquo;t so shy about that sort of thing&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;
&lt;p&gt;I could bring my laptop (in fact, I did, and used it to work a little on another project) but what fun would that be? I admit it, I&amp;rsquo;m a sucker for aesthetics.&lt;/p&gt;
&lt;p&gt;When I took the notebook out and searched my thoughts for what to write about, I initially thought about declaring some opinion or hot take. Or possibly sharing some new fact I learned from a headline, or perhaps skimming a Wikipedia article. It would probably be better for SEO if I did those sorts of things. But that isn&amp;rsquo;t really what I want this website to be and it never has. I don&amp;rsquo;t exclude those kinds of posts from consideration, I just don&amp;rsquo;t want to do too many. It also puts a bad taste in my mouth (or maybe this coffee has just been sitting in the pot for too long) to sit down and deliberately try to find an Opinion. I prefer spontaneity for this blog. This blog is whatever I happen to have on my mind at a given time.&lt;/p&gt;
&lt;p&gt;What&amp;rsquo;s on my mind right now is the paper in front of me. So that&amp;rsquo;s what this is about.&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;I know I&amp;rsquo;ve had an idea for a blog post elaborating on this. I was going to link to it but it seems I never got around to writing it.&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=i-bought-a-new-notebook"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>I Want to Talk to People, Not Chatbots</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/i-want-to-talk-to-people-not-chatbots/"/>
<published>2026-06-09T00:00:00Z</published>
<updated>2026-06-09T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/i-want-to-talk-to-people-not-chatbots/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;I don&amp;rsquo;t really want to make another post about LLMs. I would love for blogging about LLMs to become as gauche as blogging about blogging. But this is the idea I have right now.&lt;/p&gt;
&lt;p&gt;I don&amp;rsquo;t want to talk to chatbots. There is one simple reason:&lt;/p&gt;
&lt;p&gt;I am not chatty. I am not talkative. I find it difficult to think of things to say. It takes me quite a bit of time and effort to think of things to say. It&amp;rsquo;s hard!&lt;/p&gt;
&lt;p&gt;And so, if I am going to spend all that time and effort, I want to spend it on &lt;em&gt;actual people&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;I want my computer to be a tool; I want to wield it; I want to operate it; I want to use it. That way my energy can go into the task that the computer is for, not thinking of things to say.&lt;/p&gt;
&lt;p&gt;There are other reasons too, but this is &lt;em&gt;my&lt;/em&gt; reason.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=i-want-to-talk-to-people-not-chatbots"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>I Love Walking</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/i-love-walking/"/>
<published>2026-05-30T00:00:00Z</published>
<updated>2026-05-30T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/i-love-walking/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;I love to go for long &lt;a class="h-cite" href="https://en.wikipedia.org/wiki/Walking"&gt;walks&lt;/a&gt;
. That is my first choice for getting places.&lt;/p&gt;
&lt;p&gt;I love being able to walk places. It is a privilege. It is a privilege to have a body that can do it without pain. It is a privilege to have places close enough to walk to. It is a privilege to have a climate and landscape amenable to it. None of these are guarantees.&lt;/p&gt;
&lt;p&gt;Sometimes they are short walks. There is a bakery a few blocks from where I live. Every now and then, when I have a bit of time in the morning, I indulge in a sweet treat from there.&lt;/p&gt;
&lt;p&gt;About half an hour away on my legs, there is a little park with a stunning view of the local landscape. That is always a good stroll.&lt;/p&gt;
&lt;p&gt;There is nothing like the feeling of moving through the world by yourself, with nothing more than your own body (and the help of the teams of people who designed, manufactured, and shipped my shoe; or the people who designed, built, and maintain the roads, paths, trails, etc that I walk on). There are other cafes and parks that I walk to.&lt;/p&gt;
&lt;p&gt;It feels freeing to go where I want, when I want, regardless of where everybody else is going. I can even go, simply is whatever direction pleases me, without worrying about exactly where. Or I can go to a place without knowing the route, content that I know I am heading the right direction. I can go at my own pace, at ground level.&lt;/p&gt;
&lt;p&gt;It is hard, in a car, to stop to admire the interesting things, the shape of a rock, a pretty flower, the color of the light against a building, the sound of trees rustling in the wind, the chirping and singing of birds. Cars are boxed in. Traffic is alternately halting and urgent. Walking gives you a chance to actually observe the patch of world around you.&lt;/p&gt;
&lt;p&gt;Walking is not only a way to get &lt;a class="h-cite" href="https://shellsharks.com/outside"&gt;outside&lt;/a&gt;
, it&amp;rsquo;s &lt;em&gt;free&lt;/em&gt;!&lt;/p&gt;
&lt;p&gt;Walking has all manner of health benefits, I am told. I admit that is not a major reason I walk. It is certainly good for thinking. I have come up with quite a few ideas while walking.&lt;/p&gt;
&lt;p&gt;I think I am going to go for a walk now. Feel free to join me.&lt;/p&gt;
&lt;h2 id="context"&gt;Context&lt;/h2&gt;
&lt;p&gt;This post was written as a response to this month&amp;rsquo;s &lt;a class="h-cite" href="https://indieweb.org/IndieWeb_Carnival"&gt;Indie Web Carnival&lt;/a&gt;
, with the theme &lt;a class="h-cite" href="https://hamatti.org/posts/indieweb-carnival-write-a-love-letter/"&gt;&amp;ldquo;Love letter&amp;rdquo;&lt;/a&gt;
&lt;/p&gt;
&lt;h2 id="ps"&gt;P.S.&lt;/h2&gt;
&lt;p&gt;Here are some of the other things I considered writing a love letter to for this post:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Love letters&lt;/li&gt;
&lt;li&gt;Mail&lt;/li&gt;
&lt;li&gt;Libraries&lt;/li&gt;
&lt;li&gt;Blogging&lt;/li&gt;
&lt;li&gt;Trees&lt;/li&gt;
&lt;li&gt;eBay&lt;/li&gt;
&lt;/ul&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=i-love-walking"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>Tab Cleaning: May 2026 Edition</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/tab-cleaning-may-edition/"/>
<published>2026-05-18T00:00:00Z</published>
<updated>2026-05-18T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/tab-cleaning-may-edition/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;First up is a pair: &lt;a class="h-cite" href="https://tracydurnell.com/2026/04/27/nostalgic-for-past-futures/"&gt;Nostalgic for past futures&lt;/a&gt;
 by Tracy Durnell and &lt;a class="h-cite" href="https://brainbaking.com/post/2026/04/nostalgia-always-includes-a-temporal-context/"&gt;Nostalgia Always Includes a Temporal Context&lt;/a&gt;
 by Brain Baking. Both posts, as the titles suggest, are about nostalgia.&lt;/p&gt;
&lt;p&gt;In &lt;a class="h-cite" href="https://taonaw.com/2026/05/14/its-pie-day-for-me.html"&gt;It&amp;rsquo;s Pie day for me&lt;/a&gt;
 JTR shares a picture of some delicious looking pizza. I&amp;rsquo;m a very big fan of pizza.&lt;/p&gt;
&lt;p&gt;Two more from Tracy Durnell: &lt;a class="h-cite" href="https://tracydurnell.com/2026/05/14/bookshelves-as-mental-constructs/"&gt;Bookshelves as mental constructs&lt;/a&gt;
 with some philosophizing on bookshelves. And a recipe for &lt;a class="h-cite" href="https://tracydurnell.com/recipes/chickpeas-and-pasta-with-rosemary-oil/"&gt;Chickpeas and pasta with rosemary oil&lt;/a&gt;
—sounds yummy!&lt;/p&gt;
&lt;p&gt;Aaron Hertzmann wrote an essay about dogs and the way dogs think: &lt;a class="h-cite" href="https://aaronhertzmann.com/2026/05/15/dog-knowledge.html"&gt;Dogs Do Not Know Things&lt;/a&gt;
. In short, dogs &lt;em&gt;do not&lt;/em&gt; think like we do, and trying to treat them like they do will not have good results for anybody involved. Also, with respect to training, intentional or otherwise, humans are not actually so different.&lt;/p&gt;
&lt;p&gt;I have a couple of tabs with a classic topic: bloggers talking about why blogging is great. They are right; blogging &lt;em&gt;is&lt;/em&gt; great. Marc Jenkins has a post about &lt;a class="h-cite" href="https://marcjenkins.co.uk/personal-blogging/"&gt;Personal Blogging&lt;/a&gt;
—blogging as a better way to express yourself and connect with people on the internet than social media platforms. Meanwhile, Gordon McClean has written &lt;a class="h-cite" href="https://www.gordonmclean.co.uk/2026/04/28/the-bloggers-manifesto/"&gt;The Blogger&amp;rsquo;s Manifesto&lt;/a&gt;
 with advice and ideals born of years of blogging.&lt;/p&gt;
&lt;p&gt;There&amp;rsquo;s another post from Brain Baking looking back at &lt;a class="h-cite" href="https://brainbaking.com/post/2026/05/april-2026/"&gt;April 2026&lt;/a&gt;
 with lots of interesting links that have really set this clean-up project back T_T.&lt;/p&gt;
&lt;p&gt;Blast-o-rama has an exhortation: &lt;a class="h-cite" href="https://blast-o-rama.com/2026/05/13/dear-internet-read-a-little-deeper-it-wont-hurt-you-i-promise/"&gt;Dear Internet: Read A Little Deeper, It Won’t Hurt You, I Promise&lt;/a&gt;
. This should be basic stuff. Think about the claims that are being made in articles. Think about the sources.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Well that was nice to clear out some of the blog posts I&amp;rsquo;ve had open. They accumulate. I open links in new tabs thinking I will read them later. But &amp;ldquo;later&amp;rdquo; doesn&amp;rsquo;t happen unless you make a deliberate effort to make it happen. It turns out, a lot of those links are actually pretty good. There were some interesting posts, and I&amp;rsquo;ve added a couple new blogs to my feed reader.&lt;/p&gt;
&lt;p&gt;Now, at the end of this effort&amp;hellip; I still have way too many tabs open. Oh well. I&amp;rsquo;ll just keep chipping away at it.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=tab-cleaning-may-2026-edition"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>The Tool For the Job</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/the-tool-for-the-job/"/>
<published>2026-05-14T00:00:00Z</published>
<updated>2026-05-14T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/the-tool-for-the-job/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;I have noticed an interesting phenomenon with LLMs. There is something I have never quite understood.&lt;/p&gt;
&lt;p&gt;From what I have gathered from people talking about LLMs in comments, and blog posts, and chat rooms, and Youtube videos, etc. One of the most common uses for them is looking up information. And I don&amp;rsquo;t get it.&lt;/p&gt;
&lt;p&gt;I do try to avoid using LLMs where I can, but this particular case is not aversion or resistance for me. It is categorization. I simply that I don&amp;rsquo;t associate them with finding information. When I want to look something up, I go to &lt;a class="h-cite" href="https://www.wikipedia.org/"&gt;Wikipedia&lt;/a&gt;
, or &lt;a class="h-cite" href="https://youtube.com/"&gt;Youtube&lt;/a&gt;
. I go to a search engine and look for blogs and forums.&lt;/p&gt;
&lt;p&gt;LLMs aren&amp;rsquo;t even in the list of things that I think about for learning. I am a little mystified by how they got onto that list for so many other people. There are many tools for this task already. Those tools can certainly be improved on—who has anything good to say about search engines in 2026? But for me, LLMs do not seem tool-shaped.&lt;/p&gt;
&lt;p&gt;I suspect this may be a bigger divide between me and LLM users than even moral or economic considerations.&lt;/p&gt;
&lt;p&gt;What tools do you use to find information, to learn? What makes something look and feel like a tool for that?&lt;/p&gt;
&lt;p&gt;Wikipedia is, of course, patterened after encyclopedias, the default reference tools of the print era. Youtube videos vary, but often register either as lectures like you might find in schools, or practical demonstrations. Blog posts are (we always hope) experienced people sharing the lessons they have learned, as if we were listening to a mentor or colleague.&lt;/p&gt;
&lt;p&gt;Moreover, when I am looking something up with one of those resources, I am usually looking for something specific. In that directed, information-hunting mindset, a conversation or chat is simply the wrong format.&lt;/p&gt;
&lt;p&gt;Learning can and does happen in conversation—but it is reactive. It begins when a particular person makes a statement, either written or spoken. And perhaps you would like them to clarify a point you did not fully understand. You would like them to elaborate on an idea you found interesting. You would like to challenge them on something you disagree with. And in this way the conversation starts and may proceed to new information. But this does not map onto LLM conversations. The bot has nothing more to say than you do.&lt;/p&gt;
&lt;p&gt;And for my part, I rarely have anything to say to actual people. Going to a website to talk at a bot in hopes of something productive is extremely artificial and unlikely.&lt;/p&gt;
&lt;p&gt;In conclusion, yes, I am still using search engines to find things. That is what they are for. Or are supposed to be for. Tools for finding information and knowledge and experience.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=the-tool-for-the-job"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>Re: Who Knows That You Blog?</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/re-who-knows-that-you-blog/"/>
<published>2026-05-05T00:00:00Z</published>
<updated>2026-05-05T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/re-who-knows-that-you-blog/</id>
<content type="html" xml:lang="en-us">&lt;h2 id="who-knows-that-you-blog"&gt;Who Knows That You Blog?&lt;/h2&gt;
&lt;p&gt;First, this is a response to David&amp;rsquo;s post: &lt;a class="h-cite" href="https://forkingmad.blog/who-knows-that-you-blog/"&gt;Who knows that you blog?&lt;/a&gt;
. It is also a response to the &lt;a class="h-cite" href="https://hamatti.org/posts/i-tell-about-my-blog-to-anyone-willing-to-listen/"&gt;other&lt;/a&gt;
 &lt;a class="h-cite" href="https://kevquirk.com/who-knows-that-you-blog"&gt;people&amp;rsquo;s&lt;/a&gt;
 &lt;a class="h-cite" href="https://kaigulliksen.com/re-who-knows-that-you-blog/"&gt;responses&lt;/a&gt;
 that I have seen in my RSS feeds.&lt;/p&gt;
&lt;p&gt;For the most part, no one I know in real life knows this blog. My partner knows &lt;em&gt;that&lt;/em&gt; I blog, but I have not showed it to them. I—like many other people, it seems—feel a sense of separation between real life and internet life that I am hesitant to violate. Also, the name I blog under here is the same one I write fanfiction under, so I feel a little shy about that. Beyond that I am not embarassed about what I write here—even if some things are hastily and uncarefully written. I am sure I&amp;rsquo;ll share this sooner or later.&lt;/p&gt;
&lt;p&gt;But all in all, nobody I know in real life knows both that I blog and where my blog is. At least for right now.&lt;/p&gt;
&lt;h2 id="who-knows-you-from-your-blog"&gt;Who Knows You From Your Blog?&lt;/h2&gt;
&lt;p&gt;Now here&amp;rsquo;s where it gets interesting. I have actually been in the reverse scenario. Once, I met at a convention, &lt;a class="h-cite" href="https://crystalwobsite.gay"&gt;someone&lt;/a&gt;
 who read my blog, but that I did not know in real life. I&amp;rsquo;ll wager that is a great deal less common. The same separation applies, however. They remarked to me that they read my blog, but did not have much of a sense of who I was. I did not have a good answer.&lt;/p&gt;
&lt;h2 id="do-you-want-to-be-known"&gt;Do You Want To Be Known?&lt;/h2&gt;
&lt;p&gt;I certainly do prefer to omit personal details. I hope, or think, or expect, that people will simply read between the lines to get an idea of me. I guess I have done a good job of that. In part, I am old enough to have been taught not to give out personal information on the internet. But mostly, I am just very shy. Somewhere in the queue of blog post ideas is one about not posting more pictures—because they are a trace of where I have been and where I am.&lt;/p&gt;
&lt;p&gt;Is it even worth the worrying? What I am most concerned about is not any particular reader, but the vast constant sweeps of surveillance that patrol the internet—and those already know who I am.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=re-who-knows-that-you-blog"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>It's Not Just Slop—It's Bad Writing</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/its-not-just-slop-its-bad-writing/"/>
<published>2026-05-04T00:00:00Z</published>
<updated>2026-05-04T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/its-not-just-slop-its-bad-writing/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;There was an article I saw floating around recently. It was about an experiment: &lt;a class="h-cite" href="https://arman-bd.hashnode.dev/i-left-port-22-open-on-the-internet-for-54-days-here-s-who-showed-up"&gt;setting up a computer with a fake login and leaving it open to the internet&lt;/a&gt;
. It quickly became apparent as I read it, that it was written by an LLM.&lt;/p&gt;
&lt;p&gt;The other day, I started watching a video by a youtuber I have enjoyed in the past. The script of the video was very obviously LLM-written. I didn&amp;rsquo;t finish the video.&lt;/p&gt;
&lt;p&gt;It was undeniable. The &amp;ldquo;it&amp;rsquo;s not just X—it&amp;rsquo;s Y&amp;quot;s. The triplets of short sentences with an implicit verb. The &amp;ldquo;Question? Answer.&amp;rdquo; introductions to paragraphs. All repeated relentlessly until there was no chance of it being a quirk of individual style.&lt;/p&gt;
&lt;p&gt;It all bothered me. But it took a moment for me to realize exactly why. Eventually I came to the conclusion that both of these things were actively made worse &lt;em&gt;because they were written by LLMs&lt;/em&gt;. Why?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Not because I doubt the accuracy of the information&lt;/li&gt;
&lt;li&gt;Not because of the ethical issues with LLM training&lt;/li&gt;
&lt;li&gt;Not because of the resource usage in data centers&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It isn&amp;rsquo;t that these aren&amp;rsquo;t valid criticisms—they just aren&amp;rsquo;t the point I am trying to make. And besides, plenty of blog posts have been written on them already.&lt;/p&gt;
&lt;p&gt;My problem is that the content I was dealing with was obviously made by LLMs. Why is this so bad?
Simply because it made me think about AI. I was thinking about AI—and &lt;em&gt;not&lt;/em&gt; the information in front of me. It was pure distraction.&lt;/p&gt;
&lt;p&gt;Yes, LLMs can be instructed to avoid this stereotypical style. I have probably read things generated that way without ever realizing it. I know I will in the future. I don&amp;rsquo;t even mind that.&lt;/p&gt;
&lt;p&gt;There are very few hard and fast rules for writing. But if there is one, it is &lt;em&gt;keep your audience&amp;rsquo;s attention&lt;/em&gt;. If some element of either content or style distracts from the point of the work, remove it. If you have any respect for your audience: stay on topic. If you care at all about what you are trying to communicate: don&amp;rsquo;t add noise to the message.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=its-not-just-slopits-bad-writing"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>Emailing about Blogging and Blogging About Emailing</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/emailing-about-blogging-and-blogging-about-emailing/"/>
<published>2026-04-30T00:00:00Z</published>
<updated>2026-04-30T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/emailing-about-blogging-and-blogging-about-emailing/</id>
<content type="html" xml:lang="en-us">&lt;h2 id="reach-out-to-your-fellow-bloggers"&gt;Reach Out to Your Fellow Bloggers&lt;/h2&gt;
&lt;p&gt;A few days ago, I read a post about email: &lt;a class="h-cite" href="https://taonaw.com/2026/04/22/about-writing-other-bloggers-email.html"&gt;About Writing Other Bloggers Email&lt;/a&gt;
. It&amp;rsquo;s a reflection on the joy of emailing other bloggers. Not so much as a way of &lt;a class="h-cite" href="https://axxuy.com/blog/2025/shootmeanemail/"&gt;commenting on their posts&lt;/a&gt;
 (though not excluding that), but as a way of connecting with the people behind those posts.&lt;/p&gt;
&lt;p&gt;Shortly after that, on &lt;a class="h-cite" href="https://bubbles.town"&gt;Bubbles&lt;/a&gt;
, I read a reply to that: &lt;a class="h-cite" href="https://kaigulliksen.com/re-about-writing-other-bloggers-email/"&gt;Re: About Writing Other Bloggers Email&lt;/a&gt;
. It&amp;rsquo;s a short note that I found very relatable. The author, like me, thinks about emailing other bloggers, would like to make a habit of it, but so far has not followed through much. I know the feeling.&lt;/p&gt;
&lt;p&gt;I have sent both of these people a message, so that&amp;rsquo;s a start. One of the things that keeps me from doing it more is overthinking what to say. In the end, I kept it to a simple &amp;ldquo;hey, I saw your post and I like your blog.&amp;rdquo; Every now and then I get an email to that effect, and it always is a pleasure. It is unfortunately satisfying, in 2026, simply to recieve an email from an actual human being.&lt;/p&gt;
&lt;h2 id="email-is-a-social-network"&gt;Email Is A Social Network&lt;/h2&gt;
&lt;p&gt;There is a way to take this even further. A few &lt;em&gt;weeks&lt;/em&gt; ago I read an interesting post about a certain &amp;ldquo;workflow&amp;rdquo;—blogflow is perhaps a better word?—for the smolweb. &lt;a class="h-cite" href="https://ploum.net/2026-03-20-social-smolnet.html"&gt;The Social Smolnet&lt;/a&gt;
. The post talks about some specific software, namely &lt;a class="h-cite" href="https://offpunk.net/"&gt;offpunk&lt;/a&gt;
. I have not used it, but it seems to be a browser designed specifically for the small/indie web.&lt;/p&gt;
&lt;p&gt;The specific software is not the interesting part. To me, the interesting part is the philosophy I see in this post. It makes the case for a social network composed entirely of blogs and email. What if you looked at your RSS feeds not just as a list of interesting people to listen to, but as a contact book, a list of interesting people to &lt;em&gt;talk to&lt;/em&gt;?&lt;/p&gt;
&lt;p&gt;I love that idea. And I think it gets to the heart of things. We aren&amp;rsquo;t writing all these posts about email because email is so great in and of itself. We are writing about it because email is a tool for connecting.&lt;/p&gt;
&lt;h2 id="conclusion"&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;Email is nice. So I&amp;rsquo;m going to end this post with two things. One is a pledge to send more emails to the people who&amp;rsquo;s posts I read. And two is a bit of shamelessness: I would love to get more emails from all of you. My inbox is open.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=emailing-about-blogging-and-blogging-about-emailing"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>I Also Got An Xteink X4</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/i-also-got-an-xteink-x4/"/>
<published>2026-04-23T00:00:00Z</published>
<updated>2026-04-23T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/i-also-got-an-xteink-x4/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;Have you heard about it? The hot new device? I have recently seen a flurry of discussion about a new gadget: the Xteink X4. This is only a sampling of the blog posts about it:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class="h-cite" href="https://joelchrono.xyz/blog/early-days-with-xteink-x4/"&gt;Early Days With Xteink X4 - Joel Chrono&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a class="h-cite" href="https://moddedbear.com/i-love-reading-on-the-xteink-x4/"&gt;I Love Reading on the Xteink X4 - JP&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a class="h-cite" href="https://www-gem.codeberg.page/sys_x4/"&gt;Barebones e-reader: Xteink X4 - www-gem&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a class="h-cite" href="https://bit-101.com/blog/posts/2026-04-08/xteink-x4/"&gt;XT Eink X4 - Bit-101&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="what-is-it"&gt;What is it?&lt;/h2&gt;
&lt;p&gt;It is an ereader. The big deal is that it is small and relatively cheap. It&amp;rsquo;s about A6 sized and retails for $69 USD. It&amp;rsquo;s got a magnet so you can stick it to the back of your phone and take it everywhere.&lt;/p&gt;
&lt;p&gt;There is open source &lt;a class="h-cite" href="https://github.com/crosspoint-reader/crosspoint-reader"&gt;firmware&lt;/a&gt;
 you can install to enhance it&amp;rsquo;s features.&lt;/p&gt;
&lt;h2 id="why-did-i-get-one"&gt;Why did I get one?&lt;/h2&gt;
&lt;p&gt;At first, I looked at all this discussion, and I thought &amp;ldquo;I don&amp;rsquo;t need one.&amp;rdquo; I didn&amp;rsquo;t feel like buying &lt;a class="h-cite" href="https://axxuy.com/blog/2024/primitivepics/"&gt;yet another gadget&lt;/a&gt;
. It&amp;rsquo;s neat sure, but I already have an Amazon Kindle. I don&amp;rsquo;t love Amazon, but I have it and it still works.  I like to ask &amp;ldquo;what can I do with this that I can&amp;rsquo;t with the old one?&amp;rdquo; when I am thinking about buying something like this. At the end of the day, it is a toy. $69 is a lot of money to spend on a toy.&lt;/p&gt;
&lt;p&gt;And then I realized exactly what I would use it for. Sometimes I have downtime at work. I often wish I had a book with me during these moments. A book—or even my kindle—are a little too inconvenient, and, well, conspicuous, to pack. I have my phone, but that is obviously quite distracting.&lt;/p&gt;
&lt;p&gt;So, with that specific use case in mind (and of course I will read it in other places too), I ordered one for myself. It is really nice. People are raving about it for a reason. It is a supremely convenient way to read—at work, on the bus, in waiting rooms, etc. I have a book everywhere I go now, and it&amp;rsquo;s not connected to the internet. How wonderful.&lt;/p&gt;
&lt;p&gt;The build quality is okay. You can only expect so much at this price point. I&amp;rsquo;ve already had one button crack, and that does not give me very much confidence in the longevity. We shall see.&lt;/p&gt;
&lt;p&gt;Overall, I can recommend it. It&amp;rsquo;s pretty cool.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=i-also-got-an-xteink-x4"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>Back In Space</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/back-in-space/"/>
<published>2026-04-16T00:00:00Z</published>
<updated>2026-04-16T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/back-in-space/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;Once upon a time, when I first started this blog, it was not on the regular internet. The indieweb is a niche, and I was in a niche of a niche.&lt;/p&gt;
&lt;p&gt;This blog began as a &lt;a class="h-cite" href="https://geminiprotocol.net/docs/"&gt;gemini&lt;/a&gt;
 capsule. Briefly, gemini is an alternative to the http(s) system that most of the internet runs on. The result is a &amp;ldquo;secret&amp;rdquo; web that you need a special browser to use. Now what&amp;rsquo;s the point of that? Gemini is specfically designed for small/indie web purposes. It simply does not support the things that make the standart web complex: there is no scripting, there isn&amp;rsquo;t even any way to control appearance. It&amp;rsquo;s just text and links.&lt;/p&gt;
&lt;p&gt;As the setup I use to build my site changed, it eventually moved over to the &amp;ldquo;big&amp;rdquo; web and the gemini side was left behind. I have wanted to get it back up and running for a while now. There&amp;rsquo;s some nice people over there.&lt;/p&gt;
&lt;p&gt;It was mostly a matter of dragging my feet. The simplicity of gemini means that &amp;ldquo;converting&amp;rdquo; things is a simply affair—with the exception of links. So now I&amp;rsquo;ve got a little program I wrote acting as a second static site generator on top of my main one. It was quite satisfying to build it myself—there are no off the self programs for this kind of thing.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s good to finally be back.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Also the recent &lt;a class="h-cite" href="https://en.wikipedia.org/wiki/Artemis_II"&gt;Artemis&lt;/a&gt;
 mission was really cool. Actual space is great too.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=back-in-space"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>I Don't Blog Every Day</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/daily-blogging/"/>
<published>2026-04-15T00:00:00Z</published>
<updated>2026-04-15T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/daily-blogging/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;A while ago—I don&amp;rsquo;t remember exactly when or how—I came across a pair of posts: &lt;a class="h-cite" href="https://mtwb.blog/posts/2026/blogging/going-back-to-daily-bloggin/"&gt;Going Back To Daily Blogging&lt;/a&gt;
 and &lt;a class="h-cite" href="https://brennan.day/my-blogging-workflow-a-routine-for-nearly-a-post-a-day-for-4-months-straight/"&gt;My Blogging Workflow: A routine for nearly a post a day for 4 months straight.&lt;/a&gt;
. Both of them touch on writing and blogging habits.&lt;/p&gt;
&lt;p&gt;I do not write a blog post every day. I don&amp;rsquo;t try to. I&amp;rsquo;ve done it for brief stretches, during &lt;a class="h-cite" href="https://tagn.wordpress.com/2025/07/29/blaugust-2025-is-nearly-here/"&gt;Blaugust&lt;/a&gt;
. It quickly felt like a chore. It felt exhausting.&lt;/p&gt;
&lt;p&gt;For that matter, it&amp;rsquo;s a good day when I even get a Mastodon post out. Though that may be a little different. Posting on social media has never come naturally to me; I have little to no impulse to express myself that way.&lt;/p&gt;
&lt;p&gt;I do have one daily writing habit. I&amp;rsquo;ve been Journalling every evening for quite a while now, almost &lt;a class="h-cite" href="https://axxuy.com/blog/2025/journal/"&gt;four years&lt;/a&gt;
. I have a physical notebook where I write about my day.&lt;/p&gt;
&lt;p&gt;There is a more aspirational bout of morning writing that I do. It doesn&amp;rsquo;t happen every day and it&amp;rsquo;s not quite the 750 words that Brennan talks about, but it&amp;rsquo;s something similar. Again, this is in a dedicated physical notebook (while the evening journaling is done with a fancy fountain pen (varying) in a fancy notebook (Leuchtturm), this is a cheap composition book. It consists of a simple brain dump. I stream-of-conciousness onto the page until I reach the bottom. There are rarely any &amp;ldquo;useful&amp;rdquo; ideas in there. That&amp;rsquo;s okay. The point isn&amp;rsquo;t to get anything useful. It&amp;rsquo;s not even a rough draft. The point, for me, is really just to prove to myself that I do have things to say, if only I let my filters down. I often feel like that is something I need to prove.&lt;/p&gt;
&lt;p&gt;I don&amp;rsquo;t have much in the way of an explicit &amp;ldquo;process&amp;rdquo; for writing my blog posts. I just &amp;ldquo;have an idea&amp;rdquo; sometimes and then I write a little about it. Often the starting point is simply a vague feeling that I want to blog about &lt;em&gt;something&lt;/em&gt;. I don&amp;rsquo;t do drafts or revision. Sometimes I don&amp;rsquo;t even remember to fix all the misspelled words. This is a rough blog. It took me a long time to decide on a title for all this. I think the one I have now &amp;ldquo;Axxuy&amp;rsquo;s Internet Notebook&amp;rdquo; captures the spirit well.&lt;/p&gt;
&lt;p&gt;What are your writing habits like?&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=i-dont-blog-every-day"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>Do You Have the Time?</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/do-you-have-the-time/"/>
<published>2026-04-02T00:00:00Z</published>
<updated>2026-04-02T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/do-you-have-the-time/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;Today&amp;rsquo;s post is in the old-man-yells-at-cloud genre. It&amp;rsquo;s a sequel of sorts to a much older post of mine, in which I complained about the difficulty of &lt;a class="h-cite" href="https://axxuy.com/blog/2024/shoes/"&gt;buying shoes&lt;/a&gt;
.&lt;/p&gt;
&lt;p&gt;I want a timer for Pomodoro type tasks. My phone has a timer, of course, and my watch, and my computer can do it. But I don&amp;rsquo;t want those.&lt;/p&gt;
&lt;p&gt;I want a physical, analog timer that can sit on my desk in front of me. I have another requirement, and this is where all the trouble has been. I want to buy it in person, at a physical store.&lt;/p&gt;
&lt;p&gt;I went to the local $megastore and to the kitchen section—nothing. I didn&amp;rsquo;t even see a digital timer. I went to a kitchen supply store, and they did not have one either.&lt;/p&gt;
&lt;p&gt;I am not trying to buy anything obscure or specific. Just a kitchen timer. This is somehow difficult. I still don&amp;rsquo;t have one.&lt;/p&gt;
&lt;p&gt;Obviously, I could just go on Amazon and have a plethora of choices. But I wanted to avoid that at the start, and at this point it&amp;rsquo;s a matter of principle.&lt;/p&gt;
&lt;p&gt;My complaint is not really that I can&amp;rsquo;t find this timer. It is about the black hole of commerce that Amazon has become, pulling everything in, closing off even the option to get things elsewhere.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=do-you-have-the-time"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>March Tinkering</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/march-tinkering/"/>
<published>2026-03-30T00:00:00Z</published>
<updated>2026-03-30T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/march-tinkering/</id>
<content type="html" xml:lang="en-us">&lt;blockquote&gt;
&lt;p&gt;Remember to update your RSS feed for this site to axxuy.com!&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&amp;rsquo;ve been doing some work on my little site here. I thought I&amp;rsquo;d talk about it a little.&lt;/p&gt;
&lt;h2 id="humanjson"&gt;human.json&lt;/h2&gt;
&lt;p&gt;In my part of the web, &lt;a class="h-cite" href="https://codeberg.org/robida/human.json"&gt;human.json&lt;/a&gt;
 is a project that has been getting a lot of attention lately. It is an attempt to make a more human web by building networks of websites that trust each other.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m a human so I wanted in.&lt;/p&gt;
&lt;p&gt;Now, json is not the kind of file I want to maintain by hand. So I wrote some code to generate it from a simpler format.&lt;/p&gt;
&lt;p&gt;First I looked into using &lt;a class="h-cite" href="https://gohugo.io"&gt;Hugo&amp;rsquo;s&lt;/a&gt;
 templating systems to do it, but I couldn&amp;rsquo;t quite figure it out from the documentation—at least, not before I got impatient enough to just &lt;a class="h-cite" href="https://codeberg.org/axxuy/humans-generator"&gt;do it myself&lt;/a&gt;
.&lt;/p&gt;
&lt;p&gt;A few days later, however, I came across a blog post detailing exactly &lt;a class="h-cite" href="https://foosel.net/til/how-to-automatically-build-a-humanjson-file-in-hugo/"&gt;how to automatically build a human.json file in Hugo&lt;/a&gt;
. So I switched over to that.&lt;/p&gt;
&lt;p&gt;Thank you foosel!&lt;/p&gt;
&lt;h2 id="shiny-new-toy"&gt;Shiny new toy&lt;/h2&gt;
&lt;p&gt;That blog was very satisfying, not only because it solved the original problem I wanted to, but because the techniques in it were also useful for &lt;em&gt;other&lt;/em&gt; things I want to do.&lt;/p&gt;
&lt;p&gt;There are two bits and pieces that I&amp;rsquo;ve overhailed so far: my 88x31 buttons, and my webrings. It won&amp;rsquo;t look any different to anyone reading this, but it&amp;rsquo;s a little easier for me to manage.&lt;/p&gt;
&lt;p&gt;Do you have some cool 88x31 buttons? Do you know somebody who does? I&amp;rsquo;d love to &lt;del&gt;steal&lt;/del&gt; add some more to my site, so please feel free to tell me about them.&lt;/p&gt;
&lt;p&gt;I also joined a new webring. It&amp;rsquo;s dedicated to &lt;a class="h-cite" href="https://starry-knight.neocities.org/webring/verdant-webring"&gt;websites that are green&lt;/a&gt;
, and I thought that was cool.&lt;/p&gt;
&lt;h2 id="maybe-some-other-things"&gt;Maybe some other things&lt;/h2&gt;
&lt;p&gt;This website will never really be &lt;a class="h-cite" href="https://axxuy.com/blog/2025/unfinished/"&gt;finished&lt;/a&gt;
. So the question is what to do next.&lt;/p&gt;
&lt;p&gt;&lt;a class="h-cite" href="https://joelchrono.xyz/blog/website-changes-new-section-music-widget-and-upvotes/"&gt;Joel&lt;/a&gt;
 had a nice idea recently of adding an &amp;ldquo;On this week&amp;rdquo; section of links. It&amp;rsquo;s similar to the &amp;ldquo;On this day&amp;rdquo; feature I have, but with a slightly broader scope so that more posts actually have some links. I&amp;rsquo;m tempted to switch over to that approach.&lt;/p&gt;
&lt;p&gt;And then, of course, there is the constant whispering temptation to rebuild this site entirely from scratch. There&amp;rsquo;s nothing wrong with the current system that is driving me toward that, I just want to do it for the satisfaction of making it myself.&lt;/p&gt;
&lt;p&gt;That&amp;rsquo;s all I have for now. Auf wiederposten!&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=march-tinkering"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>Spring Cleaning</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.com/blog/2026/spring-cleaning/"/>
<published>2026-03-14T00:00:00Z</published>
<updated>2026-03-14T00:00:00Z</updated>
<id>https://axxuy.com/blog/2026/spring-cleaning/</id>
<content type="html" xml:lang="en-us">&lt;h2 id="a-new-coat-of-paint"&gt;A New Coat of Paint&lt;/h2&gt;
&lt;p&gt;I felt like it was time to do a little cleaning up around my blog.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve spruced up my background and made some tweaks to the CSS. Things should hopefully be a little bit neater.&lt;/p&gt;
&lt;p&gt;That&amp;rsquo;s well and good, but if that were everything I would not be making this post. It&amp;rsquo;s only some changes, not a full redesign. And that brings me to the next section.&lt;/p&gt;
&lt;h2 id="causing-problems-on-purpose"&gt;Causing Problems on Purpose&lt;/h2&gt;
&lt;p&gt;I have also made some more disruptive changes.&lt;/p&gt;
&lt;p&gt;The big one is that I am changing my domain name. Goodbye &lt;code&gt;axxuy.xyz&lt;/code&gt;, hello &lt;a class="h-cite" href="https://axxuy.com/"&gt;axxuy.com&lt;/a&gt;
!&lt;/p&gt;
&lt;p&gt;There are a couple of reasons for this:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;price increases
When I originally bought my domain .xyz websites were extremely cheap. But over the years, the price has gradually risen, until now they are comparable to plain old .coms.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;reputation
As a result of those former low prices, .xyz domains have acquired a bad reputation around a lot if the internet. To be clear, I am not worrying about what the &lt;em&gt;people&lt;/em&gt; who come across my website will think. I am worried about the systems that my website has to take part in to get to people, e.g. getting caught in spam filters.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;annoying to type
This last point is rather petty, but I just find &amp;ldquo;xyz&amp;rdquo; slightly annoying to type. The y is so far away from the other letters, and you don&amp;rsquo;t get a clean roll of the fingers.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;There&amp;rsquo;s more. What I was already breaking links, I figured I would do some reorganizing. I also simplified the folders a little.&lt;/p&gt;
&lt;p&gt;If you do these things, it really is better to do them all at once.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve been thinking about doing all this for a while, and second guessing myself for as long. I think there&amp;rsquo;s a certain point where you have to put your doubts aside and just do the thing, even if you aren&amp;rsquo;t sure about it. Though rest assured, it&amp;rsquo;s enough of a pain that I&amp;rsquo;m not going to switching around on a whim again.&lt;/p&gt;
&lt;h2 id="other-new-stuff"&gt;Other New Stuff&lt;/h2&gt;
&lt;p&gt;As I was working on all of this, I heard about something new: the &lt;a class="h-cite" href="https://codeberg.org/robida/human.json"&gt;human.json&lt;/a&gt;
 protocol, which provides a simple way for websites to indicate who they trust to be a real human—and who trusts them. I&amp;rsquo;m a human, and I like human websites, so I&amp;rsquo;ve added my own &lt;a class="h-cite" href="https://axxuy.com/.well-known/human.json"&gt;human.json&lt;/a&gt;
.&lt;/p&gt;
&lt;p&gt;I also threw together a small tool to generate it for me. You can find it on &lt;a class="h-cite" href="https://codeberg.org/axxuy/humans-generator"&gt;Codeberg&lt;/a&gt;
. I hope somebody finds it useful.&lt;/p&gt;
&lt;h2 id="conclusion"&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;That&amp;rsquo;s all for now, folks. Thanks for bearing with me as I go around stirring things up.&lt;/p&gt;
&lt;p&gt;&lt;a class="h-cite" href="https://axxuy.xyz/blog/"&gt;axxuy.xyz&lt;/a&gt;
 will stay up for at least another year or two, and redirect here. Make sure to update your RSS feeds!&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=spring-cleaning"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>Mailcall</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.xyz/blog/posts/2026/mailcall/"/>
<published>2026-03-04T00:00:00Z</published>
<updated>2026-03-04T00:00:00Z</updated>
<id>https://axxuy.xyz/blog/posts/2026/mailcall/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;I will begin this post by doxxing myself a little. I grew up in the transition period of internet communication. When I found out about email it was new enough that the idea of sending a message that arrives instantly was novel and cool. But I was also too young to have actually sent regular mail at that point.&lt;/p&gt;
&lt;p&gt;I send more mail now. It&amp;rsquo;s great! I highly recommend it.&lt;/p&gt;
&lt;p&gt;Yes, I am talking about physical mail. Email is cool too, if it is sent with real intent to communicate. But there are enough blog posts on that topic.&lt;/p&gt;
&lt;p&gt;I have a certain friend who I met over Discord. At some point I started sending Christmas cards, and later just random letters. It&amp;rsquo;s fun, and it&amp;rsquo;s a deeper connection than I think you can get from just chatting. A letter is longer form than a Discord (or IRC or Signal or any other chat app) comment. It&amp;rsquo;s an artifact, something you can hold in your hands. I do not think our friendship would be nearly as strong at this point if we did not have our letters.&lt;/p&gt;
&lt;p&gt;Even if you have other channels of communication with somebody (no matter what your relationship is), physical mail is unique, irreplicable. You read it when you get it&amp;mdash;you reread it&amp;mdash;you reread it again&amp;mdash;you hold it in your hand.&lt;/p&gt;
&lt;p&gt;I almost wish I was reckless enough to post my address on here for all of you, dear readers, to send me mail.&lt;/p&gt;
&lt;p&gt;There are websites where you can sign up to exchange mail. &lt;a class="h-cite" href="https://www.postcrossing.com/"&gt;Postcrossing&lt;/a&gt;
 is one&amp;mdash;postcards are still a thing! There are also many smaller, more specialized exchanges for various groups and communities scattered around the internet. Those are harder to link to.&lt;/p&gt;
&lt;p&gt;I prefer the more specific ways of sending mail: to people I already know, or at least share an interest with. I was on Postcrossing for a short while. but for me, the fun of trading mail with completely random people wore off quickly. I need to preexisting connection to really write something.&lt;/p&gt;
&lt;p&gt;Send mail! It&amp;rsquo;s not only fun (it&amp;rsquo;s very fun), it&amp;rsquo;s also a genuinely nice way of staying in touch with people you care about.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=mailcall"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>RE: What Is The Oldest Thing You Own?</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.xyz/blog/posts/2026/what-is-the-oldest-thing-you-own/"/>
<published>2026-02-26T00:00:00Z</published>
<updated>2026-02-26T00:00:00Z</updated>
<id>https://axxuy.xyz/blog/posts/2026/what-is-the-oldest-thing-you-own/</id>
<content type="html" xml:lang="en-us">

	&lt;blockquote&gt;Replying to: &lt;a href="https://thomasrigby.com/posts/what-is-the-oldest-thing-you-own/" class="u-in-reply-to"&gt;What is the oldest thing you own?&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;I saw this post as I was catching up on my feed and I thought I&amp;rsquo;d chime in. I am tempted to get all snarky and start by poking at what &amp;ldquo;oldest,&amp;rdquo; &amp;ldquo;thing,&amp;rdquo; and &amp;ldquo;own&amp;rdquo; mean. There proably is a good essay to be written on that theme, but in the interest of getting this post out the door, I will bite my tongue. For the same reason, I am also not going to take this to literally; i.e. I am not going to catalog everything I have to find the strictly oldest item.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s a &lt;a class="h-cite" href="https://axxuy.com/blog/2025/typewritersarecool/"&gt;typewriter&lt;/a&gt;
:&lt;/p&gt;
&lt;p&gt;&lt;img src="https://axxuy.com/images/25/blaugust_03.jpg" alt=""&gt;&lt;/p&gt;
&lt;p&gt;This dates to the late 1940s. So, while it is older than me, it is not &lt;em&gt;old&lt;/em&gt; in the grand scheme of things. It&amp;rsquo;s existence thus far fits in a single human lifetime.&lt;/p&gt;
&lt;p&gt;What I admire about it is that it still works—it still lives. It needed a little cleaning when I took it home from the antique shop I got it from, but nothing much. And now it works just as well as when it was new. I did not write this post on it, but I could have (I have, alas, too many writing instruments to give them all as much use as I would like). With some good care, it will outlast me.&lt;/p&gt;
&lt;p&gt;That&amp;rsquo;s satisfying. It&amp;rsquo;s solid in a way that you don&amp;rsquo;t see very often in modern appliances.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=re-what-is-the-oldest-thing-you-own"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>How Much Does A Blog Cost: 2026 Edition</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.xyz/blog/posts/2026/how-much-does-your-blog-cost/"/>
<published>2026-02-19T00:00:00Z</published>
<updated>2026-02-19T00:00:00Z</updated>
<id>https://axxuy.xyz/blog/posts/2026/how-much-does-your-blog-cost/</id>
<content type="html" xml:lang="en-us">

	&lt;blockquote&gt;Replying to: &lt;a href="https://www.containsmoderateperil.com/blog/2026/2/17/the-cost-of-blogging-in-2026" class="u-in-reply-to"&gt;The Cost of Blogging in 2026&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;Roger Edwards over at &lt;a class="h-cite" href="https://www.containsmoderateperil.com/"&gt;Contains Moderate Peril&lt;/a&gt;
 recently shared a post on the costs of maintaining his blog.&lt;/p&gt;
&lt;p&gt;I thought I&amp;rsquo;d share my own costs. This is partly so that anyone reading this can compare the different options, and partly so that a future me can compare across time. Prices will go up, I am sure. The question is what parts of the price, and how quickly.&lt;/p&gt;
&lt;p&gt;There are two bills I pay for this site: one for the domain name, and one for the server to host it. All prices are in USD.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Domain (via &lt;a class="h-cite" href="https://namecheap.com"&gt;namecheap&lt;/a&gt;
): $19.68/year ($1.64/month)&lt;/li&gt;
&lt;li&gt;Hosting (via &lt;a class="h-cite" href="https://www.linode.com/"&gt;Linode&lt;/a&gt;
): $60/year ($5/month)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So the total cost of running this blog as of 2026 is $86.04 per year, or about $7 a month. That&amp;rsquo;s not too bad. It&amp;rsquo;s a reminder, however, that running the web isn&amp;rsquo;t free. &lt;a class="h-cite" href="https://axxuy.com/blog/2025/tension/"&gt;That matters.&lt;/a&gt;
 It remains the case that this site isn&amp;rsquo;t worth much bother to monetize, but that is not universal.&lt;/p&gt;
&lt;p&gt;Part of what helps keep the costs this low compared to e.g. a Wordpress site is that I have set the server and all it&amp;rsquo;s software up myself. And that requires a certain amount of effort and specialized skills.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m comfortable. As hobbies go it&amp;rsquo;s cheap. I can think of any number of things that I pay more for that don&amp;rsquo;t give me nearly as much satisfaction.&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=how-much-does-a-blog-cost-2026-edition"&gt;Reply by email&lt;/a&gt;</content>
</entry>
<entry>
<title>Popcorn: Or, The Internet Is Still Good Sometimes</title>
<author>
<name>axxuy</name>
<email>axxuy@axxuy.com</email>
</author>
<link href="https://axxuy.xyz/blog/posts/2026/popcorn/"/>
<published>2026-02-08T00:00:00Z</published>
<updated>2026-02-08T00:00:00Z</updated>
<id>https://axxuy.xyz/blog/posts/2026/popcorn/</id>
<content type="html" xml:lang="en-us">&lt;p&gt;The internet still has it&amp;rsquo;s moments.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve been eating a lot of popcorn lately. &amp;ldquo;Getting into popcorn&amp;rdquo; you might say. And so I turn to the internet for recipes and advice and discussion, etc.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s not quite as charming as a &lt;a class="h-cite" href="https://axxuy.com/blog/2025/imissforums/"&gt;dedicated forum&lt;/a&gt;
, but in our modern internet it will have to do. Oh how sad it makes me that &amp;ldquo;popcorn.com&amp;rdquo; doesn&amp;rsquo;t even exist. The domain is taken, but goes nowhere. This is the curse of our times.&lt;/p&gt;
&lt;p&gt;There is a &lt;a class="h-cite" href="https://old.reddit.com/r/popcorn"&gt;popcorn subreddit&lt;/a&gt;
 to no surprise. And there I found out about &lt;a class="h-cite" href="https://amishcountrypopcorn.com/"&gt;Amish Country&lt;/a&gt;
, a specialty popcorn seller. I ordered some, and they are indeed good. They are better than the popcorn I get at my local grocery store.&lt;/p&gt;
&lt;p&gt;I like these parts of the internet, full of enthusiasm incredibly specific topics.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m going to have some popcorn now. Happy snacking!&lt;/p&gt;
&lt;a href="mailto:axxuy@axxuy.com?subject=popcorn-or-the-internet-is-still-good-sometimes"&gt;Reply by email&lt;/a&gt;</content>
</entry>
</feed>