<rss xmlns:source="http://source.scripting.com/" version="2.0">
  <channel>
    <title>The Art Of Not Asking Why</title>
    <link>https://taonaw.com/</link>
    <description></description>
    
    <language>en</language>
    
    <lastBuildDate>Tue, 14 Jul 2026 18:20:58 -0400</lastBuildDate>
    <item>
      <title></title>
      <link>https://taonaw.com/2026/07/14/still-working-with-claude-on.html</link>
      <pubDate>Tue, 14 Jul 2026 18:20:58 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/14/still-working-with-claude-on.html</guid>
      <description>&lt;p&gt;Still working with Claude on my Emacs settings as a reference. Need to start a new session, so asked it to write a summary with instructions on how I like it to help me. It wrote this:&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/2026-07-14-18-17-29.png&#34;&gt;
&lt;p&gt;I know it&amp;rsquo;s complementing me on purpose, but that emphasized &lt;em&gt;why&lt;/em&gt;? That&amp;rsquo;s why my blog is called this way 😉&lt;/p&gt;
</description>
      <source:markdown>Still working with Claude on my Emacs settings as a reference. Need to start a new session, so asked it to write a summary with instructions on how I like it to help me. It wrote this:

&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/2026-07-14-18-17-29.png&#34;&gt;

I know it&#39;s complementing me on purpose, but that emphasized *why*? That&#39;s why my blog is called this way 😉

</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/07/13/say-you-go-jump-to.html</link>
      <pubDate>Mon, 13 Jul 2026 18:21:20 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/13/say-you-go-jump-to.html</guid>
      <description>&lt;p&gt;Say you go jump to a header in org-mode somewhere with &lt;code&gt;C-c C-o&lt;/code&gt;. Did you know that you can go &lt;em&gt;back&lt;/em&gt; with &lt;code&gt;C-c &amp;amp;&lt;/code&gt;? And that it has history, so you can keep going back??&lt;/p&gt;
&lt;p&gt;Years of &lt;code&gt;isearch-backwards&lt;/code&gt;&amp;hellip; wasted. Mind blown. 🤯&lt;/p&gt;
</description>
      <source:markdown>Say you go jump to a header in org-mode somewhere with `C-c C-o`. Did you know that you can go *back* with `C-c &amp;`? And that it has history, so you can keep going back??

