<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">

<channel>
	<title>Something Odd!</title>
	<atom:link href="https://odd.blog/feed/" rel="self" type="application/rss+xml"/>
	<link>https://odd.blog</link>
	<description></description>
	<lastBuildDate>Sun, 19 Jul 2026 19:01:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>

<image>
	<url>https://odd.blog/files/2019/11/cropped-2017-12-02-IMG_4918-m-32x32.jpg</url>
	<title>Something Odd!</title>
	<link>https://odd.blog</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">70615218</site>	<itunes:explicit>no</itunes:explicit><itunes:image href="http://i9.tinypic.com/4y7cu1x.jpg"/><itunes:subtitle/><item>
		<title>Firefox lost the protocol</title>
		<link>https://odd.blog/2026/07/19/firefox-lost-the-protocol/</link>
					<comments>https://odd.blog/2026/07/19/firefox-lost-the-protocol/#respond</comments>
		
		<dc:creator><![CDATA[Donncha]]></dc:creator>
		<pubDate>Sun, 19 Jul 2026 19:01:48 +0000</pubDate>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[firefox]]></category>
		<guid isPermaLink="false">https://odd.blog/?p=89592927</guid>

					<description><![CDATA[After a recent update, Firefox somehow stopped showing me the https:// part of the URL. I&#8217;m not sure how, but if the same has happened to you, go to about:config and search for browser.urlbar.trimURLs and make sure that&#8217;s set to false. https:// is back. 🙂

#firefox #Web]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">After a recent update, Firefox somehow stopped showing me the <code>https://</code> part of the URL.</p>



<p class="wp-block-paragraph">I&#8217;m not sure how, but if the same has happened to you, go to <code>about:config</code> and search for <code>browser.urlbar.trimURLs</code> and make sure that&#8217;s set to false.</p>



<p class="wp-block-paragraph"><code>https://</code> is back. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p class="wp-block-paragraph"></p>

#firefox #Web]]></content:encoded>
					
					<wfw:commentRss>https://odd.blog/2026/07/19/firefox-lost-the-protocol/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89592927</post-id>	</item>
		<item>
		<title>Sharing a large Immich library without melting the server</title>
		<link>https://odd.blog/2026/07/17/sharing-a-large-immich-library-without-melting-the-server/</link>
					<comments>https://odd.blog/2026/07/17/sharing-a-large-immich-library-without-melting-the-server/#comments</comments>
		
		<dc:creator><![CDATA[Donncha]]></dc:creator>
		<pubDate>Fri, 17 Jul 2026 15:20:45 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Docker]]></category>
		<category><![CDATA[Immich]]></category>
		<category><![CDATA[self-hosted]]></category>
		<guid isPermaLink="false">https://odd.blog/?p=89592909</guid>

					<description><![CDATA[I share a photo library between two Immich users, my photos visible in my partner&#8217;s account, using an external library. Instead of uploading, Immich points at a folder on disk and imports whatever it finds there. It&#8217;s a lovely setup right up until the library gets big. Mine is big: over 750,000 photos, with more<a class="more-link" href="https://odd.blog/2026/07/17/sharing-a-large-immich-library-without-melting-the-server/">Continue reading <span class="screen-reader-text">"Sharing a large Immich library without melting the server"</span></a>

#Docker #Immich #Linux #selfhosted]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I <a href="https://github.com/donnchawp/immich-shared-library">share a photo library</a> between two Immich users, my photos visible in my partner&#8217;s account, using an external library. Instead of uploading, Immich points at a folder on disk and imports whatever it finds there. It&#8217;s a lovely setup right up until the library gets big. Mine is big: over 750,000 photos, with more than half a million in a single external library.</p>



<h3 class="wp-block-heading">Running out of memory</h3>



<p class="wp-block-paragraph">My server was struggling, chewing into swap all the time and running out of memory.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">microservices worker error: Error [ERR_WORKER_OUT_OF_MEMORY]:<br>Worker terminated due to reaching memory limit: JS heap out of memory</p>
</blockquote>



<p class="wp-block-paragraph">I had Immich running in a 6GB Docker container but reduced that to 4GB for other reasons, and it appeared to work ok for a while, but it took a while for me to notice it was using the entirety of the 4GB of RAM. I increased the RAM allocated to the container, but it was still a heavy user.</p>



<h3 class="wp-block-heading">The library watcher</h3>



<p class="wp-block-paragraph">External libraries have two ways to notice new files. There&#8217;s a periodic scan, which I&#8217;d already disabled because it&#8217;s brutal at this size. And there&#8217;s the watcher, which uses filesystem notifications to spot new files the moment they land. That&#8217;s what makes photos I add show up automatically.</p>



<p class="wp-block-paragraph">The watcher is the convenient one. It&#8217;s also the expensive one. Watching a folder tree with 750,000 files means holding an enormous number of filesystem watches plus the bookkeeping that goes with them, and on my library that was around 3GB of resident memory, sitting there permanently doing nothing most of the time.</p>



<p class="wp-block-paragraph">I turned it off in the admin settings. Memory use went from ~4GB pinned at the limit to about 1GB. Nightly jobs suddenly had room to breathe and the crash loop stopped.</p>



<p class="wp-block-paragraph">Except now new photos don&#8217;t get imported, because the watcher was the thing importing them. So: how do you add a photo to a huge external library without a watcher and without a full scan?</p>



<h3 class="wp-block-heading">The obvious fix that doesn&#8217;t work</h3>



<p class="wp-block-paragraph">Immich has an API endpoint to scan a library:</p>



<pre class="wp-block-code"><code>POST /api/libraries/{id}/scan</code></pre>



<p class="wp-block-paragraph">It scans the whole library. On my photo archive that&#8217;s a long, heavy crawl, and I&#8217;d already learned the hard way what a scan does to this box. Not something you run every time you drop in a picture.</p>



<h3 class="wp-block-heading">Enqueue the import job yourself</h3>



<p class="wp-block-paragraph">So I went looking at what the watcher actually does when it sees a new file, expecting something complicated. It&#8217;s almost nothing. It queues one background job:</p>



<pre class="wp-block-code"><code>jobRepository.queue({
    name: 'LibrarySyncFiles',
    data: { libraryId, paths: &#91;path] },
})</code></pre>



<p class="wp-block-paragraph"><code>LibrarySyncFiles</code> takes an explicit list of paths and imports exactly those files, without crawling the other 500,000. The per-file import I wanted was already sitting there. The watcher was only ever the trigger, and I was paying 3GB for the trigger.</p>



<p class="wp-block-paragraph">I can pull that trigger myself. Immich uses BullMQ (backed by Redis/Valkey) for its job queue, so I can push the same job onto the same queue. The photos I add already go through a little script that moves them into the library folder by date, so the import hooks straight into that. When the script moves a new file in, it queues a <code>LibrarySyncFiles</code> job for that exact file:</p>



<pre class="wp-block-code"><code>docker exec -w /usr/src/app/server immich_server node -e '
  const { Queue } = require("bullmq");
  const q = new Queue("library", {
    prefix: "immich_bull",
    connection: { host: "redis", port: 6379 },
  });
  q.add("LibrarySyncFiles", {
    libraryId: "your-library-id",
    paths: &#91;"/path/inside/the/container/to/new-photo.jpg"],
  }).then(() => q.close());
'</code></pre>



<p class="wp-block-paragraph">Immich picks it up, runs its normal import pipeline on that one file (metadata, thumbnails, the lot) and the photo appears. No watcher sitting on gigabytes of RAM, no full-library scan, and new photos still land within a cycle of my import script.</p>



<h3 class="wp-block-heading">The caveats, because this is a hack</h3>



<p class="wp-block-paragraph">It leans on Immich&#8217;s internals, so: only send files that are genuinely new. The job handler inserts unconditionally, so hand it a path that&#8217;s already imported and you get a duplicate-key error in the logs. My script only queues files it actually moved.</p>



<p class="wp-block-paragraph">More seriously, this is an internal job queue, not a public API. The queue name, the job name and the payload shape are implementation details, and an upgrade could rename or reshape any of them. The failure mode is silent: photos would just quietly stop importing and I wouldn&#8217;t find out until I went looking for one. My script shouts if the enqueue fails, which covers some of that but not all of it. This was working on Immich 3.0.2.</p>



<p class="wp-block-paragraph">And turning off the watcher also turns off deletion detection, since the watcher is what removes assets when their files vanish. My workflow only ever adds files, so it doesn&#8217;t bite me. It might bite you.</p>



<p class="wp-block-paragraph">There is a discussion <a href="https://github.com/immich-app/immich/discussions/7712">here</a> asking for an API endpoint to scan single files, but it hasn&#8217;t received much attention in 2 years, so I guess not many people have this issue, or realise it is an issue.</p>



<h3 class="wp-block-heading">Was it worth it?</h3>



<p class="wp-block-paragraph">For a library this size, yes. About 3GB of RAM back, no more crash loop, and photos still import on their own. If your external library is small this is all irrelevant, so leave the watcher on and get on with your life. But if you&#8217;re in the hundreds of thousands of files and your server keeps falling over, check the watcher first.</p>

#Docker #Immich #Linux #selfhosted]]></content:encoded>
					
					<wfw:commentRss>https://odd.blog/2026/07/17/sharing-a-large-immich-library-without-melting-the-server/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89592909</post-id>	</item>
		<item>
		<title>Ireland’s Russian Problem</title>
		<link>https://odd.blog/2026/07/11/irelands-russian-problem/</link>
					<comments>https://odd.blog/2026/07/11/irelands-russian-problem/#respond</comments>
		
		<dc:creator><![CDATA[Donncha]]></dc:creator>
		<pubDate>Sat, 11 Jul 2026 18:00:11 +0000</pubDate>
				<category><![CDATA[Ireland]]></category>
		<category><![CDATA[Aughinish]]></category>
		<category><![CDATA[Russia]]></category>
		<guid isPermaLink="false">https://odd.blog/?p=89592888</guid>

					<description><![CDATA[I remember watching this video by Kev Collins a while back where he covered the Aughinish plant in Co. Limerick. His documentary revealed a horrible site on the west coast of Ireland. Red ponds of waste that blow into neighbouring farms and a family that had to move out of their family home because of<a class="more-link" href="https://odd.blog/2026/07/11/irelands-russian-problem/">Continue reading <span class="screen-reader-text">"Ireland&#8217;s Russian Problem"</span></a>

#Aughinish #Ireland #Russia]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I remember watching <a href="https://www.youtube.com/watch?v=DxTt3G5G7y0">this video</a> by Kev Collins a while back where he covered the Aughinish plant in Co. Limerick. His documentary revealed a horrible site on the west coast of Ireland. Red ponds of waste that blow into neighbouring farms and a family that had to move out of their family home because of it.</p>



<figure class="wp-block-embed aligncenter is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" width="750" height="422" src="https://www.youtube.com/embed/DxTt3G5G7y0?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe>
</div></figure>



<p class="wp-block-paragraph">Then comes the fact that most of the aluminum produced there ends up in Russia and will inevitably end up in weapons and munitions used against Ukraine.</p>



<p class="wp-block-paragraph">A month ago Caolon Robertson <a href="https://www.youtube.com/shorts/ajlErs_NG8Q">shared a video short</a> about the same plant, showing a ship that had just left Aughinish for St. Petersburg in Russia. A few hours ago he posted his documentary on Aughinish. It&#8217;s worth watching.</p>



<figure class="wp-block-embed aligncenter is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" width="750" height="422" src="https://www.youtube.com/embed/5bTxEeywVUA?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe>
</div></figure>



<p class="wp-block-paragraph">It&#8217;s shameful that Ireland is allowing this plant to export to Russia.</p>

#Aughinish #Ireland #Russia]]></content:encoded>
					
					<wfw:commentRss>https://odd.blog/2026/07/11/irelands-russian-problem/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89592888</post-id>	</item>
		<item>
		<title>Experiences with the Samyang Lens Station</title>
		<link>https://odd.blog/2026/06/30/experiences-with-the-samyang-lens-station/</link>
					<comments>https://odd.blog/2026/06/30/experiences-with-the-samyang-lens-station/#comments</comments>
		
		<dc:creator><![CDATA[Donncha]]></dc:creator>
		<pubDate>Tue, 30 Jun 2026 17:05:00 +0000</pubDate>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Samyang]]></category>
		<category><![CDATA[Samyang Lens Station]]></category>
		<guid isPermaLink="false">https://odd.blog/?p=89592851</guid>

					<description><![CDATA[If you have a Samyang lens for your camera you may find that the lens stops working after a camera firmware update. That&#8217;s what happened to me when I updated my A7RV to the version 4.0 firmware. I do a lot of street photography with the Samyang 24mm f/2.8 and I noticed I was missing<a class="more-link" href="https://odd.blog/2026/06/30/experiences-with-the-samyang-lens-station/">Continue reading <span class="screen-reader-text">"Experiences with the Samyang Lens Station"</span></a>

#Photography #Samyang #SamyangLensStation]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">If you have a Samyang lens for your camera you may find that the lens stops working after a camera firmware update. That&#8217;s what happened to me when I updated my A7RV to the version 4.0 firmware.</p>



<p class="wp-block-paragraph">I do a lot of street photography with the Samyang 24mm f/2.8 and I noticed I was missing lots of shots. Photos that should have been easy, with a clear subject and face visible for the camera to focus on were entirely out of focus. It seemed to happen more often when I was shooting from the hip, and then it seemed the camera wouldn&#8217;t take a photo at all.</p>



<p class="wp-block-paragraph">I thought it might be some auto focus setting on my camera. I played around with settings attempting to fix it, but nothing worked.</p>



<p class="wp-block-paragraph">Eventually, I figured out it was the camera firmware update. Sony&#8217;s new firmware changed something in how the auto focus information is transmitted from lens to camera. My Sony lenses worked fine but not the Samyang ones. There had been Samyang firmware updates in January for the A7M5. My camera firmware came out in December but I hadn&#8217;t updated it until about a month ago.</p>



<p class="wp-block-paragraph">I bought the Samyang Lens Station. The Amazon websites around Europe didn&#8217;t have it in stock, but amazon.ie did, shipped from Spain. It was only after that I remembered to check MPB and <a href="https://www.mpb.com/en-ie/product/samyang-lens-station-for-sony-e">found it there</a> at a much cheaper price. I guess these things don&#8217;t have much use once your lens is working ok again.</p>



<p class="wp-block-paragraph">You&#8217;ll need to download the <a href="https://www.lksamyang.com/en/support/support-download.php?type=6">Lens Manager app</a>. The interface is simple, and updating the lens is easy enough, if not obvious. Once you seat the lens on the lens station you&#8217;ll see a screen like this:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img data-dominant-color="ea7f80" data-has-transparency="false" style="--dominant-color: #ea7f80;" fetchpriority="high" decoding="async" width="1009" height="714" data-attachment-id="89592853" data-permalink="https://odd.blog/2026/06/30/experiences-with-the-samyang-lens-station/lens-station-2/" data-orig-file="https://odd.blog/files/2026/06/lens-station-1.avif" data-orig-size="1009,714" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="lens-station" data-image-description="" data-image-caption="" data-large-file="https://odd.blog/files/2026/06/lens-station-1.avif" src="https://odd.blog/files/2026/06/lens-station-1.avif" alt="" class="wp-image-89592853 not-transparent"/></figure>
</div>


<p class="wp-block-paragraph">The &#8220;Download Link&#8221; goes to a website that doesn&#8217;t load but you can grab the firmware files from <a href="https://www.lksamyang.com/en/support/support-download.php?type=3&amp;model=SONY">here</a>, their current site. A .hex file is extracted from the downloaded zip file and that&#8217;s the &#8220;Lens F/W File&#8221; that you load. Click &#8220;Update&#8221; and the lens will be updated in about 60 seconds or so. </p>



<p class="wp-block-paragraph">The 24mm lens went from version 5 to version 9, my 75mm f/1.8 lens went from version 1 to version 7.</p>



<p class="wp-block-paragraph">Once I&#8217;d updated I tried out the lenses and all was good again. Yay!</p>



<p class="wp-block-paragraph">I want to explore the AF/MF  settings in the programme too and see what that&#8217;ll do but my priority was getting the lens working. </p>



<p class="wp-block-paragraph">Do I love the Samyang 24mm f/2.8? Why yes. I have 33,409 images shot with it. Most of those are probably rubbish as it&#8217;s my street photography lens of choice but it&#8217;s worked really well until now. You can see a selection of my best photos <a href="https://inphotos.org/tag/samyang-af-24mm-f2-8-fe/">here</a>.</p>

#Photography #Samyang #SamyangLensStation]]></content:encoded>
					
					<wfw:commentRss>https://odd.blog/2026/06/30/experiences-with-the-samyang-lens-station/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89592851</post-id>	</item>
		<item>
		<title>21 years at Automattic</title>
		<link>https://odd.blog/2026/06/20/21-years-at-automattic/</link>
					<comments>https://odd.blog/2026/06/20/21-years-at-automattic/#comments</comments>
		
		<dc:creator><![CDATA[Donncha]]></dc:creator>
		<pubDate>Sat, 20 Jun 2026 22:45:40 +0000</pubDate>
				<category><![CDATA[Automattic]]></category>
		<guid isPermaLink="false">https://odd.blog/?p=89592819</guid>

					<description><![CDATA[One year ago today I published a post about 20 years at Automattic, so it follows that I&#8217;ll post this one today, with 17 minutes left in the day. AI is still disrupting our industry, and tech companies that are rolling in money are laying off thousands of developers. I don&#8217;t know what&#8217;s coming next,<a class="more-link" href="https://odd.blog/2026/06/20/21-years-at-automattic/">Continue reading <span class="screen-reader-text">"21 years at Automattic"</span></a>

#Automattic]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">One year ago today I published a post about <a href="https://odd.blog/2025/06/20/twenty-years-at-automattic/">20 years at Automattic</a>, so it follows that I&#8217;ll post this one today, with 17 minutes left in the day.</p>



<p class="wp-block-paragraph">AI is still disrupting our industry, and tech companies that are rolling in money are laying off thousands of developers. I don&#8217;t know what&#8217;s coming next, except that it will come one day at a time.</p>



<p class="wp-block-paragraph">15 minutes left in the day.</p>

#Automattic]]></content:encoded>
					
					<wfw:commentRss>https://odd.blog/2026/06/20/21-years-at-automattic/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89592819</post-id>	</item>
		<item>
		<title>Conan O’Brien ar Ros na Rún</title>
		<link>https://odd.blog/2026/06/05/conan-obrien-ar-ros-na-run/</link>
					<comments>https://odd.blog/2026/06/05/conan-obrien-ar-ros-na-run/#comments</comments>
		
		<dc:creator><![CDATA[Donncha]]></dc:creator>
		<pubDate>Fri, 05 Jun 2026 19:59:28 +0000</pubDate>
				<category><![CDATA[tv]]></category>
		<category><![CDATA[Gaeilge]]></category>
		<category><![CDATA[irish]]></category>
		<category><![CDATA[Ros na Run]]></category>
		<guid isPermaLink="false">https://odd.blog/?p=89592789</guid>

					<description><![CDATA[When Conan interviewed Irish actor Andrew Scott, he reminisced about his appearance on Irish language soap Ros na Rún a few years back. I&#8217;ve seen that clip a few times (you might need subtitles), but what was new to me was this clip from his show Conan O&#8217;Brien Must Go. He refers to this scene<a class="more-link" href="https://odd.blog/2026/06/05/conan-obrien-ar-ros-na-run/">Continue reading <span class="screen-reader-text">"Conan O&#8217;Brien ar Ros na Rún"</span></a>

#Gaeilge #irish #RosnaRun #tv]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">When <a href="https://www.youtube.com/watch?v=HRaDf9aNkc8">Conan interviewed Irish actor Andrew Scott</a>, he reminisced about his appearance on Irish language soap Ros na Rún a few years back. </p>



<figure class="wp-block-embed aligncenter is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" class="youtube-player" width="750" height="422" src="https://www.youtube.com/embed/UvFQ2MB9Alk?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe>
</div></figure>



<p class="wp-block-paragraph">I&#8217;ve seen that clip a few times (you might need subtitles), but what was new to me was this clip from his show Conan O&#8217;Brien Must Go. He refers to this scene in the Andrew Scott interview above.</p>



<figure class="wp-block-embed aligncenter is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" class="youtube-player" width="750" height="422" src="https://www.youtube.com/embed/BDUtVvC07i4?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe>
</div></figure>



<p class="wp-block-paragraph">Hilarious guy. Well done, Conan!</p>



<p class="wp-block-paragraph">He&#8217;s not the only celebrity to appear on the show. <a href="https://odd.blog/2011/03/03/stephen-fry-ros-na-rn/">Stephen Fry appeared on it</a> in 2011!</p>



<p class="wp-block-paragraph">See more of Ros na Rún <a href="https://www.youtube.com/@rosnarun96/videos">here</a>.</p>

#Gaeilge #irish #RosnaRun #tv]]></content:encoded>
					
					<wfw:commentRss>https://odd.blog/2026/06/05/conan-obrien-ar-ros-na-run/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89592789</post-id>	</item>
		<item>
		<title>An Evening with Paul Young</title>
		<link>https://odd.blog/2026/05/01/an-evening-with-paul-young/</link>
					<comments>https://odd.blog/2026/05/01/an-evening-with-paul-young/#respond</comments>
		
		<dc:creator><![CDATA[Donncha]]></dc:creator>
		<pubDate>Fri, 01 May 2026 22:58:00 +0000</pubDate>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[2026]]></category>
		<category><![CDATA[cork]]></category>
		<category><![CDATA[Ireland]]></category>
		<category><![CDATA[live music]]></category>
		<category><![CDATA[Paul Young]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[sony-a7rv]]></category>
		<guid isPermaLink="false">https://odd.blog/?p=89592747</guid>

					<description><![CDATA[Paul Young played St. Luke&#8217;s tonight, and we were lucky enough to grab fifth-row seats by turning up early. The place was packed. The show is billed as &#8220;Paul Young &#8211; From No Parlez to The Secret Of Association&#8221; and described as follows, Paul Young looks back during these intimate shows, that combine conversation and<a class="more-link" href="https://odd.blog/2026/05/01/an-evening-with-paul-young/">Continue reading <span class="screen-reader-text">"An Evening with Paul Young"</span></a>

#2026 #cork #Ireland #livemusic #Music #PaulYoung #photo #sonya7rv]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><a href="https://www.eventbrite.ie/e/paul-young-from-no-parlez-to-the-secret-of-association-tickets-1407341178349">Paul Young played St. Luke&#8217;s tonight</a>, and we were lucky enough to grab fifth-row seats by turning up early. The place was packed.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img data-dominant-color="3f8a85" data-has-transparency="false" style="--dominant-color: #3f8a85;" loading="lazy" decoding="async" width="1310" height="883" data-attachment-id="89592749" data-permalink="https://odd.blog/2026/05/01/an-evening-with-paul-young/2026-05-02-doc04816-m-2/" data-orig-file="https://odd.blog/files/2026/05/2026-05-02-DOC04816-m-1.avif" data-orig-size="1310,883" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.8&quot;,&quot;credit&quot;:&quot;Donncha O Caoimh&quot;,&quot;camera&quot;:&quot;ILCE-7RM5&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1777750938&quot;,&quot;copyright&quot;:&quot;Donncha O Caoimh (http://inphotos.org/)&quot;,&quot;focal_length&quot;:&quot;75&quot;,&quot;iso&quot;:&quot;1000&quot;,&quot;shutter_speed&quot;:&quot;0.0125&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;exposure_bias&quot;:&quot;0/10&quot;,&quot;flash&quot;:&quot;16&quot;}" data-image-title="2026-05-02-DOC04816-m" data-image-description="" data-image-caption="" data-large-file="https://odd.blog/files/2026/05/2026-05-02-DOC04816-m-1.avif" src="https://odd.blog/files/2026/05/2026-05-02-DOC04816-m-1.avif" alt="Paul Young and Jamie Moses on stage together." class="wp-image-89592749 not-transparent" srcset="https://odd.blog/files/2026/05/2026-05-02-DOC04816-m-1.avif 1310w, https://odd.blog/files/2026/05/2026-05-02-DOC04816-m-1-1280x863.avif 1280w" sizes="auto, (max-width: 1310px) 100vw, 1310px" /></figure>
</div>


<p class="wp-block-paragraph">The show is billed as &#8220;Paul Young &#8211; From No Parlez to The Secret Of Association&#8221; and described as follows, </p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">Paul Young looks back during these intimate shows, that combine conversation and acoustic versions of songs<br></p>



<p class="wp-block-paragraph">Paul Young broke into the big time 40 years ago when No Parlez went to number one and spawned iconic hits like Wherever I Lay My Hat (That’s My Home). More success followed with the number one album The Secret Of Association and the worldwide hit Everytime You Go Away, not forgetting an appearance at Live Aid and more. Paul sustained that success – while having fun in his tex-mex band, Los Pacaminos. Now, he’s looking back during these intimate shows, that combine conversation and acoustic versions of songs. Paul’s meeting fans, singing songs, and telling stories about his incredible career. It’s time to revel in the classic hits and learn the stories behind them in this intimate show.</p>
</blockquote>



<p class="wp-block-paragraph">It&#8217;s a description that, judging by the reaction in the room, almost nobody had read. I hadn&#8217;t either, in fairness. But when it turned into more of a guided tour through the back catalogue than a straight-up gig, a few people in the audience got restless. There was heckling. There was talking. From row five I could still catch most of what was being said on stage, but further back, I suspect the experience was a different one entirely. Having said that, some of the worst heckling came from the benches in front.</p>



<figure class="wp-block-embed aligncenter is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" class="youtube-player" width="750" height="422" src="https://www.youtube.com/embed/46baVUe1iQ0?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe>
</div></figure>



<p class="wp-block-paragraph">Paul&#8217;s voice isn&#8217;t what it once was. He&#8217;s been open about damaging it early in his career, but the stories more than carried the night. The standout for me was his recollection of singing Radio Ga Ga at the Freddie Mercury tribute concert at Wembley in 1992. He talked about looking up and seeing that vast crowd clapping in unison. He was grateful that camera technology had moved on enough by then to put a camera behind him so the people watching at home could see what he was seeing. I&#8217;m paraphrasing, but the line that stuck with me was him saying how amazing it was &#8220;to be Freddie Mercury for five minutes&#8221;.</p>



<p class="wp-block-paragraph">It was funny them suggesting that Roger Taylor was off-stage playing the drums. Before the show started we remarked how similar Paul Young in his advertising poster looked to Roger Taylor.</p>



<p class="wp-block-paragraph">Go in with the right expectations. This isn&#8217;t ninety minutes of non-stop hits. It&#8217;s stories, memories, and a handful of songs, hosted by Paul and his old friend Jamie Moses, whose rapport is genuinely lovely to watch. Treat it like an evening in someone&#8217;s front room rather than a concert, and you&#8217;ll have a good time.</p>

#2026 #cork #Ireland #livemusic #Music #PaulYoung #photo #sonya7rv]]></content:encoded>
					
					<wfw:commentRss>https://odd.blog/2026/05/01/an-evening-with-paul-young/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89592747</post-id>	</item>
		<item>
		<title>Media Picker for Immich: Self-Hosted Photos in WordPress</title>
		<link>https://odd.blog/2026/04/12/media-picker-for-immich-self-hosted-photos-in-wordpress/</link>
					<comments>https://odd.blog/2026/04/12/media-picker-for-immich-self-hosted-photos-in-wordpress/#comments</comments>
		
		<dc:creator><![CDATA[Donncha]]></dc:creator>
		<pubDate>Sun, 12 Apr 2026 18:07:25 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Immich]]></category>
		<category><![CDATA[WordPress plugin]]></category>
		<guid isPermaLink="false">https://odd.blog/?p=89592706</guid>

					<description><![CDATA[I&#8217;ve just released Media Picker for Immich on the WordPress.org plugin directory. It connects WordPress to a self-hosted Immich server so you can browse, search, and insert your photos and videos into posts without copying files around. Immich I run Immich at home. It&#8217;s where my photos now live. They&#8217;re organised, searchable, with facial recognition<a class="more-link" href="https://odd.blog/2026/04/12/media-picker-for-immich-self-hosted-photos-in-wordpress/">Continue reading <span class="screen-reader-text">"Media Picker for Immich: Self-Hosted Photos in WordPress"</span></a>

#Immich #WordPress #WordPressplugin]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I&#8217;ve just released Media Picker for Immich on the WordPress.org plugin directory. It connects WordPress to a self-hosted <a href="https://immich.app/">Immich</a> server so you can browse, search, and insert your photos and videos into posts without copying files around.</p>



<h3 class="wp-block-heading">Immich</h3>



<p class="wp-block-paragraph">I run Immich at home. It&#8217;s where my photos now live. They&#8217;re  organised, searchable, with facial recognition and AI search. My WordPress uploads directory is where photos used to go, and the two never talked to each other. This plugin fixes that.</p>



<h3 class="wp-block-heading">How it works</h3>



<p class="wp-block-paragraph">Point the plugin at your Immich server and give it an API key. You can set a site-wide key or let each user configure their own to connect to their own Immich account.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img data-dominant-color="ec7f80" data-has-transparency="false" style="--dominant-color: #ec7f80;" loading="lazy" decoding="async" width="727" height="478" data-attachment-id="89592707" data-permalink="https://odd.blog/2026/04/12/media-picker-for-immich-self-hosted-photos-in-wordpress/immich-settings-page/" data-orig-file="https://odd.blog/files/2026/04/immich-settings-page.avif" data-orig-size="727,478" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="immich-settings-page" data-image-description="" data-image-caption="" data-large-file="https://odd.blog/files/2026/04/immich-settings-page.avif" src="https://odd.blog/files/2026/04/immich-settings-page.avif" alt="Screenshot 1: Settings → Immich:
Server address and blank site-wide API key, default cache settings" class="wp-image-89592707 not-transparent"/></figure>
</div>


<p class="wp-block-paragraph">If the site-wide key is blank, each user adds their own key on their profile page. All Immich API calls happen server-side.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img data-dominant-color="ec807f" data-has-transparency="false" style="--dominant-color: #ec807f;" loading="lazy" decoding="async" width="607" height="194" data-attachment-id="89592708" data-permalink="https://odd.blog/2026/04/12/media-picker-for-immich-self-hosted-photos-in-wordpress/immich-user-profile-settings/" data-orig-file="https://odd.blog/files/2026/04/immich-user-profile-settings.avif" data-orig-size="607,194" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="immich-user-profile-settings" data-image-description="" data-image-caption="" data-large-file="https://odd.blog/files/2026/04/immich-user-profile-settings.avif" src="https://odd.blog/files/2026/04/immich-user-profile-settings.avif" alt="Screenshot 2: User Profile page, Immich API Key field showing *******." class="wp-image-89592708 not-transparent"/></figure>
</div>


<h3 class="wp-block-heading">Two ways to add media</h3>



<p class="wp-block-paragraph">Once configured, an Immich tab appears in two places.</p>



<p class="wp-block-paragraph">The first is the Media Library grid. Switch to the Immich view and you can search, filter by person, and either Use or Copy assets into WordPress.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img data-dominant-color="9a7e82" data-has-transparency="false" style="--dominant-color: #9a7e82;" loading="lazy" decoding="async" width="1385" height="717" data-attachment-id="89592710" data-permalink="https://odd.blog/2026/04/12/media-picker-for-immich-self-hosted-photos-in-wordpress/media-picker2-2/" data-orig-file="https://odd.blog/files/2026/04/media-picker2-1.avif" data-orig-size="1385,717" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="media-picker2" data-image-description="" data-image-caption="" data-large-file="https://odd.blog/files/2026/04/media-picker2-1.avif" src="https://odd.blog/files/2026/04/media-picker2-1.avif" alt="Screenshot 3: Media → Library, Immich view." class="wp-image-89592710 not-transparent" srcset="https://odd.blog/files/2026/04/media-picker2-1.avif 1385w, https://odd.blog/files/2026/04/media-picker2-1-1280x663.avif 1280w" sizes="auto, (max-width: 1385px) 100vw, 1385px" /></figure>
</div>


<ul class="wp-block-list">
<li><strong>Use</strong> creates a virtual attachment. Nothing is copied; WordPress proxies the media from Immich on demand and caches it locally on first request. Your uploads directory stays lean.</li>



<li><strong>Copy</strong> downloads the original file into wp-content/uploads/ as a normal attachment.</li>
</ul>



<p class="wp-block-paragraph">The same tab shows up in the &#8220;Select or Upload Media&#8221; dialog inside the post editor, so you can pull an Immich photo straight into a post without leaving the editor.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img data-dominant-color="b37c84" data-has-transparency="false" style="--dominant-color: #b37c84;" loading="lazy" decoding="async" width="1369" height="1115" data-attachment-id="89592711" data-permalink="https://odd.blog/2026/04/12/media-picker-for-immich-self-hosted-photos-in-wordpress/media-picker1/" data-orig-file="https://odd.blog/files/2026/04/media-picker1.avif" data-orig-size="1369,1115" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="media-picker1" data-image-description="" data-image-caption="" data-large-file="https://odd.blog/files/2026/04/media-picker1.avif" src="https://odd.blog/files/2026/04/media-picker1.avif" alt="Screenshot 4: Select or Upload Media dialog, Immich tab." class="wp-image-89592711 not-transparent" srcset="https://odd.blog/files/2026/04/media-picker1.avif 1369w, https://odd.blog/files/2026/04/media-picker1-1280x1043.avif 1280w" sizes="auto, (max-width: 1369px) 100vw, 1369px" /></figure>
</div>


<h3 class="wp-block-heading">A few details worth mentioning</h3>



<ul class="wp-block-list">
<li>Videos work too. Proxied videos stream with seek support.</li>



<li>Lightbox. Proxied Immich images in posts open a full-resolution lightbox on click.</li>



<li>Local cache. Proxied media is cached to wp-content/cache/immich/ after the first fetch. Optional cleanup with a configurable lifetime.</li>



<li>Your server stays private. Immich only needs to be reachable from WordPress — not from the public internet. Visitors never connect to Immich directly.</li>



<li>When images are copied over, virtually or otherwise, you can insert them into a post like any other image, which also includes adding them to galleries in posts.</li>
</ul>



<h3 class="wp-block-heading">Get it</h3>



<p class="wp-block-paragraph">Install it from the <a href="https://wordpress.org/plugins/media-picker-for-immich/">WordPress plugin directory</a> or search for &#8220;media picker for Immich&#8221; in the plugins page in WordPress.</p>



<p class="wp-block-paragraph">Feedback and bug reports are welcome. Development is done on GitHub <a href="https://github.com/donnchawp/media-picker-for-immich">here</a>.</p>

#Immich #WordPress #WordPressplugin]]></content:encoded>
					
					<wfw:commentRss>https://odd.blog/2026/04/12/media-picker-for-immich-self-hosted-photos-in-wordpress/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89592706</post-id>	</item>
		<item>
		<title>Trenchangle: Tower Defense on the C64</title>
		<link>https://odd.blog/2026/04/08/trenchangle-tower-defense-on-the-c64/</link>
					<comments>https://odd.blog/2026/04/08/trenchangle-tower-defense-on-the-c64/#comments</comments>
		
		<dc:creator><![CDATA[Donncha]]></dc:creator>
		<pubDate>Wed, 08 Apr 2026 08:59:33 +0000</pubDate>
				<category><![CDATA[C64]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Zzap!64]]></category>
		<guid isPermaLink="false">https://odd.blog/?p=89592652</guid>

					<description><![CDATA[I picked up Issue 31 of Zzap! 64 yesterday evening and had a quick look at the covermount disk. There&#8217;s a few really good-looking games there but one that caught my eye was Trenchangle, a tower defense game! I&#8217;m a sucker for the genre, but it took me several tries to even finish level one.<a class="more-link" href="https://odd.blog/2026/04/08/trenchangle-tower-defense-on-the-c64/">Continue reading <span class="screen-reader-text">"Trenchangle: Tower Defense on the C64"</span></a>

#C64 #Games #Zzap64]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I picked up Issue 31 of <a href="https://www.patreon.com/zzapmagazine">Zzap! 64</a> yesterday evening and had a quick look at the covermount disk. There&#8217;s a few really good-looking games there but one that caught my eye was <a href="https://drmortalwombat.itch.io/trenchangle">Trenchangle</a>, a tower defense game!</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><a href="https://odd.blog/files/2026/04/Screenshot-2026-04-08-at-10.01.14.avif"><img data-dominant-color="82c16e" data-has-transparency="false" style="--dominant-color: #82c16e;" loading="lazy" decoding="async" width="719" height="545" data-attachment-id="89592661" data-permalink="https://odd.blog/2026/04/08/trenchangle-tower-defense-on-the-c64/screenshot-2026-04-08-at-10-01-14/" data-orig-file="https://odd.blog/files/2026/04/Screenshot-2026-04-08-at-10.01.14.avif" data-orig-size="719,545" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Screenshot 2026-04-08 at 10.01.14" data-image-description="" data-image-caption="" data-large-file="https://odd.blog/files/2026/04/Screenshot-2026-04-08-at-10.01.14.avif" src="https://odd.blog/files/2026/04/Screenshot-2026-04-08-at-10.01.14.avif" alt="Zzap!64 disk with cute disk art!" class="wp-image-89592661 not-transparent"/></a></figure>
</div>


<figure data-carousel-extra='{&quot;blog_id&quot;:2,&quot;permalink&quot;:&quot;https://odd.blog/2026/04/08/trenchangle-tower-defense-on-the-c64/&quot;}'  class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-large"><img data-dominant-color="138080" data-has-transparency="false" style="--dominant-color: #138080;" loading="lazy" decoding="async" width="384" height="272" data-attachment-id="89592653" data-permalink="https://odd.blog/2026/04/08/trenchangle-tower-defense-on-the-c64/cvjqdr/" data-orig-file="https://odd.blog/files/2026/04/cvJQdR.avif" data-orig-size="384,272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="cvJQdR" data-image-description="" data-image-caption="" data-large-file="https://odd.blog/files/2026/04/cvJQdR.avif" data-id="89592653" src="https://odd.blog/files/2026/04/cvJQdR.avif" alt="Welcome screen" class="wp-image-89592653 not-transparent"/></figure>



<figure class="wp-block-image size-large"><img data-dominant-color="2c8180" data-has-transparency="false" style="--dominant-color: #2c8180;" loading="lazy" decoding="async" width="384" height="272" data-attachment-id="89592654" data-permalink="https://odd.blog/2026/04/08/trenchangle-tower-defense-on-the-c64/kf5pik/" data-orig-file="https://odd.blog/files/2026/04/Kf5PIK.avif" data-orig-size="384,272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Kf5PIK" data-image-description="" data-image-caption="" data-large-file="https://odd.blog/files/2026/04/Kf5PIK.avif" data-id="89592654" src="https://odd.blog/files/2026/04/Kf5PIK.avif" alt="gameplay" class="wp-image-89592654 not-transparent"/></figure>
</figure>


<div class="wp-block-image">
<figure class="aligncenter size-full"><a href="https://odd.blog/files/2026/04/Screenshot-2026-04-08-at-14.32.31.avif"><img data-dominant-color="c17d81" data-has-transparency="false" style="--dominant-color: #c17d81;" loading="lazy" decoding="async" width="910" height="665" data-attachment-id="89592687" data-permalink="https://odd.blog/2026/04/08/trenchangle-tower-defense-on-the-c64/screenshot-2026-04-08-at-14-32-31/" data-orig-file="https://odd.blog/files/2026/04/Screenshot-2026-04-08-at-14.32.31.avif" data-orig-size="910,665" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Screenshot 2026-04-08 at 14.32.31" data-image-description="" data-image-caption="" data-large-file="https://odd.blog/files/2026/04/Screenshot-2026-04-08-at-14.32.31.avif" src="https://odd.blog/files/2026/04/Screenshot-2026-04-08-at-14.32.31.avif" alt="" class="wp-image-89592687 not-transparent"/></a></figure>
</div>


<p class="wp-block-paragraph">I&#8217;m a sucker for the genre, but it took me several tries to even finish level one. I should have added arrows to the arrow tower instead of expanding the tech tree available. Lesson learned.</p>



<p class="wp-block-paragraph">The game doesn&#8217;t require a joystick, and it&#8217;s possibly easier to play in an emulator because you can use the cursor keys to navigate. I couldn&#8217;t see anywhere to redefine keys so that joystick might make it easier to play on a real machine.</p>



<p class="wp-block-paragraph">Game progress can be saved and reset, which means I&#8217;ll definitely be coming back to this game for quick plays. It looks like it saves in a file called &#8220;GEOTSTATE&#8221;, which wasn&#8217;t there when I first opened the D64 file so it can be deleted.</p>



<p class="wp-block-paragraph">There is a cracked and trained copy on CSDB, but this is a brand new C64 game. Support the developer and pay what you want on <a href="https://drmortalwombat.itch.io/trenchangle">their itch.io page</a>.</p>

#C64 #Games #Zzap64]]></content:encoded>
					
					<wfw:commentRss>https://odd.blog/2026/04/08/trenchangle-tower-defense-on-the-c64/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89592652</post-id>	</item>
		<item>
		<title>My First DMCA Notice</title>
		<link>https://odd.blog/2026/04/07/my-first-dmca-notice/</link>
					<comments>https://odd.blog/2026/04/07/my-first-dmca-notice/#comments</comments>
		
		<dc:creator><![CDATA[Donncha]]></dc:creator>
		<pubDate>Tue, 07 Apr 2026 16:03:02 +0000</pubDate>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[Cyanogenmod]]></category>
		<category><![CDATA[dmca]]></category>
		<category><![CDATA[google]]></category>
		<guid isPermaLink="false">https://odd.blog/?p=89592630</guid>

					<description><![CDATA[Awww, well look at that. This ancient post about using Cyanogenmod on the Galaxy S2 has been reported for copyright infringement to Google. Along with dozens of porn sites. I didn&#8217;t know Cyanogenmod was just a hot topic! Anyway, I&#8217;m not going to do anything about it, but I just wanted to mark the occasion.

#Android #copyright #Cyanogenmod #dmca #google]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Awww, well look at that.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img data-dominant-color="ec7f80" data-has-transparency="false" style="--dominant-color: #ec7f80;" loading="lazy" decoding="async" width="543" height="261" data-attachment-id="89592631" data-permalink="https://odd.blog/2026/04/07/my-first-dmca-notice/screenshot-2026-04-07-at-16-56-54/" data-orig-file="https://odd.blog/files/2026/04/Screenshot-2026-04-07-at-16.56.54.avif" data-orig-size="543,261" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Screenshot 2026-04-07 at 16.56.54" data-image-description="" data-image-caption="" data-large-file="https://odd.blog/files/2026/04/Screenshot-2026-04-07-at-16.56.54.avif" src="https://odd.blog/files/2026/04/Screenshot-2026-04-07-at-16.56.54.avif" alt="DMCA notice with the following text:

 Google notice regarding copyright-related content

To the owner of https://odd.blog/,

Google has been notified that your site allegedly infringes upon the copyrights of others and violates applicable copyright laws in your region.

It is Google's policy to remove copyrighted content when the copyright holder or their authorised representative alleges that a use is infringing. Therefore, we are in the process of removing the reported content from Google search results for users globally." class="wp-image-89592631 not-transparent"/></figure>
</div>


<p class="wp-block-paragraph">This ancient post about using <a href="https://odd.blog/2013/04/01/yes-the-cyanogenmod-10-1-upgrade-is-worth-it/">Cyanogenmod on the Galaxy S2</a> has been reported for copyright <a href="https://lumendatabase.org/notices/82220771">infringement</a> to Google. Along with dozens of porn sites. I didn&#8217;t know Cyanogenmod was just a hot topic!</p>



<p class="wp-block-paragraph">Anyway, I&#8217;m not going to do anything about it, but I just wanted to mark the occasion.</p>

#Android #copyright #Cyanogenmod #dmca #google]]></content:encoded>
					
					<wfw:commentRss>https://odd.blog/2026/04/07/my-first-dmca-notice/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89592630</post-id>	</item>
	</channel>
</rss>