Years of `isearch-backwards`... wasted. Mind blown. 🤯
</source:markdown>
    </item>
    
    <item>
      <title>A Quick org-mode Internal Links Reference</title>
      <link>https://taonaw.com/2026/07/13/a-quick-orgmode-internal-links.html</link>
      <pubDate>Mon, 13 Jul 2026 08:55:12 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/13/a-quick-orgmode-internal-links.html</guid>
      <description>&lt;p&gt;As I mentioned yesterday, I started organizing (and cleaning) my Emacs config. What may have seemed like an annoying and boring task has proven to be fun and addicting (reminds me of &lt;a href=&#34;https://youtu.be/urcL86UpqZc?si=AsfljZNrPFF3pOOm&amp;amp;t=462&#34;&gt;this&lt;/a&gt;, which is part of &lt;a href=&#34;https://taonaw.com/2026/06/09/sometimes-you-just-gotta-laugh.html&#34;&gt;this video&lt;/a&gt; 😂).&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve already discovered a couple of new improvements to my current config as I was researching individual settings and why I have them, and as I said I do plan to share it. For now though, one important section I added to my config is a quick org-mode links reference. This is actually the first time I figured out the difference between radio links and &amp;ldquo;regular&amp;rdquo; plain links and how to use them.&lt;/p&gt;
&lt;p&gt;Here it is, slightly modified:&lt;/p&gt;
&lt;h3 id=&#34;org-id&#34;&gt;Org-ID&lt;/h3&gt;
&lt;p&gt;We know about links to other files using &lt;code&gt;org-id&lt;/code&gt;: You give a header an &lt;code&gt;:ID:&lt;/code&gt; property (this is generated automatically&lt;sup&gt;&lt;a id=&#34;fnr.1&#34; class=&#34;footref&#34; href=&#34;#fn.1&#34; role=&#34;doc-backlink&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; when you link to a header) and you get a slug, usually a UUID (for me it&amp;rsquo;s something slightly else, more on that soon below). This stores the links in &lt;code&gt;org-id-locations&lt;/code&gt;, which in turn points to a local file with all of these unique IDs. This is good for linking between headers in different files.&lt;/p&gt;
&lt;h3 id=&#34;custom-id&#34;&gt;Custom-ID&lt;/h3&gt;
&lt;p&gt;We can set a &lt;code&gt;:CUSTOM_ID:&lt;/code&gt; property for a header, and it&amp;rsquo;s only active in &lt;em&gt;that file&lt;/em&gt;. Kind of like a table of contents in a book, with chapters (= headers) listed. If you don&amp;rsquo;t have the book, you don&amp;rsquo;t have its table of contents, so you know nothing about it. To point to a header that has a custom ID: &lt;code&gt;[[#custom-id-value][description]]&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&#34;plain-target-and-radio-target-link&#34;&gt;Plain Target and Radio Target link&lt;/h3&gt;
&lt;p&gt;These are buffer-specific only (no cross-reference between files). In this case, the links are tied to words (anchors), not headers. There are two kinds.&lt;/p&gt;
&lt;p&gt;The regular plain target link works when we set the anchor first with &lt;code&gt;&amp;lt;&amp;lt;an anchor&amp;gt;&amp;gt;&lt;/code&gt;, then call it again with &lt;code&gt;[[an anchor]]&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Its more &amp;ldquo;magical&amp;rdquo; brother is a radio target link, where we set an anchor like so &lt;code&gt;&amp;lt;&amp;lt;&amp;lt;very special anchor&amp;gt;&amp;gt;&amp;gt;&lt;/code&gt; (three angle brackets) and then all we need to do is type &lt;em&gt;very special anchor&lt;/em&gt; (no brackets this time), and it works. Note though that when you create a radio target for the first time, you have to revert the buffer or &lt;code&gt;M-x org-update-radio-target-regexp&lt;/code&gt; for it to take effect.&lt;/p&gt;
&lt;h3 id=&#34;footnotes&#34;&gt;Footnotes&lt;/h3&gt;
&lt;p&gt;&lt;sup&gt;&lt;a id=&#34;fn.1&#34; href=&#34;#fnr.1&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; : this can be done with a function, org-id-get-create. For a deeper dive into how and why I set my org-id with a date format (not UUID), look &lt;a href=&#34;https://taonaw.com/2022/03/15/org-id-org-attach-better.html&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
</description>
      <source:markdown>As I mentioned yesterday, I started organizing (and cleaning) my Emacs config. What may have seemed like an annoying and boring task has proven to be fun and addicting (reminds me of [this](https://youtu.be/urcL86UpqZc?si=AsfljZNrPFF3pOOm&amp;t=462), which is part of [this video](https://taonaw.com/2026/06/09/sometimes-you-just-gotta-laugh.html) 😂).

I&#39;ve already discovered a couple of new improvements to my current config as I was researching individual settings and why I have them, and as I said I do plan to share it. For now though, one important section I added to my config is a quick org-mode links reference. This is actually the first time I figured out the difference between radio links and &#34;regular&#34; plain links and how to use them.

Here it is, slightly modified:

### Org-ID

We know about links to other files using `org-id`: You give a header an `:ID:` property (this is generated automatically&lt;sup&gt;&lt;a id=&#34;fnr.1&#34; class=&#34;footref&#34; href=&#34;#fn.1&#34; role=&#34;doc-backlink&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; when you link to a header) and you get a slug, usually a UUID (for me it&#39;s something slightly else, more on that soon below). This stores the links in `org-id-locations`, which in turn points to a local file with all of these unique IDs. This is good for linking between headers in different files.

### Custom-ID

We can set a `:CUSTOM_ID:` property for a header, and it&#39;s only active in *that file*. Kind of like a table of contents in a book, with chapters (= headers) listed. If you don&#39;t have the book, you don&#39;t have its table of contents, so you know nothing about it. To point to a header that has a custom ID: `[[#custom-id-value][description]]`.

### Plain Target and Radio Target link

These are buffer-specific only (no cross-reference between files). In this case, the links are tied to words (anchors), not headers. There are two kinds.

The regular plain target link works when we set the anchor first with `&lt;&lt;an anchor&gt;&gt;`, then call it again with `[[an anchor]]`.

Its more &#34;magical&#34; brother is a radio target link, where we set an anchor like so `&lt;&lt;&lt;very special anchor&gt;&gt;&gt;` (three angle brackets) and then all we need to do is type *very special anchor* (no brackets this time), and it works. Note though that when you create a radio target for the first time, you have to revert the buffer or `M-x org-update-radio-target-regexp` for it to take effect.

### Footnotes

&lt;sup&gt;&lt;a id=&#34;fn.1&#34; href=&#34;#fnr.1&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; : this can be done with a function, org-id-get-create. For a deeper dive into how and why I set my org-id with a date format (not UUID), look [here](https://taonaw.com/2022/03/15/org-id-org-attach-better.html).
</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/07/12/thought-my-emacs-init-file.html</link>
      <pubDate>Sun, 12 Jul 2026 20:14:31 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/12/thought-my-emacs-init-file.html</guid>
      <description>&lt;p&gt;Thought my Emacs init file needs a bit of cleaning - it contains configs from maybe 5 and 6 years ago. It&amp;rsquo;s a nostalgic learning experience. More fun than I thought. More to come soon 🤓&lt;/p&gt;
</description>
      <source:markdown>Thought my Emacs init file needs a bit of cleaning - it contains configs from maybe 5 and 6 years ago. It&#39;s a nostalgic learning experience. More fun than I thought. More to come soon 🤓
</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/07/12/every-time-i-go-get.html</link>
      <pubDate>Sun, 12 Jul 2026 13:57:22 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/12/every-time-i-go-get.html</guid>
      <description>&lt;p&gt;Every time I go get coffee around West Village, I feel like I&amp;rsquo;m in a different city. The contrast between our quiet neighborhood with the trees and birds in upper Manhattan and this is striking and fun. 📷&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/53bc8d220f.jpg&#34; alt=&#34;Auto-generated description: A lively urban street scene features colorful flags, restaurant signs, outdoor seating, and pedestrians under a bright blue sky with trees lining the sidewalk.&#34;&gt;
</description>
      <source:markdown>Every time I go get coffee around West Village, I feel like I&#39;m in a different city. The contrast between our quiet neighborhood with the trees and birds in upper Manhattan and this is striking and fun. 📷

&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/53bc8d220f.jpg&#34; alt=&#34;Auto-generated description: A lively urban street scene features colorful flags, restaurant signs, outdoor seating, and pedestrians under a bright blue sky with trees lining the sidewalk.&#34;&gt;
</source:markdown>
    </item>
    
    <item>
      <title>auth and curl</title>
      <link>https://taonaw.com/2026/07/10/auth-and-curl.html</link>
      <pubDate>Fri, 10 Jul 2026 18:04:39 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/10/auth-and-curl.html</guid>
      <description>&lt;p&gt;Yesterday early in the morning, with the help of Claude, I finally figured out what prevented me from logging into indieweb.org. It was something stupid really, one of those things that most people who register their own domains will probably understand.&lt;/p&gt;
&lt;p&gt;IndieWeb uses &lt;a href=&#34;https://indieweb.org/IndieAuth&#34;&gt;IndieAuth&lt;/a&gt; for members to sign in. IndieAuth, to put it in simple words&lt;sup&gt;&lt;a id=&#34;fnr.1&#34; class=&#34;footref&#34; href=&#34;#fn.1&#34; role=&#34;doc-backlink&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;, uses your website to sign in rather than the usual username/password combo that we see everywhere. IndieWeb is all about folks who build their own websites, so it makes sense to use your own indie website to sign in to their site.&lt;/p&gt;
&lt;p&gt;Obviously the simple words above are too simple to explain how this actually works, but the core idea is that you add a specific HTML tag (it&amp;rsquo;s called a REL tag, or a rel HTML attribute) to your main page on your website and then IndieWeb knows it&amp;rsquo;s really you.&lt;/p&gt;
&lt;p&gt;The problem I had was that I tried to sign in using my website&amp;rsquo;s URL, &lt;a href=&#34;https://www.taonaw.com&#34;&gt;www.taonaw.com&lt;/a&gt;, instead of taonaw.com. I wanted to use the www, because that&amp;rsquo;s the actual website, right? World Wide Web and all of that?&lt;/p&gt;
&lt;p&gt;Ehh. Not quite. Everything gets complicated when you look a bit deeper. The www part is what&amp;rsquo;s called a subdomain&lt;sup&gt;&lt;a id=&#34;fnr.2&#34; class=&#34;footref&#34; href=&#34;#fn.2&#34; role=&#34;doc-backlink&#34;&gt;2&lt;/a&gt;&lt;/sup&gt;, and it&amp;rsquo;s not really the website. The website is at the root domain; in my case, it&amp;rsquo;s taonaw.com. When you register your own domain, you essentially &lt;em&gt;forward&lt;/em&gt; people from &lt;a href=&#34;https://www.whatever.com&#34;&gt;www.whatever.com&lt;/a&gt; to whatever.com. Your browser does it in a second, so you don&amp;rsquo;t even realize it, but for IndieAuth, there&amp;rsquo;s no website at &lt;a href=&#34;https://www.whatever.com&#34;&gt;www.whatever.com&lt;/a&gt;, because well, there isn&amp;rsquo;t.&lt;/p&gt;
&lt;p&gt;What was interesting was the way Claude proved it to me. It suggested using curl, a command we&amp;rsquo;ve all seen thousands of times around the internet, to get this information. Or, specifically: &lt;code&gt;curl -sI https://www.taonaw.com&lt;/code&gt; which will show a few things (the index of the URL), but particularly &lt;code&gt;location: https://taonaw.com/&lt;/code&gt;, where it redirects to.&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Huh?&amp;rdquo; I asked myself, &amp;ldquo;Isn&amp;rsquo;t curl used when you want to download something?&amp;rdquo; Well, yes, sure. That, and as it turns out, many other things.&lt;/p&gt;
&lt;p&gt;I got curious (I don&amp;rsquo;t have anything much better to do at four in the morning when I can&amp;rsquo;t sleep) and went to read about curl. Turns out it has quite a &lt;a href=&#34;https://curl.se/docs/history.html&#34;&gt;history&lt;/a&gt;, a &lt;a href=&#34;https://curl.se&#34;&gt;website&lt;/a&gt;, and a lot of bait-click tutorials on YouTube. It&amp;rsquo;s one of those things I always knew about but never explored.&lt;/p&gt;
&lt;h3 id=&#34;footnotes&#34;&gt;Footnotes&lt;/h3&gt;
&lt;p&gt;&lt;sup&gt;&lt;a id=&#34;fn.1&#34; href=&#34;#fnr.1&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; : My simple words here are too simple. There is a lot going on behind the scenes, and I don&amp;rsquo;t have a good grasp of it yet myself, actually. Learning in progress. IndieAuth is based on OAuth, which is the commercial brand that usually comes with OpenID, which is all the &amp;ldquo;sign in with Google/Apple/Facebook/Whatever&amp;rdquo; stuff you usually see.&lt;/p&gt;
&lt;p&gt;&lt;sup&gt;&lt;a id=&#34;fn.2&#34; href=&#34;#fnr.2&#34;&gt;2&lt;/a&gt;&lt;/sup&gt; : See the above, same here. There&amp;rsquo;s an A record and a CNAME record when you register a domain, and I remember I knew more about them at one point when I registered the domain. A record points to the actual IP, and a CNAME points to a subdomain (the www, but it can also be blog.website.com, or whatever you&amp;rsquo;d like).&lt;/p&gt;
</description>
      <source:markdown>Yesterday early in the morning, with the help of Claude, I finally figured out what prevented me from logging into indieweb.org. It was something stupid really, one of those things that most people who register their own domains will probably understand.

IndieWeb uses [IndieAuth](https://indieweb.org/IndieAuth) for members to sign in. IndieAuth, to put it in simple words&lt;sup&gt;&lt;a id=&#34;fnr.1&#34; class=&#34;footref&#34; href=&#34;#fn.1&#34; role=&#34;doc-backlink&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;, uses your website to sign in rather than the usual username/password combo that we see everywhere. IndieWeb is all about folks who build their own websites, so it makes sense to use your own indie website to sign in to their site.

Obviously the simple words above are too simple to explain how this actually works, but the core idea is that you add a specific HTML tag (it&#39;s called a REL tag, or a rel HTML attribute) to your main page on your website and then IndieWeb knows it&#39;s really you.

The problem I had was that I tried to sign in using my website&#39;s URL, www.taonaw.com, instead of taonaw.com. I wanted to use the www, because that&#39;s the actual website, right? World Wide Web and all of that?

Ehh. Not quite. Everything gets complicated when you look a bit deeper. The www part is what&#39;s called a subdomain&lt;sup&gt;&lt;a id=&#34;fnr.2&#34; class=&#34;footref&#34; href=&#34;#fn.2&#34; role=&#34;doc-backlink&#34;&gt;2&lt;/a&gt;&lt;/sup&gt;, and it&#39;s not really the website. The website is at the root domain; in my case, it&#39;s taonaw.com. When you register your own domain, you essentially *forward* people from www.whatever.com to whatever.com. Your browser does it in a second, so you don&#39;t even realize it, but for IndieAuth, there&#39;s no website at www.whatever.com, because well, there isn&#39;t.

What was interesting was the way Claude proved it to me. It suggested using curl, a command we&#39;ve all seen thousands of times around the internet, to get this information. Or, specifically: `curl -sI https://www.taonaw.com` which will show a few things (the index of the URL), but particularly `location: https://taonaw.com/`, where it redirects to.

&#34;Huh?&#34; I asked myself, &#34;Isn&#39;t curl used when you want to download something?&#34; Well, yes, sure. That, and as it turns out, many other things.

I got curious (I don&#39;t have anything much better to do at four in the morning when I can&#39;t sleep) and went to read about curl. Turns out it has quite a [history](https://curl.se/docs/history.html), a [website](https://curl.se), and a lot of bait-click tutorials on YouTube. It&#39;s one of those things I always knew about but never explored.


### Footnotes

&lt;sup&gt;&lt;a id=&#34;fn.1&#34; href=&#34;#fnr.1&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; : My simple words here are too simple. There is a lot going on behind the scenes, and I don&#39;t have a good grasp of it yet myself, actually. Learning in progress. IndieAuth is based on OAuth, which is the commercial brand that usually comes with OpenID, which is all the &#34;sign in with Google/Apple/Facebook/Whatever&#34; stuff you usually see.

&lt;sup&gt;&lt;a id=&#34;fn.2&#34; href=&#34;#fnr.2&#34;&gt;2&lt;/a&gt;&lt;/sup&gt; : See the above, same here. There&#39;s an A record and a CNAME record when you register a domain, and I remember I knew more about them at one point when I registered the domain. A record points to the actual IP, and a CNAME points to a subdomain (the www, but it can also be blog.website.com, or whatever you&#39;d like).
</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/07/10/is-there-a-rule-somewhere.html</link>
      <pubDate>Fri, 10 Jul 2026 10:30:41 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/10/is-there-a-rule-somewhere.html</guid>
      <description>&lt;p&gt;Is there a rule somewhere that says that if half your workday is spent in meetings, you can&amp;rsquo;t be expected to produce a whole day&amp;rsquo;s work? Just makes sense, right?&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;d go further and say, you can&amp;rsquo;t even do half a day of work after that. Meetings mean:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Can&amp;rsquo;t take a break (You have to mute yourself taking a piss, jeez)&lt;/li&gt;
&lt;li&gt;Have to keep notes and track what is being said (unlike emails which you can come back to)&lt;/li&gt;
&lt;li&gt;Have to follow up later on new issues that are becoming emails&amp;hellip;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Yes, they&amp;rsquo;re needed. But oh boy.
Now, if I could get a cent from anyone who agrees with me&amp;hellip; 😆&lt;/p&gt;
</description>
      <source:markdown>Is there a rule somewhere that says that if half your workday is spent in meetings, you can&#39;t be expected to produce a whole day&#39;s work? Just makes sense, right?

I&#39;d go further and say, you can&#39;t even do half a day of work after that. Meetings mean:

- Can&#39;t take a break (You have to mute yourself taking a piss, jeez)
- Have to keep notes and track what is being said (unlike emails which you can come back to)
- Have to follow up later on new issues that are becoming emails...

Yes, they&#39;re needed. But oh boy. 
Now, if I could get a cent from anyone who agrees with me... 😆
</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/07/09/two-quick-apps-im-trying.html</link>
      <pubDate>Thu, 09 Jul 2026 17:22:00 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/09/two-quick-apps-im-trying.html</guid>
      <description>&lt;p&gt;Two quick apps I&amp;rsquo;m trying to write about, but I keep getting pulled away:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href=&#34;https://www.crucialtracks.org&#34;&gt;Crucial Tracks&lt;/a&gt;:&lt;/strong&gt; You saw me testing here on the blog. Found out about this thanks to &lt;a href=&#34;https://amerpie.lol&#34;&gt;Lou Plummer&lt;/a&gt;. It&amp;rsquo;s a slow-paced social network/microblogging network where you can write about your favorite songs.&lt;/p&gt;
&lt;p&gt;The service offers a quick prompt for the day (&amp;ldquo;what song makes you think of your best friend?&amp;rdquo; or &amp;ldquo;a song you used to listen to growing up?&amp;rdquo; etc.) combined with a quick search that finds the song with the artwork of the album. This is federated and free, which means it plays nice with the IndieWeb (that&amp;rsquo;s us, if you read this on your RSS feed) and offers a bunch of other options for embedding and playing directly from streaming services.&lt;/p&gt;
&lt;p&gt;I already have it &lt;a href=&#34;https://www.crucialtracks.org/blog/publishing-with-micropub/&#34;&gt;integrated with Micro.blog using Micropub&lt;/a&gt;, which they also support now.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href=&#34;https://www.moments.im&#34;&gt;Moments&lt;/a&gt;:&lt;/strong&gt; Think of &lt;a href=&#34;https://glass.photo/&#34;&gt;Glass&lt;/a&gt;, but a free and less &amp;ldquo;meant for serious photographers&amp;rdquo; kind of platform. Not that you &lt;em&gt;can&amp;rsquo;t&lt;/em&gt; be a serious photographer on it, but it just welcomes everyone. The idea is to blog through your photos and tell a story.&lt;/p&gt;
&lt;p&gt;I &lt;a href=&#34;https://taonaw.com/2026/06/16/moments-looks-good-from-peter.html&#34;&gt;mentioned&lt;/a&gt; it briefly, and sadly didn&amp;rsquo;t get the chance to get around to it (photos require more editing and playing around with than a quick post about a song), but it looks polished, and the guy behind it, Peter, reaches out to new folks to help them out at these early stages. Didn&amp;rsquo;t reach out to Peter yet to ask about IndieWeb support, but I will try to.&lt;/p&gt;
</description>
      <source:markdown>Two quick apps I&#39;m trying to write about, but I keep getting pulled away:

**[Crucial Tracks](https://www.crucialtracks.org):** You saw me testing here on the blog. Found out about this thanks to [Lou Plummer](https://amerpie.lol). It&#39;s a slow-paced social network/microblogging network where you can write about your favorite songs.

The service offers a quick prompt for the day (&#34;what song makes you think of your best friend?&#34; or &#34;a song you used to listen to growing up?&#34; etc.) combined with a quick search that finds the song with the artwork of the album. This is federated and free, which means it plays nice with the IndieWeb (that&#39;s us, if you read this on your RSS feed) and offers a bunch of other options for embedding and playing directly from streaming services.

I already have it [integrated with Micro.blog using Micropub](https://www.crucialtracks.org/blog/publishing-with-micropub/), which they also support now.

**[Moments](https://www.moments.im):** Think of [Glass](https://glass.photo/), but a free and less &#34;meant for serious photographers&#34; kind of platform. Not that you *can&#39;t* be a serious photographer on it, but it just welcomes everyone. The idea is to blog through your photos and tell a story.

I [mentioned](https://taonaw.com/2026/06/16/moments-looks-good-from-peter.html) it briefly, and sadly didn&#39;t get the chance to get around to it (photos require more editing and playing around with than a quick post about a song), but it looks polished, and the guy behind it, Peter, reaches out to new folks to help them out at these early stages. Didn&#39;t reach out to Peter yet to ask about IndieWeb support, but I will try to.

</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/07/09/is-it-friday-yet.html</link>
      <pubDate>Thu, 09 Jul 2026 12:30:46 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/09/is-it-friday-yet.html</guid>
      <description>&lt;p&gt;Is it Friday yet?&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/ec43f897d9.jpg&#34; width=&#34;546&#34; height=&#34;600&#34; alt=&#34;A bald man with a beard is wearing dark sunglasses, a black t-shirt with a graphic design, and large black headphones around his neck.&#34;&gt;
</description>
      <source:markdown>Is it Friday yet?



&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/ec43f897d9.jpg&#34; width=&#34;546&#34; height=&#34;600&#34; alt=&#34;A bald man with a beard is wearing dark sunglasses, a black t-shirt with a graphic design, and large black headphones around his neck.&#34;&gt;
</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/07/08/has-anyone-figured-out-how.html</link>
      <pubDate>Wed, 08 Jul 2026 18:50:46 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/08/has-anyone-figured-out-how.html</guid>
      <description>&lt;p&gt;Has anyone figured out how to sign into Indieweb with microblog, via IndieAuth?
When I use my website URL, I get forwarded to micro.blog&amp;rsquo;s platform, with a message that &amp;ldquo;I&amp;rsquo;m already signed in as JTR.&amp;rdquo; What am I supposed to put in there?&lt;/p&gt;
&lt;p&gt;Appreciate if anyone has it written down somewhere.&lt;/p&gt;
</description>
      <source:markdown>Has anyone figured out how to sign into Indieweb with microblog, via IndieAuth? 
When I use my website URL, I get forwarded to micro.blog&#39;s platform, with a message that &#34;I&#39;m already signed in as JTR.&#34; What am I supposed to put in there? 

Appreciate if anyone has it written down somewhere.
</source:markdown>
    </item>
    
    <item>
      <title>Portrait of a Lady on Fire, 2019 - ★★★★★</title>
      <link>https://taonaw.com/2026/07/06/portrait-of-a-lady-on.html</link>
      <pubDate>Mon, 06 Jul 2026 08:17:03 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/06/portrait-of-a-lady-on.html</guid>
      <description>&lt;p&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/460830-portrait-of-a-lady-on-fire-0-600-0-900-crop.jpg&#34;/&gt;&lt;/p&gt; &lt;p&gt;Some of the best movies I&#39;ve seen earned four or four and a half stars because I wanted to reserve the five-star rating for the perfect movie. You know, the one that will change how I think of movies, something with a unique and amazing story I haven&#39;t heard before - a true masterpiece.&lt;/p&gt;&lt;p&gt;I was content with this choice ever since I started reviewing movies on Letterboxd, until I watched this movie last night.&lt;/p&gt;&lt;p&gt;When I woke up, this movie was the first thing I thought about. It&#39;s not that I can&#39;t get it out of my head - I don&#39;t &lt;i&gt;want&lt;/i&gt; it to get out of my head. I don&#39;t want to start my work week, yet another Monday, after watching it. I want to explain why, but I can&#39;t. I guess going to make a few futile, miserable attempts. Where the hell do I even start? Maybe I shouldn&#39;t.&lt;/p&gt;&lt;p&gt;Maybe I should just tell you to watch it and decide for yourself. It will click for some of you. For others, it will be just a pretty romance flick, and others yet still will just shrug and move on.&lt;/p&gt;&lt;p&gt;But I hope some of you will end up in tears. Tears that come from just feeling. Being human. Understanding an ultimate language that we just know on some level, somehow. If you believe this langauge exist above (or below) words, if you&#39;ve listened to its whisper before and nodded with confidence without full understanding on a cognitive level, then yes, maybe you will also be angry that rating systems exists and that things such as this movie need to be chopped down, broken, and shoved into a logical boxes so we can communicate to each other in conceptional way.&lt;/p&gt;&lt;p&gt;I&#39;m not trying to write a dramatic introduction for this film on purpose. It&#39;s a good movie, sure. The cinematography is amazing; each shot is a lesson in lighting, angles, and colors. The audio is rich with background details you can pick up without taking away from the main dialogue, whether it&#39;s ocean waves, birds, or, somehow, even the air itself. I&#39;d say the same for the dialogue, but I don&#39;t speak French, and as a bilingual person I know firsthand how much is lost in translation. &lt;/p&gt;&lt;p&gt;This movie, in my opinion, needs to be in the syllabus of any professor teaching film classes. I can say all of this and more, but I&#39;m butchering it. I&#39;m forcing it to be something that it&#39;s not. I&#39;m not being dramatic; I&#39;m just feeling this movie, and I wish for you to feel it too.&lt;/p&gt;&lt;p&gt;There&#39;s one moment when Marianne looks at Héloïse at the beach. Marianne, tasked with painting Héloïse without her knowledge or consent, tries to capture the details of her face so she can later secretly draw her. She looks at Héloïse&#39;s face, who&#39;s looking at the ocean; this makes Héloïse&#39;s turn to look back at Marianne, who, you realize, is &lt;i&gt;staring&lt;/i&gt; at her. Marianne immediately looks away, not wanting to get caught. That&#39;s when I said my first &#34;wow&#34; to myself watching this film.&lt;/p&gt;&lt;p&gt;This scene is captured from a side angle that allows you to see one&#39;s face only when the other turns hers. It&#39;s a thoughtful shot and a genius storytelling taking place without a single word. &lt;/p&gt;&lt;p&gt;Much later, when the two lay in bed and ask each other when they knew they wanted to kiss each other, I was frustrated they didn&#39;t bring this moment up, but I realized that they probably didn&#39;t know that when it happened - not yet.&lt;/p&gt;&lt;p&gt;The movie is built on moments like this, on the constant play between the layers of what we (and they - Marianne and Héloïse, and possibly Sophie) know needs to happen and what we want to happen. It could make the movie sad, yes, but the fact that they met and managed to spend precious few days together doesn&#39;t let sadness linger. Further, it&#39;s not the time they spent together, but what they created together. The memory that will be cherished forever, and no sadness (or arranged marriage) can take away. It&#39;s not a cliché, not in this film. You see it happen toward the end, after... well. I will let you see for yourself.&lt;/p&gt;&lt;p&gt;And there&#39;s so much more. Everything is a symbol, or a metaphor, or a sign. One of the most obvious ones is when Héloïse&#39;s dress catches on fire, and she notices it, but can&#39;t avert her eyes from Marianne; and Marianne, who watches Héloïse&#39;s dress catch on fire, does not respond either, because she can&#39;t; she&#39;s locked in the same magnetic force field that paralyzes them both. It&#39;s a beautiful scene (does this movie have any &lt;i&gt;bad&lt;/i&gt; scenes? I don&#39;t think so). &lt;/p&gt;&lt;p&gt;I will need to watch this movie again (and again?) to catch more of these moments, but I don&#39;t know that I can, now that I know how daunting it is. Simply put, It&#39;s not the kind of movie you watch on a Sunday night before another workday Monday.&lt;/p&gt;
</description>
      <source:markdown>&lt;p&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/460830-portrait-of-a-lady-on-fire-0-600-0-900-crop.jpg&#34;/&gt;&lt;/p&gt; &lt;p&gt;Some of the best movies I&#39;ve seen earned four or four and a half stars because I wanted to reserve the five-star rating for the perfect movie. You know, the one that will change how I think of movies, something with a unique and amazing story I haven&#39;t heard before - a true masterpiece.&lt;/p&gt;&lt;p&gt;I was content with this choice ever since I started reviewing movies on Letterboxd, until I watched this movie last night.&lt;/p&gt;&lt;p&gt;When I woke up, this movie was the first thing I thought about. It&#39;s not that I can&#39;t get it out of my head - I don&#39;t &lt;i&gt;want&lt;/i&gt; it to get out of my head. I don&#39;t want to start my work week, yet another Monday, after watching it. I want to explain why, but I can&#39;t. I guess going to make a few futile, miserable attempts. Where the hell do I even start? Maybe I shouldn&#39;t.&lt;/p&gt;&lt;p&gt;Maybe I should just tell you to watch it and decide for yourself. It will click for some of you. For others, it will be just a pretty romance flick, and others yet still will just shrug and move on.&lt;/p&gt;&lt;p&gt;But I hope some of you will end up in tears. Tears that come from just feeling. Being human. Understanding an ultimate language that we just know on some level, somehow. If you believe this langauge exist above (or below) words, if you&#39;ve listened to its whisper before and nodded with confidence without full understanding on a cognitive level, then yes, maybe you will also be angry that rating systems exists and that things such as this movie need to be chopped down, broken, and shoved into a logical boxes so we can communicate to each other in conceptional way.&lt;/p&gt;&lt;p&gt;I&#39;m not trying to write a dramatic introduction for this film on purpose. It&#39;s a good movie, sure. The cinematography is amazing; each shot is a lesson in lighting, angles, and colors. The audio is rich with background details you can pick up without taking away from the main dialogue, whether it&#39;s ocean waves, birds, or, somehow, even the air itself. I&#39;d say the same for the dialogue, but I don&#39;t speak French, and as a bilingual person I know firsthand how much is lost in translation. &lt;/p&gt;&lt;p&gt;This movie, in my opinion, needs to be in the syllabus of any professor teaching film classes. I can say all of this and more, but I&#39;m butchering it. I&#39;m forcing it to be something that it&#39;s not. I&#39;m not being dramatic; I&#39;m just feeling this movie, and I wish for you to feel it too.&lt;/p&gt;&lt;p&gt;There&#39;s one moment when Marianne looks at Héloïse at the beach. Marianne, tasked with painting Héloïse without her knowledge or consent, tries to capture the details of her face so she can later secretly draw her. She looks at Héloïse&#39;s face, who&#39;s looking at the ocean; this makes Héloïse&#39;s turn to look back at Marianne, who, you realize, is &lt;i&gt;staring&lt;/i&gt; at her. Marianne immediately looks away, not wanting to get caught. That&#39;s when I said my first &#34;wow&#34; to myself watching this film.&lt;/p&gt;&lt;p&gt;This scene is captured from a side angle that allows you to see one&#39;s face only when the other turns hers. It&#39;s a thoughtful shot and a genius storytelling taking place without a single word. &lt;/p&gt;&lt;p&gt;Much later, when the two lay in bed and ask each other when they knew they wanted to kiss each other, I was frustrated they didn&#39;t bring this moment up, but I realized that they probably didn&#39;t know that when it happened - not yet.&lt;/p&gt;&lt;p&gt;The movie is built on moments like this, on the constant play between the layers of what we (and they - Marianne and Héloïse, and possibly Sophie) know needs to happen and what we want to happen. It could make the movie sad, yes, but the fact that they met and managed to spend precious few days together doesn&#39;t let sadness linger. Further, it&#39;s not the time they spent together, but what they created together. The memory that will be cherished forever, and no sadness (or arranged marriage) can take away. It&#39;s not a cliché, not in this film. You see it happen toward the end, after... well. I will let you see for yourself.&lt;/p&gt;&lt;p&gt;And there&#39;s so much more. Everything is a symbol, or a metaphor, or a sign. One of the most obvious ones is when Héloïse&#39;s dress catches on fire, and she notices it, but can&#39;t avert her eyes from Marianne; and Marianne, who watches Héloïse&#39;s dress catch on fire, does not respond either, because she can&#39;t; she&#39;s locked in the same magnetic force field that paralyzes them both. It&#39;s a beautiful scene (does this movie have any &lt;i&gt;bad&lt;/i&gt; scenes? I don&#39;t think so). &lt;/p&gt;&lt;p&gt;I will need to watch this movie again (and again?) to catch more of these moments, but I don&#39;t know that I can, now that I know how daunting it is. Simply put, It&#39;s not the kind of movie you watch on a Sunday night before another workday Monday.&lt;/p&gt;
</source:markdown>
    </item>
    
    <item>
      <title>🎶 Creep: Stone Temple Pilots</title>
      <link>https://taonaw.com/2026/07/04/creepstone-temple-pilots-when-i.html</link>
      <pubDate>Sat, 04 Jul 2026 12:27:47 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/04/creepstone-temple-pilots-when-i.html</guid>
      <description>&lt;p&gt;When I was in college and got a dorm room through a scholarship, I had a friend who dealt more closely with the grunge of life. We were both part of the staff of the college&amp;rsquo;s newspaper, often working long nights that stretched into tired mornings of drip coffee and cheap Chinese food.&lt;/p&gt;
&lt;p&gt;When it was time to head back to my room, KU would go to the parking garage, where he&amp;rsquo;d sleep in his car, or if it wasn&amp;rsquo;t too late (and by that I mean to early in the morning), in the office under one of the desks. Going back home was a long drive to South Jersey, and since he was ready to crash anyway at this point, he shrugged it off as a better option. At one point, I remember someone opened a drawer and saw his toothpaste and toothbrush and people got worried that he had nowhere to go. I guess he understood it was &amp;ldquo;weird,&amp;rdquo; but to him it was just a thing to do. No biggie.&lt;/p&gt;
&lt;p&gt;In college, KU was tough but approachable. He quickly became one of my best friends, whom I always respected. He was a true-to-life example of &amp;ldquo;when life gives you lemons, make lemonade.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;He was so good at it that he didn&amp;rsquo;t stop to perceive the lemons as lemons; he always saw the lemonade he could make. An excellent writer with a sharp mind, he worked his way up to the head of his fraternity, landed an internship at NASA, and became an astrophysicist.&lt;/p&gt;
&lt;p&gt;STP was one of his favorite bands, and I imagine Creep was one of his favorite songs. I didn&amp;rsquo;t know this until I researched the song today, but according to Scott Weiland, Creep is about &amp;ldquo;the idea of being a young person somewhere, caught between still being a kid and becoming a young man. It&amp;rsquo;s that youth apathy, that second-guessing yourself, not feeling like you fit in.&amp;rdquo; Wow. Nailed it. I don&amp;rsquo;t know whether KU knew that, but this song was written for him:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I&amp;rsquo;m half the man I used to be&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;(For as I feel as the dawn, it fades to gray)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Well, I&amp;rsquo;m half the man I used to be&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;(For as I feel as the dawn, it fades to gray)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&amp;rsquo;m going to write him an email.&lt;/p&gt;
&lt;p&gt;View entry: &lt;a href=&#34;https://www.crucialtracks.org/profile/jtr/20260704&#34;&gt;www.crucialtracks.org/profile/j&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
      <source:markdown>When I was in college and got a dorm room through a scholarship, I had a friend who dealt more closely with the grunge of life. We were both part of the staff of the college&#39;s newspaper, often working long nights that stretched into tired mornings of drip coffee and cheap Chinese food.

When it was time to head back to my room, KU would go to the parking garage, where he&#39;d sleep in his car, or if it wasn&#39;t too late (and by that I mean to early in the morning), in the office under one of the desks. Going back home was a long drive to South Jersey, and since he was ready to crash anyway at this point, he shrugged it off as a better option. At one point, I remember someone opened a drawer and saw his toothpaste and toothbrush and people got worried that he had nowhere to go. I guess he understood it was &#34;weird,&#34; but to him it was just a thing to do. No biggie.

In college, KU was tough but approachable. He quickly became one of my best friends, whom I always respected. He was a true-to-life example of &#34;when life gives you lemons, make lemonade.&#34; 

He was so good at it that he didn&#39;t stop to perceive the lemons as lemons; he always saw the lemonade he could make. An excellent writer with a sharp mind, he worked his way up to the head of his fraternity, landed an internship at NASA, and became an astrophysicist.

STP was one of his favorite bands, and I imagine Creep was one of his favorite songs. I didn&#39;t know this until I researched the song today, but according to Scott Weiland, Creep is about &#34;the idea of being a young person somewhere, caught between still being a kid and becoming a young man. It&#39;s that youth apathy, that second-guessing yourself, not feeling like you fit in.&#34; Wow. Nailed it. I don&#39;t know whether KU knew that, but this song was written for him:

&gt; I&#39;m half the man I used to be

&gt; (For as I feel as the dawn, it fades to gray)

&gt; Well, I&#39;m half the man I used to be

&gt; (For as I feel as the dawn, it fades to gray)

I&#39;m going to write him an email.

View entry: [www.crucialtracks.org/profile/j...](https://www.crucialtracks.org/profile/jtr/20260704)
</source:markdown>
    </item>
    
    <item>
      <title>Crucial Track for July 2, 2026</title>
      <link>https://taonaw.com/2026/07/02/crucial-track-for-july.html</link>
      <pubDate>Thu, 02 Jul 2026 22:38:16 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/02/crucial-track-for-july.html</guid>
      <description>&lt;p&gt;&lt;em&gt;&#34;Rooster&#34; by Alice In Chains&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;audio controls&gt;&lt;source src=&#34;https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/14/d6/76/14d6768a-feda-4317-fdb2-d15754317160/mzaf_18229668378833917078.plus.aac.p.m4a&#34; type=&#34;audio/mp4&#34;&gt;Your browser does not support the audio element.&lt;/source&gt;&lt;/audio&gt;&lt;/p&gt;
&lt;p&gt;I&#39;m testing this out. What a great idea. Here&#39;s a song I haven&#39;t listened to in a while.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.crucialtracks.org/profile/jtr&#34;&gt;View JTR&#39;s Crucial Tracks profile&lt;/a&gt;&lt;/p&gt;
</description>
      <source:markdown>&lt;p&gt;&lt;em&gt;&#34;Rooster&#34; by Alice In Chains&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;audio controls&gt;&lt;source src=&#34;https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/14/d6/76/14d6768a-feda-4317-fdb2-d15754317160/mzaf_18229668378833917078.plus.aac.p.m4a&#34; type=&#34;audio/mp4&#34;&gt;Your browser does not support the audio element.&lt;/source&gt;&lt;/audio&gt;&lt;/p&gt;
&lt;p&gt;I&#39;m testing this out. What a great idea. Here&#39;s a song I haven&#39;t listened to in a while.&lt;/p&gt;

&lt;p&gt;&lt;a href=&#34;https://www.crucialtracks.org/profile/jtr&#34;&gt;View JTR&#39;s Crucial Tracks profile&lt;/a&gt;&lt;/p&gt;
</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/07/02/someone-posted-my-little-rant.html</link>
      <pubDate>Thu, 02 Jul 2026 08:49:37 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/02/someone-posted-my-little-rant.html</guid>
      <description>&lt;p&gt;Someone posted my little rant about restarting my Mac on Hacker News,
and it went viral. As in more than 10,000 hits. 10&amp;hellip; thousand&amp;hellip; I don&amp;rsquo;t even know what this number means.&lt;/p&gt;
&lt;p&gt;To be fair, it&amp;rsquo;s mostly the discussion taking place (over 300 comments over there) but.. still&amp;hellip; whattttt???&lt;/p&gt;
</description>
      <source:markdown>Someone posted my little rant about restarting my Mac on Hacker News, 
and it went viral. As in more than 10,000 hits. 10... thousand... I don&#39;t even know what this number means.

To be fair, it&#39;s mostly the discussion taking place (over 300 comments over there) but.. still... whattttt???
</source:markdown>
    </item>
    
    <item>
      <title>Bloggers Should Shake Fists at Clouds and Say the Obvious</title>
      <link>https://taonaw.com/2026/07/02/bloggers-should-shake-fists-at.html</link>
      <pubDate>Thu, 02 Jul 2026 08:00:51 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/07/02/bloggers-should-shake-fists-at.html</guid>
      <description>&lt;p&gt;Jim writes &lt;a href=&#34;https://blog.jim-nielsen.com/2026/blogging-stating-the-obvious/&#34;&gt;how blogging can feel like being the child in The Emperor&amp;rsquo;s New Clothes&lt;/a&gt;, a feeling I often encounter myself:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;You feel like someone gone mad: &amp;ldquo;Is anyone else seeing the same thing I&amp;rsquo;m seeing? And we&amp;rsquo;re just ok with this?&amp;rdquo;&lt;/p&gt;
&lt;p&gt;Very often, those are the best posts I read from others.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Indeed.&lt;/p&gt;
&lt;p&gt;Back in college when &lt;a href=&#34;https://taonaw.com/2024/02/29/i-must-dig.html&#34;&gt;we used to run a newspaper&lt;/a&gt;, I had a column about the Middle East, and I had a blog about the same thing. At that time, I was a journalism minor. We had a teacher whom I feel weird calling a professor, as he didn&amp;rsquo;t have a PhD or even a doctorate; he was simply a professional journalist. He used to say journalism was dying, that he was one of the last dinosaurs, and that he advised me to &amp;ldquo;stay the hell away from this profession&amp;rdquo; if I cared about my soul.&lt;/p&gt;
&lt;p&gt;Much of the energy I feel in Jim&amp;rsquo;s posts stems from the same place. We don&amp;rsquo;t bother with well-known facts (like ads flying in our faces left and right, as his article mentioned on Daring Fireball) because we all know them, so what&amp;rsquo;s the point?&lt;/p&gt;
&lt;p&gt;But shrugging and moving on is accepting the crazy as our new reality. Yes, there was a time when Google was actually good, without ads (can you believe it?); paywalls were fewer and belonged to big publications, which charged for their printed newspapers anyway.&lt;/p&gt;
&lt;p&gt;I already shook my fist at some well-known clouds in this blog. The state of owning movies and books and encouraging piracy. Dating in the age of dating apps. And of course, social media being a hoze of recycled crap that has little to do with facts, if at all.&lt;/p&gt;
&lt;p&gt;I feel like Jim captures the essence of this, and I&amp;rsquo;m in agreement. I promise to keep being a grumpy old man yelling at clouds then.&lt;/p&gt;
</description>
      <source:markdown>Jim writes [how blogging can feel like being the child in The Emperor&#39;s New Clothes](https://blog.jim-nielsen.com/2026/blogging-stating-the-obvious/), a feeling I often encounter myself:

&gt; You feel like someone gone mad: &#34;Is anyone else seeing the same thing I&#39;m seeing? And we&#39;re just ok with this?&#34;
&gt; 
&gt; Very often, those are the best posts I read from others.

Indeed.

Back in college when [we used to run a newspaper](https://taonaw.com/2024/02/29/i-must-dig.html), I had a column about the Middle East, and I had a blog about the same thing. At that time, I was a journalism minor. We had a teacher whom I feel weird calling a professor, as he didn&#39;t have a PhD or even a doctorate; he was simply a professional journalist. He used to say journalism was dying, that he was one of the last dinosaurs, and that he advised me to &#34;stay the hell away from this profession&#34; if I cared about my soul.

Much of the energy I feel in Jim&#39;s posts stems from the same place. We don&#39;t bother with well-known facts (like ads flying in our faces left and right, as his article mentioned on Daring Fireball) because we all know them, so what&#39;s the point?

But shrugging and moving on is accepting the crazy as our new reality. Yes, there was a time when Google was actually good, without ads (can you believe it?); paywalls were fewer and belonged to big publications, which charged for their printed newspapers anyway.

I already shook my fist at some well-known clouds in this blog. The state of owning movies and books and encouraging piracy. Dating in the age of dating apps. And of course, social media being a hoze of recycled crap that has little to do with facts, if at all.

I feel like Jim captures the essence of this, and I&#39;m in agreement. I promise to keep being a grumpy old man yelling at clouds then.
</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/06/30/you-know-how-you-have.html</link>
      <pubDate>Tue, 30 Jun 2026 11:55:35 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/06/30/you-know-how-you-have.html</guid>
      <description>&lt;p&gt;You know how you have a busy day, task after task, meeting after meeting, and your spouse/partner/significant other (whatever you have) messages you with a single line or a short video, and you laugh and everything seems easy and bearable again&amp;hellip;?&lt;/p&gt;
&lt;p&gt;I might be grumpy, but I&amp;rsquo;m also thankful 😆&lt;/p&gt;
</description>
      <source:markdown>You know how you have a busy day, task after task, meeting after meeting, and your spouse/partner/significant other (whatever you have) messages you with a single line or a short video, and you laugh and everything seems easy and bearable again...? 

I might be grumpy, but I&#39;m also thankful 😆
</source:markdown>
    </item>
    
    <item>
      <title>My Inspiration Checklist for Writing Blog Posts </title>
      <link>https://taonaw.com/2026/06/29/my-inspiration-checklist-for-writing.html</link>
      <pubDate>Mon, 29 Jun 2026 16:56:39 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/06/29/my-inspiration-checklist-for-writing.html</guid>
      <description>&lt;p&gt;My blog maintenance/inspiration template has gone through a couple of changes since &lt;a href=&#34;https://taonaw.com/2025/05/04/a-blog-check-list.html&#34;&gt;I first created it&lt;/a&gt;, and while &lt;a href=&#34;https://taonaw.com/2026/03/20/a-good-day-to-have.html&#34;&gt;I mentioned the new list&lt;/a&gt; recently, I didn&amp;rsquo;t really explain what the different items are. Why not expand on it?&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m a checklist guy. I like to have a good checklist for anything I do more than a few times. Some of the items don&amp;rsquo;t fit nicely in a category (and a few come up twice), but, it does its job and gets me unstuck (or just out of boredom) often.&lt;/p&gt;
&lt;p&gt;I have my checklist in front of me right now, so let me copy-paste it and then explain below. Here we go:&lt;/p&gt;
&lt;h3 id=&#34;maintenance&#34;&gt;Maintenance&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; check blog email&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; tinylytics
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; most popular posts in the last month&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Insights can be interesting&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; new webmentions&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; &amp;ldquo;On this day&amp;rdquo; if exists:
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; check for typos&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; check for links/broken images/missing emojis&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; check plugins (updates?)&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; delete old bookmarks (Micro.blog)&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; photo page (add 📷 to posts)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Checking emails&lt;/strong&gt; I get from other bloggers has become a routine, so it&amp;rsquo;s mostly something I can remove. In the past, emails were infrequent and I needed a reminder. I leave it here because it&amp;rsquo;s always nice to open my blog&amp;rsquo;s email and see what discussions I&amp;rsquo;ve had with others.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href=&#34;https://tinylytics.app/auth/sign_in&#34;&gt;Tinylytics&lt;/a&gt;&lt;/strong&gt; is a nice and small analytics tool that gives me just the information I need. Popular posts used to be emacs/org-mode related, but that has changed lately with &lt;a href=&#34;https://bubbles.town&#34;&gt;bubbles&lt;/a&gt;, where some posts get a lot of exposure. It&amp;rsquo;s also interesting to see what gets more traction organically (without bubbles or something similar blowing those up), as I barely tend to &amp;ldquo;advertise&amp;rdquo; my posts on social media these days&lt;sup&gt;&lt;a id=&#34;fnr.1&#34; class=&#34;footref&#34; href=&#34;#fn.1&#34; role=&#34;doc-backlink&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Webmentions&lt;/strong&gt; is something I keep forgetting to check. Micro.blog has those built-in (though if I&amp;rsquo;m not mistaken you do need to turn them on somehow in your theme). A few months back, I learned that there&amp;rsquo;s someone on lemmy.world who seems to link to my post on a regular basis. I don&amp;rsquo;t know who because that requires logging in, and my old account wouldn&amp;rsquo;t work, and I get too lazy to sign to yet another social network&amp;hellip; so if you happen to be that person, hey! Say hello if you&amp;rsquo;d like. Sometimes other bloggers end up here too, like &lt;a href=&#34;https://www.baty.net/&#34;&gt;Jack&lt;/a&gt; and &lt;a href=&#34;https://danq.me/&#34;&gt;Dan&lt;/a&gt;, who link to a post of mine directly. Thanks guys!&lt;/p&gt;
&lt;p&gt;My &lt;strong&gt;&lt;a href=&#34;https://taonaw.com/2024/08/10/on-this-day.html&#34;&gt;On This Day&lt;/a&gt;&lt;/strong&gt; process is something I explained before - an opportunity to check past posts for errors and fix those if needed.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Checking for plugins&lt;/strong&gt; doesn&amp;rsquo;t happen too often (it&amp;rsquo;s not a big deal if I&amp;rsquo;m a version or two behind; this is not WordPress). As new updates are introduced, I try to go through them carefully as some can break the website at times.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Bookmarks&lt;/strong&gt; is Micro.blog&amp;rsquo;s &amp;ldquo;read it later&amp;rdquo; feature, which I use often. I go through the list there and delete what I&amp;rsquo;ve already read and delete old articles that I don&amp;rsquo;t need. I don&amp;rsquo;t have to do that, but I like knowing that what I have there is new and waiting for me to read, not an archive of old stuff.&lt;/p&gt;
&lt;p&gt;My blog has a &lt;strong&gt;&lt;a href=&#34;https://taonaw.com/photos/&#34;&gt;Photo page&lt;/a&gt;&lt;/strong&gt; and photos are basically automatically added when I use the 📷 icon (there&amp;rsquo;s a bit more of a process behind it that has to do with how Micro.blog works, but that&amp;rsquo;s for another time). This here is a reminder to comb through my more recent posts, give or take the last month or so, and add this icon to posts that contain photos that should end up there. I just added a couple while doing this post.&lt;/p&gt;
&lt;h3 id=&#34;inspiration&#34;&gt;Inspiration&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Check old blog for posts to grab&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Journal&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Bookmarks (in Micro.blog)&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; RSS feeds!&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Fosstodon (org-mode column)&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; BlueSky (check for Emacs, and see followers)&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Kagi small web (in browser) for sites&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Take a random picture&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href=&#34;https://master--taonaw-blog.netlify.app&#34;&gt;My old blog&lt;/a&gt;&lt;/strong&gt;, which I used to run through GitHub (and later GitLab), Hugo, and Netlify, contains posts I like to bring over to my current blog sometimes. It&amp;rsquo;s a good way to reflect and write updates as well. This is why this blog, if you go to the archive page, sometimes has only a few posts from before 2023: these older posts are manually moved over from the old site.&lt;/p&gt;
&lt;p&gt;My &lt;strong&gt;journal&lt;/strong&gt; is another good place to find posts in the making. Sometimes all I need to do is to take out a few names and specific information and make a post out of what I wrote there; at other times I need to wade through a brainstorm I&amp;rsquo;ve had to understand what the hell I was grumping about, but it&amp;rsquo;s almost always worth it. You can&amp;rsquo;t get more personal on a personal blog than this.&lt;/p&gt;
&lt;p&gt;My &lt;strong&gt;bookmarks&lt;/strong&gt; were already mentioned above, but here it&amp;rsquo;s a reminder to actually read them, instead of deleting old articles and tidying things up.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;RSS feeds&lt;/strong&gt; are too routine to be reminded of here now. I read through my RSS feeds at least once a day, bookmarking things, making notes to write emails to others&amp;hellip; there&amp;rsquo;s always someone who&amp;rsquo;s wrong (or right!) on the internet, somewhere.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Fosstodon&lt;/strong&gt; is my Mastodon server and the only social network I still like. I have dedicated columns for org-mode and digital gardens I check, and a list of some folk who post there and don&amp;rsquo;t have a blog yet (at least not that I know of).&lt;/p&gt;
&lt;p&gt;I said Mastodon is the only social network I &lt;em&gt;like&lt;/em&gt; and that remains true: &lt;strong&gt;Bluesky&lt;/strong&gt; is too angry for me and has too many &amp;ldquo;literally&amp;rdquo; and &amp;ldquo;friendly reminder&amp;rdquo; kind of passive-aggressive posts. A few folks post there that I care about, but I think it&amp;rsquo;s not going to make it when I revamp this list the next time.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Kagi Small Web&lt;/strong&gt; is pretty good, but I feel like they made it a bit &lt;em&gt;too big&lt;/em&gt; recently. Some of the blogs there tend to belong to small businesses or to people who think like businesses. Still, it&amp;rsquo;s a very good place to go and find new blogs. It&amp;rsquo;s also a good way to see how people present their blog and get inspired by CSS and themes quickly, if you keep clicking &amp;ldquo;next&amp;rdquo; for that purpose.&lt;/p&gt;
&lt;p&gt;And finally, a personal favorite: just &lt;strong&gt;snap a picture&lt;/strong&gt;. I go out of my room with my phone, look around, and take a picture - often while taking a walk. When I&amp;rsquo;m in this mindset, I don&amp;rsquo;t look for anything special - quite the opposite. I&amp;rsquo;d take a picture of ordinary things that are boring otherwise.&lt;/p&gt;
&lt;h3 id=&#34;footnotes&#34;&gt;Footnotes&lt;/h3&gt;
&lt;p&gt;&lt;sup&gt;&lt;a id=&#34;fn.1&#34; href=&#34;#fnr.1&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;: Perhaps unsurprisingly, the &amp;ldquo;second place&amp;rdquo; posts, those that are popular but not &lt;em&gt;the&lt;/em&gt; most popular, tend to be facts about my life or random &amp;ldquo;glitches&amp;rdquo; in my human programming. The more people follow me, the more popular these become, and I tend to get interested in the same kind of posts on other blogs. This is what makes us the indie web, yes?&lt;/p&gt;
</description>
      <source:markdown>My blog maintenance/inspiration template has gone through a couple of changes since [I first created it](https://taonaw.com/2025/05/04/a-blog-check-list.html), and while [I mentioned the new list](https://taonaw.com/2026/03/20/a-good-day-to-have.html) recently, I didn&#39;t really explain what the different items are. Why not expand on it?

I&#39;m a checklist guy. I like to have a good checklist for anything I do more than a few times. Some of the items don&#39;t fit nicely in a category (and a few come up twice), but, it does its job and gets me unstuck (or just out of boredom) often.

I have my checklist in front of me right now, so let me copy-paste it and then explain below. Here we go:

### Maintenance

-   [ ] check blog email
-   [ ] tinylytics
    -   [ ] most popular posts in the last month
    -   [ ] Insights can be interesting
-   [ ] new webmentions
-   [ ] &#34;On this day&#34; if exists:
    -   [ ] check for typos
    -   [ ] check for links/broken images/missing emojis
-   [ ] check plugins (updates?)
-   [ ] delete old bookmarks (Micro.blog)
-   [ ] photo page (add 📷 to posts)

**Checking emails** I get from other bloggers has become a routine, so it&#39;s mostly something I can remove. In the past, emails were infrequent and I needed a reminder. I leave it here because it&#39;s always nice to open my blog&#39;s email and see what discussions I&#39;ve had with others.

**[Tinylytics](https://tinylytics.app/auth/sign_in)** is a nice and small analytics tool that gives me just the information I need. Popular posts used to be emacs/org-mode related, but that has changed lately with [bubbles](https://bubbles.town), where some posts get a lot of exposure. It&#39;s also interesting to see what gets more traction organically (without bubbles or something similar blowing those up), as I barely tend to &#34;advertise&#34; my posts on social media these days&lt;sup&gt;&lt;a id=&#34;fnr.1&#34; class=&#34;footref&#34; href=&#34;#fn.1&#34; role=&#34;doc-backlink&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;.

**Webmentions** is something I keep forgetting to check. Micro.blog has those built-in (though if I&#39;m not mistaken you do need to turn them on somehow in your theme). A few months back, I learned that there&#39;s someone on lemmy.world who seems to link to my post on a regular basis. I don&#39;t know who because that requires logging in, and my old account wouldn&#39;t work, and I get too lazy to sign to yet another social network... so if you happen to be that person, hey! Say hello if you&#39;d like. Sometimes other bloggers end up here too, like [Jack](https://www.baty.net/) and [Dan](https://danq.me/), who link to a post of mine directly. Thanks guys!

My **[On This Day](https://taonaw.com/2024/08/10/on-this-day.html)** process is something I explained before - an opportunity to check past posts for errors and fix those if needed.

**Checking for plugins** doesn&#39;t happen too often (it&#39;s not a big deal if I&#39;m a version or two behind; this is not WordPress). As new updates are introduced, I try to go through them carefully as some can break the website at times.

**Bookmarks** is Micro.blog&#39;s &#34;read it later&#34; feature, which I use often. I go through the list there and delete what I&#39;ve already read and delete old articles that I don&#39;t need. I don&#39;t have to do that, but I like knowing that what I have there is new and waiting for me to read, not an archive of old stuff.

My blog has a **[Photo page](https://taonaw.com/photos/)** and photos are basically automatically added when I use the 📷 icon (there&#39;s a bit more of a process behind it that has to do with how Micro.blog works, but that&#39;s for another time). This here is a reminder to comb through my more recent posts, give or take the last month or so, and add this icon to posts that contain photos that should end up there. I just added a couple while doing this post.


### Inspiration

-   [ ] Check old blog for posts to grab
-   [ ] Journal
-   [ ] Bookmarks (in Micro.blog)
-   [ ] RSS feeds!
-   [ ] Fosstodon (org-mode column)
-   [ ] BlueSky (check for Emacs, and see followers)
-   [ ] Kagi small web (in browser) for sites
-   [ ] Take a random picture

**[My old blog](https://master--taonaw-blog.netlify.app)**, which I used to run through GitHub (and later GitLab), Hugo, and Netlify, contains posts I like to bring over to my current blog sometimes. It&#39;s a good way to reflect and write updates as well. This is why this blog, if you go to the archive page, sometimes has only a few posts from before 2023: these older posts are manually moved over from the old site.

My **journal** is another good place to find posts in the making. Sometimes all I need to do is to take out a few names and specific information and make a post out of what I wrote there; at other times I need to wade through a brainstorm I&#39;ve had to understand what the hell I was grumping about, but it&#39;s almost always worth it. You can&#39;t get more personal on a personal blog than this.

My **bookmarks** were already mentioned above, but here it&#39;s a reminder to actually read them, instead of deleting old articles and tidying things up.

**RSS feeds** are too routine to be reminded of here now. I read through my RSS feeds at least once a day, bookmarking things, making notes to write emails to others... there&#39;s always someone who&#39;s wrong (or right!) on the internet, somewhere.

**Fosstodon** is my Mastodon server and the only social network I still like. I have dedicated columns for org-mode and digital gardens I check, and a list of some folk who post there and don&#39;t have a blog yet (at least not that I know of).

I said Mastodon is the only social network I *like* and that remains true: **Bluesky** is too angry for me and has too many &#34;literally&#34; and &#34;friendly reminder&#34; kind of passive-aggressive posts. A few folks post there that I care about, but I think it&#39;s not going to make it when I revamp this list the next time.

**Kagi Small Web** is pretty good, but I feel like they made it a bit *too big* recently. Some of the blogs there tend to belong to small businesses or to people who think like businesses. Still, it&#39;s a very good place to go and find new blogs. It&#39;s also a good way to see how people present their blog and get inspired by CSS and themes quickly, if you keep clicking &#34;next&#34; for that purpose.

And finally, a personal favorite: just **snap a picture**. I go out of my room with my phone, look around, and take a picture - often while taking a walk. When I&#39;m in this mindset, I don&#39;t look for anything special - quite the opposite. I&#39;d take a picture of ordinary things that are boring otherwise.

### Footnotes

&lt;sup&gt;&lt;a id=&#34;fn.1&#34; href=&#34;#fnr.1&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;: Perhaps unsurprisingly, the &#34;second place&#34; posts, those that are popular but not *the* most popular, tend to be facts about my life or random &#34;glitches&#34; in my human programming. The more people follow me, the more popular these become, and I tend to get interested in the same kind of posts on other blogs. This is what makes us the indie web, yes?
</source:markdown>
    </item>
    
    <item>
      <title>Sisters, 1972 - ★★★</title>
      <link>https://taonaw.com/2026/06/28/sisters.html</link>
      <pubDate>Sun, 28 Jun 2026 22:59:23 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/06/28/sisters.html</guid>
      <description>&lt;p&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/37970-sisters-0-600-0-900-crop.jpg&#34;/&gt;&lt;/p&gt; &lt;p&gt;An indie horror movie from the 1970s, with very fake blood and everything.&lt;/p&gt;&lt;p&gt;It had an interesting story, though I&#39;d say some of the concepts of the time didn&#39;t age well - tropes of mental disabilities, conjured twins, hypnosis, etc. Still, it was fun to watch, a nice trip from that era.&lt;/p&gt;
</description>
      <source:markdown>&lt;p&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/37970-sisters-0-600-0-900-crop.jpg&#34;/&gt;&lt;/p&gt; &lt;p&gt;An indie horror movie from the 1970s, with very fake blood and everything.&lt;/p&gt;&lt;p&gt;It had an interesting story, though I&#39;d say some of the concepts of the time didn&#39;t age well - tropes of mental disabilities, conjured twins, hypnosis, etc. Still, it was fun to watch, a nice trip from that era.&lt;/p&gt;
</source:markdown>
    </item>
    
    <item>
      <title>Subnautica: A Great Game That Deserves a Better Ending</title>
      <link>https://taonaw.com/2026/06/27/subnautica-a-great-game-that.html</link>
      <pubDate>Sat, 27 Jun 2026 19:23:00 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/06/27/subnautica-a-great-game-that.html</guid>
      <description>&lt;p&gt;Some games are over before the official ending(s). Sometimes it feels like the developers ran out of ideas or perhaps they never planned to go byond a certain point, but whatever it is, it feels cheap: You reach a certain point and there are endless hordes of enemies who just keep coming to make things harder, or a final boss who has an unfair advantage for no real reason,  or the end of the story seems rushed and out of nowhere. It&amp;rsquo;s particularly disappointing when it happens to a good game, one that you&amp;rsquo;ve enjoyed for weeks and spent time on. For me, that happens in Subnautica.&lt;/p&gt;
&lt;p&gt;Before I go on, two disclaimers:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;I&amp;rsquo;m going to vent about the final stages of the game, so if you&amp;rsquo;re playing it or want to play it, there are spoilers ahead, so keep this in mind. This brings me to:&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Subnautica is still a very good game. I loved playing it and enjoyed it in a way unique to this game. If you haven&amp;rsquo;t played it, stop reading this post, go play it, then come back.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;OK then! Let&amp;rsquo;s dive in.&lt;/p&gt;
&lt;p&gt;If you follow the plot, you arrive at the Lava Lakes (the last and deepest biome in the game) in search of the &lt;a href=&#34;https://subnautica.fandom.com/wiki/Primary_Containment_Facility&#34;&gt;Primary Containment Facility&lt;/a&gt;. This is where you find the Sea Emperor Leviathan, which, as you learned, is connected to the cure for the disease that plagues you and the rest of the planet.&lt;/p&gt;
&lt;p&gt;You find the Sea Emperor in this facility soon enough, as well as several portals that can transport you instantly to several locations in the world. It&amp;rsquo;s a sort of fast travel, something that Subnautica doesn&amp;rsquo;t have besides one very special connection that happens early on between the two islands. To me, these portals were the first warning sign that the developers wanted to hurry things up and go home.&lt;/p&gt;
&lt;p&gt;These portals (which can be hard to find and are part of the exploration part of the game) cannot be activated up to this point, at the end. Instead, you have to use whatever means of transport you have, which is usually the Cyclops at this point. It is a huge sub, acting as your portal base; it&amp;rsquo;s loud and slow, much like an alarm bell screaming your location to any nearby scary leviathan on the way and inviting them to take a bite. Sure, you can choose to take the fast and sneaky Seamoth, but if one of those guys catches you along the way, it can merely crush it in one bite and grant you a jump scare that will make you yelp loud enough that your partner comes to check on you.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s one of those core elements of the game that you learn to be better at. Going from point A to point B is usually risky, no matter how you do it. It&amp;rsquo;s also why the game is frustrating in a way: you almost always miss one important piece of &lt;em&gt;something&lt;/em&gt; you need to craft the next important gizmo, which means you have to go back into the darkness to hunt for precious shiny stuff.&lt;/p&gt;
&lt;p&gt;The portals basically eliminate this problem. They send you to different locations around the world that either have what you need or are close enough to it. Suddenly, after 95% of the game behind you, there&amp;rsquo;s finally fast travel. And you need this fast travel, because the next part is pretty much grocery shopping for &lt;a href=&#34;https://subnautica.fandom.com/wiki/Enzyme_42&#34;&gt;Enzyme 42&lt;/a&gt;, AKA the cure.&lt;/p&gt;
&lt;p&gt;To craft it, you need components from the four corners of the world, conveniently located at the destinations of these portals. And when I say convenient, I mean literally as soon as you exit the tunnel where the portal is - It&amp;rsquo;s &lt;em&gt;right there&lt;/em&gt; in front of your face. So my question is, why bother at all? What&amp;rsquo;s the point of getting these components if traveling to them takes mere seconds?&lt;/p&gt;
&lt;p&gt;There&amp;rsquo;s another phase of more tedious grocery shopping that has started to feel like a struggle for purpose. At some point I even wanted to put the game away and be doen with it. The &lt;a href=&#34;https://subnautica.fandom.com/wiki/Neptune_Escape_Rocket&#34;&gt;Neptune Escape Rocket&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This one is also a bit my fault: I didn&amp;rsquo;t &lt;em&gt;have to&lt;/em&gt; wait until this point in the game to start building the rocket; I could have started much earlier. The game prevents you from launching the rocket until you get the cure, so building the rocket alongside the story, as you get access to more minerals, makes sense - and in retrospect, this is what I would recommend to people new to the game. Since I knew the rocket meant the end of the game, I left it alone until I had found the cure. That was a mistake.&lt;/p&gt;
&lt;p&gt;If getting the ingredients for the cure was an annoyance, building the rocket felt like a chore. Each of the five parts of this big rocket requires unique materials found in specific biomes, and while, yes, I had the portals at this point, the game does not tell you which components you need for each part until you build the one before it.&lt;/p&gt;
&lt;p&gt;This means that you go grocery shopping &lt;em&gt;five times&lt;/em&gt;, each time for the next part once you learn what you need. This is the only blueprint in the game that is handled this way. For some reason, with the rocket, you just &amp;ldquo;know&amp;rdquo; how to build each part after you build the part before it, which effectively prevents you from planning and gathering everything you need at one go. Why? What&amp;rsquo;s the point of this? And how do you know to just keep building this Rocket?&lt;/p&gt;
&lt;p&gt;Luckily for me, there&amp;rsquo;s the wiki that I used in my links here. It gave me the list of ingredients for each part. I mentioned it in my previous post about this game - &lt;a href=&#34;https://taonaw.com/2026/06/08/play-subnautica-again-why-cheating.html&#34;&gt;a little cheating here and there improves the gaming experience&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The way the rocket building is handled goes against what you&amp;rsquo;ve learned playing Subnatica up to this point - that is, you get blueprints is as part of exploration and dealing with your fears. I couldn&amp;rsquo;t find any in-game reference that explains the rocket is different. In other words, you can spend hours going crazy trying to find the next parts of the rocket&amp;rsquo;s blueprints, which is exactly what the game has trained you to do up to this point, before you finally give up and just build the first part. In my opinion, this is lazy end-game design.&lt;/p&gt;
&lt;p&gt;Lastly, there&amp;rsquo;s the story. This is more forgivable and can pass as a cliche or a plot hole, but it&amp;rsquo;s worth pointing out because the story thus far was interesting. It&amp;rsquo;s the fact that the adult Sea Emperor dies at the end game, mere &lt;em&gt;minutes&lt;/em&gt; once you get the cure. This is bullcrap.&lt;/p&gt;
&lt;p&gt;The parent (I think they are supposed to be sexless creatures in this game, but they gave the Sea Emperor a woman&amp;rsquo;s voice, and it lays eggs and needs them to hatch - they make it pretty obvious, contradicting themselves, but moving on) has been living in captivity, in that aquarium you find, for &lt;em&gt;thousands of years&lt;/em&gt;. It got whatever it needs to survive all this time, just for the chance that one day someone will show up and concoct the enzyme that would hatch its eggs. Then, once the &amp;ldquo;younglings&amp;rdquo; hatch, the parent claims that it&amp;rsquo;s time for it to die, and basically does exactly that. Why can&amp;rsquo;t it live another thousand years? Or, more logically, why can&amp;rsquo;t it be dead already when you get there (the game tells you previous attempts to grow these creatures in captivity didn&amp;rsquo;t work), so you have to figure out how to hatch the eggs yourself? I don&amp;rsquo;t know. This whole part of the game just made me roll my eyes with the Lion King&amp;rsquo;s &amp;ldquo;circle of life&amp;rdquo; stuck on repeat in my head.&lt;/p&gt;
&lt;p&gt;There are games that make me annoyed enough to just quit because of things like that. But with Subnautica, I just wanted to see if the ending was as bad as I thought. And yeah, in my opinion, it pretty much was.&lt;/p&gt;
&lt;p&gt;As I said though, Subnautica is still awesome. I still love it enough to jump right into &lt;a href=&#34;https://en.wikipedia.org/wiki/Subnautica:_Below_Zero&#34;&gt;Below-Zero&lt;/a&gt;. It feels like it could use a message from the developers when you meet the Sea Emperor: &amp;ldquo;Congrats, you pretty much finished the game. The next parts are grocery shopping and a cliche ending. Continue at your own risk,&amp;rdquo; or something of the sort.&lt;/p&gt;
</description>
      <source:markdown>Some games are over before the official ending(s). Sometimes it feels like the developers ran out of ideas or perhaps they never planned to go byond a certain point, but whatever it is, it feels cheap: You reach a certain point and there are endless hordes of enemies who just keep coming to make things harder, or a final boss who has an unfair advantage for no real reason,  or the end of the story seems rushed and out of nowhere. It&#39;s particularly disappointing when it happens to a good game, one that you&#39;ve enjoyed for weeks and spent time on. For me, that happens in Subnautica.

Before I go on, two disclaimers:

1. I&#39;m going to vent about the final stages of the game, so if you&#39;re playing it or want to play it, there are spoilers ahead, so keep this in mind. This brings me to:

2. Subnautica is still a very good game. I loved playing it and enjoyed it in a way unique to this game. If you haven&#39;t played it, stop reading this post, go play it, then come back.

OK then! Let&#39;s dive in.

If you follow the plot, you arrive at the Lava Lakes (the last and deepest biome in the game) in search of the [Primary Containment Facility](https://subnautica.fandom.com/wiki/Primary_Containment_Facility). This is where you find the Sea Emperor Leviathan, which, as you learned, is connected to the cure for the disease that plagues you and the rest of the planet.

You find the Sea Emperor in this facility soon enough, as well as several portals that can transport you instantly to several locations in the world. It&#39;s a sort of fast travel, something that Subnautica doesn&#39;t have besides one very special connection that happens early on between the two islands. To me, these portals were the first warning sign that the developers wanted to hurry things up and go home.

These portals (which can be hard to find and are part of the exploration part of the game) cannot be activated up to this point, at the end. Instead, you have to use whatever means of transport you have, which is usually the Cyclops at this point. It is a huge sub, acting as your portal base; it&#39;s loud and slow, much like an alarm bell screaming your location to any nearby scary leviathan on the way and inviting them to take a bite. Sure, you can choose to take the fast and sneaky Seamoth, but if one of those guys catches you along the way, it can merely crush it in one bite and grant you a jump scare that will make you yelp loud enough that your partner comes to check on you.

It&#39;s one of those core elements of the game that you learn to be better at. Going from point A to point B is usually risky, no matter how you do it. It&#39;s also why the game is frustrating in a way: you almost always miss one important piece of *something* you need to craft the next important gizmo, which means you have to go back into the darkness to hunt for precious shiny stuff.

The portals basically eliminate this problem. They send you to different locations around the world that either have what you need or are close enough to it. Suddenly, after 95% of the game behind you, there&#39;s finally fast travel. And you need this fast travel, because the next part is pretty much grocery shopping for [Enzyme 42](https://subnautica.fandom.com/wiki/Enzyme_42), AKA the cure.

To craft it, you need components from the four corners of the world, conveniently located at the destinations of these portals. And when I say convenient, I mean literally as soon as you exit the tunnel where the portal is - It&#39;s *right there* in front of your face. So my question is, why bother at all? What&#39;s the point of getting these components if traveling to them takes mere seconds?

There&#39;s another phase of more tedious grocery shopping that has started to feel like a struggle for purpose. At some point I even wanted to put the game away and be doen with it. The [Neptune Escape Rocket](https://subnautica.fandom.com/wiki/Neptune_Escape_Rocket).

This one is also a bit my fault: I didn&#39;t *have to* wait until this point in the game to start building the rocket; I could have started much earlier. The game prevents you from launching the rocket until you get the cure, so building the rocket alongside the story, as you get access to more minerals, makes sense - and in retrospect, this is what I would recommend to people new to the game. Since I knew the rocket meant the end of the game, I left it alone until I had found the cure. That was a mistake.

If getting the ingredients for the cure was an annoyance, building the rocket felt like a chore. Each of the five parts of this big rocket requires unique materials found in specific biomes, and while, yes, I had the portals at this point, the game does not tell you which components you need for each part until you build the one before it. 

This means that you go grocery shopping *five times*, each time for the next part once you learn what you need. This is the only blueprint in the game that is handled this way. For some reason, with the rocket, you just &#34;know&#34; how to build each part after you build the part before it, which effectively prevents you from planning and gathering everything you need at one go. Why? What&#39;s the point of this? And how do you know to just keep building this Rocket?

Luckily for me, there&#39;s the wiki that I used in my links here. It gave me the list of ingredients for each part. I mentioned it in my previous post about this game - [a little cheating here and there improves the gaming experience](https://taonaw.com/2026/06/08/play-subnautica-again-why-cheating.html).

The way the rocket building is handled goes against what you&#39;ve learned playing Subnatica up to this point - that is, you get blueprints is as part of exploration and dealing with your fears. I couldn&#39;t find any in-game reference that explains the rocket is different. In other words, you can spend hours going crazy trying to find the next parts of the rocket&#39;s blueprints, which is exactly what the game has trained you to do up to this point, before you finally give up and just build the first part. In my opinion, this is lazy end-game design.

Lastly, there&#39;s the story. This is more forgivable and can pass as a cliche or a plot hole, but it&#39;s worth pointing out because the story thus far was interesting. It&#39;s the fact that the adult Sea Emperor dies at the end game, mere *minutes* once you get the cure. This is bullcrap.

The parent (I think they are supposed to be sexless creatures in this game, but they gave the Sea Emperor a woman&#39;s voice, and it lays eggs and needs them to hatch - they make it pretty obvious, contradicting themselves, but moving on) has been living in captivity, in that aquarium you find, for *thousands of years*. It got whatever it needs to survive all this time, just for the chance that one day someone will show up and concoct the enzyme that would hatch its eggs. Then, once the &#34;younglings&#34; hatch, the parent claims that it&#39;s time for it to die, and basically does exactly that. Why can&#39;t it live another thousand years? Or, more logically, why can&#39;t it be dead already when you get there (the game tells you previous attempts to grow these creatures in captivity didn&#39;t work), so you have to figure out how to hatch the eggs yourself? I don&#39;t know. This whole part of the game just made me roll my eyes with the Lion King&#39;s &#34;circle of life&#34; stuck on repeat in my head.

There are games that make me annoyed enough to just quit because of things like that. But with Subnautica, I just wanted to see if the ending was as bad as I thought. And yeah, in my opinion, it pretty much was.

As I said though, Subnautica is still awesome. I still love it enough to jump right into [Below-Zero](https://en.wikipedia.org/wiki/Subnautica:_Below_Zero). It feels like it could use a message from the developers when you meet the Sea Emperor: &#34;Congrats, you pretty much finished the game. The next parts are grocery shopping and a cliche ending. Continue at your own risk,&#34; or something of the sort.

</source:markdown>
    </item>
    
    <item>
      <title>Have You Restarted Your Computer This Week?</title>
      <link>https://taonaw.com/2026/06/27/have-you-restarted-your-computer.html</link>
      <pubDate>Sat, 27 Jun 2026 06:54:20 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/06/27/have-you-restarted-your-computer.html</guid>
      <description>&lt;p&gt;I like restarting my Mac on Saturday mornings. It&amp;rsquo;s a silly thing really. You don&amp;rsquo;t really need to restart computers anymore unless some update takes place or there&amp;rsquo;s something wrong; shutting down on purpose is even more rare. Which is exactly why I like it.&lt;/p&gt;
&lt;p&gt;I could just close all my windows and have a clean desktop environment, and I could probably write a script for it or &lt;a href=&#34;https://quitallapps.app&#34;&gt;find an app for it&lt;/a&gt;, but I enjoy the manual process. Maybe I&amp;rsquo;m a bit weird, but I like seeing all these warnings: &amp;ldquo;You have unsaved work! Are you &lt;em&gt;sure&lt;/em&gt;?&amp;rdquo; Yes, I&amp;rsquo;m sure, I&amp;rsquo;m not working today, take this document and shove it..! &amp;ldquo;Microsoft Edge is preve&amp;hellip;&amp;rdquo; Bam! Force quit! Kill kill kill!&lt;/p&gt;
&lt;p&gt;Yeah, it&amp;rsquo;s probably not the smartest way to do this, but sometimes you just need to throw responsibility and reason to the wind. Just for a bit.&lt;/p&gt;
&lt;p&gt;Most of my work is saved to the cloud anyway (OneDrive)&lt;sup&gt;&lt;a id=&#34;fnr.1&#34; class=&#34;footref&#34; href=&#34;#fn.1&#34; role=&#34;doc-backlink&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;, and most of my personal stuff is saved &lt;a href=&#34;https://www.gnu.org/software/emacs/manual/html_node/emacs/Auto-Save.html&#34;&gt;periodically in Emacs&lt;/a&gt;, where it&amp;rsquo;s &lt;a href=&#34;https://syncthing.net&#34;&gt;synced&lt;/a&gt; to my various devices, so I don&amp;rsquo;t really lose anything. Besides, I think anyone who&amp;rsquo;s been dealing with fixing technology would tell you that the reset option is one of the best ways to resolve many of your computer&amp;rsquo;s problems. It also gives you a chance to go to the bathroom or grab a cup of coffee.&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/hello-it-have-you-tried.gif&#34; width=&#34;300&#34; height=&#34;300&#34; alt=&#34;Auto-generated description: A man is sitting in a cluttered office and asking, Hello IT. Have you tried turning it off and on again?&#34;&gt;
&lt;p&gt;Have &lt;a href=&#34;https://taonaw.com/2026/06/15/shnatz-scheduling-mental-afternoon-reboots.html&#34;&gt;you&lt;/a&gt; restarted this week?&lt;/p&gt;
&lt;h3 id=&#34;footnotes&#34;&gt;Footnotes&lt;/h3&gt;
&lt;p&gt;&lt;sup&gt;&lt;a id=&#34;fn.1&#34; href=&#34;#fnr.1&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; Every time I write how I save my work to the cloud, or using Microsoft apps, I like to remind myself and my readers: it&amp;rsquo;s not my choice. It&amp;rsquo;s work. They make me do it.&lt;/p&gt;
</description>
      <source:markdown>I like restarting my Mac on Saturday mornings. It&#39;s a silly thing really. You don&#39;t really need to restart computers anymore unless some update takes place or there&#39;s something wrong; shutting down on purpose is even more rare. Which is exactly why I like it.

I could just close all my windows and have a clean desktop environment, and I could probably write a script for it or [find an app for it](https://quitallapps.app), but I enjoy the manual process. Maybe I&#39;m a bit weird, but I like seeing all these warnings: &#34;You have unsaved work! Are you *sure*?&#34; Yes, I&#39;m sure, I&#39;m not working today, take this document and shove it..! &#34;Microsoft Edge is preve...&#34; Bam! Force quit! Kill kill kill! 

Yeah, it&#39;s probably not the smartest way to do this, but sometimes you just need to throw responsibility and reason to the wind. Just for a bit.

Most of my work is saved to the cloud anyway (OneDrive)&lt;sup&gt;&lt;a id=&#34;fnr.1&#34; class=&#34;footref&#34; href=&#34;#fn.1&#34; role=&#34;doc-backlink&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;, and most of my personal stuff is saved [periodically in Emacs](https://www.gnu.org/software/emacs/manual/html_node/emacs/Auto-Save.html), where it&#39;s [synced](https://syncthing.net) to my various devices, so I don&#39;t really lose anything. Besides, I think anyone who&#39;s been dealing with fixing technology would tell you that the reset option is one of the best ways to resolve many of your computer&#39;s problems. It also gives you a chance to go to the bathroom or grab a cup of coffee.

&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/hello-it-have-you-tried.gif&#34; width=&#34;300&#34; height=&#34;300&#34; alt=&#34;Auto-generated description: A man is sitting in a cluttered office and asking, Hello IT. Have you tried turning it off and on again?&#34;&gt;

Have [you](https://taonaw.com/2026/06/15/shnatz-scheduling-mental-afternoon-reboots.html) restarted this week?


### Footnotes

&lt;sup&gt;&lt;a id=&#34;fn.1&#34; href=&#34;#fnr.1&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; Every time I write how I save my work to the cloud, or using Microsoft apps, I like to remind myself and my readers: it&#39;s not my choice. It&#39;s work. They make me do it.
</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/06/24/well-i-did-it-i.html</link>
      <pubDate>Wed, 24 Jun 2026 21:54:20 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/06/24/well-i-did-it-i.html</guid>
      <description>&lt;p&gt;Well, I did it. I finished Subnautica.
Next, Sub Zero, and then in a few months (I guess?) Subnautica 2. Or&amp;hellip; not. There are other games as well. 🎮&lt;/p&gt;
</description>
      <source:markdown>Well, I did it. I finished Subnautica. 
Next, Sub Zero, and then in a few months (I guess?) Subnautica 2. Or... not. There are other games as well. 🎮
</source:markdown>
    </item>
    
    <item>
      <title>TP quest: Switching Back to Who Gives A Crap Because Amazon Basic&#39;s is... Crap.</title>
      <link>https://taonaw.com/2026/06/22/tp-quest-switching-back-to.html</link>
      <pubDate>Mon, 22 Jun 2026 08:16:26 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/06/22/tp-quest-switching-back-to.html</guid>
      <description>&lt;p&gt;About two years ago, I learned that &lt;a href=&#34;https://taonaw.com/2024/09/03/its-not-just.html&#34;&gt;I&amp;rsquo;m not just being a grumpy &amp;ldquo;back in the good old days&amp;hellip;&amp;rdquo; style about toilet paper&lt;/a&gt;. The article I read was good, and if I recall correctly, I emailed the author and also learned from him that something similar is happening with our sweaters.&lt;/p&gt;
&lt;p&gt;The takeaway is thus: toilet paper is expensive, and manufacturers are using less and less paper. The result is that it runs out more quickly and tears more easily.&lt;/p&gt;
&lt;p&gt;My solution to this problem was to start buying my toilet paper from &lt;a href=&#34;https://en.wikipedia.org/wiki/Who_Gives_A_Crap&#34;&gt;Who Gives A Crap&lt;/a&gt;. Back then, it solved two problems:&lt;/p&gt;
&lt;p&gt;First, delivery. Toilet paper packages are big, especially if you&amp;rsquo;re buying for more than just one person. As a city dweller without a car, schlepping with a big box takes away all the space for other groceries.&lt;/p&gt;
&lt;p&gt;Second, the quality for the price. While WGAC is not exactly the cheapest, the convenience of delivery + subscription and the nice packaging (I liked the different colors of the wrappings and the lack of plastic in the packaging) were nice.&lt;/p&gt;
&lt;p&gt;But then, the &lt;a href=&#34;https://taonaw.com/2025/03/17/buying-toilet-paper-with-whogivesacrap.html&#34;&gt;internet shenanigans started&lt;/a&gt;, and eventually &lt;a href=&#34;https://taonaw.com/2025/03/17/094010.html&#34;&gt;made me give up&lt;/a&gt; on them. Amazon was available, quick, and cheap — so I went for it.&lt;/p&gt;
&lt;p&gt;Now, after a year and a half of buying Amazon Basics TP, the crappy quality (sorry, couldn’t help myself) caught up to them. The toilet paper is bad enough that we run out of a roll within a few days (we&amp;rsquo;re two adults here, that&amp;rsquo;s a lot), and it&amp;rsquo;s thin enough to be basically see‑through. If your business is a bit… er… flowing, you can almost spend half a roll cleaning up because the damn thing basically dissolves on contact.&lt;/p&gt;
&lt;p&gt;So I decided enough is enough, canceled the subscription, and went back to WGAC. I&amp;rsquo;m not sure their quality hasn&amp;rsquo;t diminished over time, but at least they offer a bamboo option, which, according to my earlier research, is less affected. And yes, I know I can probably find something else on Amazon and subscribe to &lt;em&gt;that&lt;/em&gt;, but I did like WGAC, and I want to give them another chance.&lt;/p&gt;
&lt;p&gt;Now I want to watch some Beavis and Butt-Head 🧻 😆&lt;/p&gt;
</description>
      <source:markdown>About two years ago, I learned that [I&#39;m not just being a grumpy &#34;back in the good old days...&#34; style about toilet paper](https://taonaw.com/2024/09/03/its-not-just.html). The article I read was good, and if I recall correctly, I emailed the author and also learned from him that something similar is happening with our sweaters.

The takeaway is thus: toilet paper is expensive, and manufacturers are using less and less paper. The result is that it runs out more quickly and tears more easily.

My solution to this problem was to start buying my toilet paper from [Who Gives A Crap](https://en.wikipedia.org/wiki/Who_Gives_A_Crap). Back then, it solved two problems:

First, delivery. Toilet paper packages are big, especially if you&#39;re buying for more than just one person. As a city dweller without a car, schlepping with a big box takes away all the space for other groceries.

Second, the quality for the price. While WGAC is not exactly the cheapest, the convenience of delivery + subscription and the nice packaging (I liked the different colors of the wrappings and the lack of plastic in the packaging) were nice.

But then, the [internet shenanigans started](https://taonaw.com/2025/03/17/buying-toilet-paper-with-whogivesacrap.html), and eventually [made me give up](https://taonaw.com/2025/03/17/094010.html) on them. Amazon was available, quick, and cheap — so I went for it.

Now, after a year and a half of buying Amazon Basics TP, the crappy quality (sorry, couldn’t help myself) caught up to them. The toilet paper is bad enough that we run out of a roll within a few days (we&#39;re two adults here, that&#39;s a lot), and it&#39;s thin enough to be basically see‑through. If your business is a bit… er… flowing, you can almost spend half a roll cleaning up because the damn thing basically dissolves on contact.

So I decided enough is enough, canceled the subscription, and went back to WGAC. I&#39;m not sure their quality hasn&#39;t diminished over time, but at least they offer a bamboo option, which, according to my earlier research, is less affected. And yes, I know I can probably find something else on Amazon and subscribe to *that*, but I did like WGAC, and I want to give them another chance.

Now I want to watch some Beavis and Butt-Head 🧻 😆

</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/06/21/this-morning-i-read-a.html</link>
      <pubDate>Sun, 21 Jun 2026 09:02:05 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/06/21/this-morning-i-read-a.html</guid>
      <description>&lt;p&gt;This morning, I read a couple of posts on Reddit that I liked and wanted to reply to the community. Mistake, as usual:&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/2f686a920d.jpg&#34;&gt;
&lt;p&gt;No big deal, it&amp;rsquo;s only 10 minutes down the drain.
My account is several years old and has a lot of &amp;ldquo;karma.&amp;rdquo; I am not behind a VPN this time. There was no bad language or any adult content in my post.&lt;/p&gt;
&lt;p&gt;Yes, I know I&amp;rsquo;m not telling you anything new, and it&amp;rsquo;s my fault for trying to entertain myself to actually use Reddit for - gasp - posting something. But this is &lt;em&gt;still&lt;/em&gt; where most folks (non-techie that is) go to. They don&amp;rsquo;t have anywhere else. Barking on how everyone should move to Mastodon (I wish) or Lemmy or whatever doesn&amp;rsquo;t work.&lt;/p&gt;
&lt;p&gt;Wondering if anyone found a way to satisfy Reddit&amp;rsquo;s filters, whatever the hell they are, because they sure don&amp;rsquo;t make sense to me anymore.&lt;/p&gt;
</description>
      <source:markdown>This morning, I read a couple of posts on Reddit that I liked and wanted to reply to the community. Mistake, as usual:

&lt;img src=&#34;https://cdn.uploads.micro.blog/96826/2026/2f686a920d.jpg&#34;&gt;

No big deal, it&#39;s only 10 minutes down the drain.
My account is several years old and has a lot of &#34;karma.&#34; I am not behind a VPN this time. There was no bad language or any adult content in my post.

Yes, I know I&#39;m not telling you anything new, and it&#39;s my fault for trying to entertain myself to actually use Reddit for - gasp - posting something. But this is _still_ where most folks (non-techie that is) go to. They don&#39;t have anywhere else. Barking on how everyone should move to Mastodon (I wish) or Lemmy or whatever doesn&#39;t work.

Wondering if anyone found a way to satisfy Reddit&#39;s filters, whatever the hell they are, because they sure don&#39;t make sense to me anymore.  
</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/06/20/today-started-just-right-so.html</link>
      <pubDate>Sat, 20 Jun 2026 09:13:14 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/06/20/today-started-just-right-so.html</guid>
      <description>&lt;p&gt;Today started just right so far. Sleep was sufficient, draft writing, a lot of fun with Subnautica (the first one, I&amp;rsquo;m finishing it up&amp;hellip;), and now farmer&amp;rsquo;s market with River. Good stuff.&lt;/p&gt;
</description>
      <source:markdown>Today started just right so far. Sleep was sufficient, draft writing, a lot of fun with Subnautica (the first one, I&#39;m finishing it up...), and now farmer&#39;s market with River. Good stuff.
</source:markdown>
    </item>
    
    <item>
      <title></title>
      <link>https://taonaw.com/2026/06/16/moments-looks-good-from-peter.html</link>
      <pubDate>Tue, 16 Jun 2026 20:50:11 -0400</pubDate>
      
      <guid>http://jtr.micro.blog/2026/06/16/moments-looks-good-from-peter.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://www.moments.im/community&#34;&gt;Moments looks good&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;From &lt;a href=&#34;https://pego.dev/i-wanted-bear-blog-but-for-my-photos/&#34;&gt;Peter&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Moments is a quiet photoblog for people who take photos as part of life.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;It is not social media. There are no likes, no follower counts, no rankings, and no pressure to post often.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Moments are simply organised by time, because time is enough. Newer moments come first. Older ones slowly move down.&lt;/p&gt;
&lt;/blockquote&gt;
</description>
      <source:markdown>[Moments looks good](https://www.moments.im/community). 

From [Peter](https://pego.dev/i-wanted-bear-blog-but-for-my-photos/):

&gt; Moments is a quiet photoblog for people who take photos as part of life.

&gt; It is not social media. There are no likes, no follower counts, no rankings, and no pressure to post often.

&gt; Moments are simply organised by time, because time is enough. Newer moments come first. Older ones slowly move down.
</source:markdown>
    </item>
    
  </channel>
</rss>
