<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Decemberist]]></title><description><![CDATA[Hi 🙋🏻‍♂️, I'm a computer guy.]]></description><link>https://decemberist.nl</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 11:31:57 GMT</lastBuildDate><atom:link href="https://decemberist.nl/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[First post]]></title><description><![CDATA[This blog will stay mostly empty, unless I have anything to tell myself.
I've imported some old Wordpress posts I had lying around. They've probably lost their value.]]></description><link>https://decemberist.nl/first-post</link><guid isPermaLink="true">https://decemberist.nl/first-post</guid><category><![CDATA[first post]]></category><category><![CDATA[Meta]]></category><dc:creator><![CDATA[Tjeerd Hans]]></dc:creator><pubDate>Sat, 05 Jun 2021 19:38:05 GMT</pubDate><content:encoded><![CDATA[<p>This blog will stay mostly empty, unless I have anything to tell myself.</p>
<p>I've imported some old Wordpress posts I had lying around. They've probably lost their value.</p>
]]></content:encoded></item><item><title><![CDATA[Disable CompatTelRunner.exe which consumes a lot of I/O and CPU]]></title><description><![CDATA[From https://superuser.com/questions/944067/windows-disk-i-o-100-at-boot-for-20-minutes
The exe is here:
C:\Windows\System32\CompatTelRunner.exe
Go to: 

Computer Management – System Tools – Task Schedule Library – Microsoft – Windows – Application E...]]></description><link>https://decemberist.nl/disable-compattelrunnerexe-which-consumes-a-lot-of-io-and-cpu</link><guid isPermaLink="true">https://decemberist.nl/disable-compattelrunnerexe-which-consumes-a-lot-of-io-and-cpu</guid><dc:creator><![CDATA[Tjeerd Hans]]></dc:creator><pubDate>Fri, 29 Sep 2017 07:44:26 GMT</pubDate><content:encoded><![CDATA[<p>From <a target="_blank" href="https://superuser.com/questions/944067/windows-disk-i-o-100-at-boot-for-20-minutes">https://superuser.com/questions/944067/windows-disk-i-o-100-at-boot-for-20-minutes</a></p>
<p>The exe is here:
<code>C:\Windows\System32\CompatTelRunner.exe</code></p>
<p>Go to: </p>
<blockquote>
<p>Computer Management – System Tools – Task Schedule Library – Microsoft – Windows – Application Experience<br />or<br />Start – Run – taskschd.msc<br />Name: Microsoft Compatibility Appraiser<br />Location: \Microsoft\Windows\Application Experience<br />Collects program telemetry information if opted-in to the Microsoft Customer Experience Improvement Program.<br /><strong>→ Disable</strong></p>
</blockquote>
]]></content:encoded></item><item><title><![CDATA[Vanishing pid file and directory in /var/run]]></title><description><![CDATA[Sickrage pid file kept vanishing after reboots. Turns out /var/run is tmpfs. Use tmpfiles.d!
https://www.freedesktop.org/software/systemd/man/tmpfiles.d.html
/etc/tmpfiles.d/sickrage.conf:
D  /var/run/sickrage 0755 sickrage sickrage
Found through htt...]]></description><link>https://decemberist.nl/vanishing-pid-file-and-directory-in-varrun</link><guid isPermaLink="true">https://decemberist.nl/vanishing-pid-file-and-directory-in-varrun</guid><dc:creator><![CDATA[Tjeerd Hans]]></dc:creator><pubDate>Tue, 03 Jan 2017 18:32:10 GMT</pubDate><content:encoded><![CDATA[<p>Sickrage pid file kept vanishing after reboots. Turns out /var/run is tmpfs. Use tmpfiles.d!</p>
<p><a target="_blank" href="https://www.freedesktop.org/software/systemd/man/tmpfiles.d.html">https://www.freedesktop.org/software/systemd/man/tmpfiles.d.html</a></p>
<p>/etc/tmpfiles.d/sickrage.conf:</p>
<p>D  /var/run/sickrage 0755 sickrage sickrage</p>
<p>Found through <a target="_blank" href="https://blog.hqcodeshop.fi/archives/93-Handling-varrun-with-systemd.html">https://blog.hqcodeshop.fi/archives/93-Handling-varrun-with-systemd.html</a></p>
]]></content:encoded></item><item><title><![CDATA[AzureWebJobsDashboard connection string]]></title><description><![CDATA[Connecting to an existing storage account that has only blob storage didn’t work, and I got the following (unhelpful) error message:
Failed to connect with the _accountname_ storage account using credentials provided in the connection string.  
In yo...]]></description><link>https://decemberist.nl/azurewebjobsdashboard-connection-string</link><guid isPermaLink="true">https://decemberist.nl/azurewebjobsdashboard-connection-string</guid><dc:creator><![CDATA[Tjeerd Hans]]></dc:creator><pubDate>Tue, 29 Nov 2016 13:45:38 GMT</pubDate><content:encoded><![CDATA[<p>Connecting to an existing storage account that has only blob storage didn’t work, and I got the following (unhelpful) error message:</p>
<p><code>Failed to connect with the _accountname_ storage account using credentials provided in the connection string.  
In your Microsoft Azure Website configuration you must set a connection string named AzureWebJobsDashboard by using the following format DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY pointing to the Microsoft Azure Storage account where the Microsoft Azure WebJobs Runtime logs are stored.</code></p>
<p>Solution: use a new general purpose storage account.</p>
]]></content:encoded></item><item><title><![CDATA[RabbitMQ Management on Docker on Azure]]></title><description><![CDATA[Ran into issues using the docker image for RabbitMQ on Azure.
https://hub.docker.com/_/rabbitmq/https://github.com/docker-library/rabbitmq/issues/6#issuecomment-97721548
$ sudo bash  
$ cd /etc/docker/compose  
$ docker-compose down  
$ nano /etc/doc...]]></description><link>https://decemberist.nl/rabbitmq-management-on-docker-on-azure</link><guid isPermaLink="true">https://decemberist.nl/rabbitmq-management-on-docker-on-azure</guid><dc:creator><![CDATA[Tjeerd Hans]]></dc:creator><pubDate>Tue, 08 Nov 2016 10:06:05 GMT</pubDate><content:encoded><![CDATA[<p>Ran into issues using the docker image for RabbitMQ on Azure.</p>
<p><code>https://hub.docker.com/_/rabbitmq/</code><br /><code>https://github.com/docker-library/rabbitmq/issues/6#issuecomment-97721548</code></p>
<p><code>$ sudo bash  
$ cd /etc/docker/compose  
$ docker-compose down  
$ nano /etc/docker/compose/docker-compose.yml</code></p>
<p>rabbitmq:<br /># environment:<br /># – RABBITMQ_NODENAME=qti-rabbitmq<br />hostname: qti-rabbitmq<br />image: rabbitmq<br />ports:<br />– 5672:5672<br />– 15672:15672<br />restart: always<br />volumes:<br />– /var/lib/rabbitmq:/var/lib/rabbitmq</p>
<p><code>$ docker-compose up -d  
$ docker exec compose_rabbitmq_1 rabbitmq-plugins enable rabbitmq_management  
$ docker exec compose_rabbitmq_1 rabbitmqctl status</code></p>
<p>Then, login in to the rabbitmq management page at http://[public-ip]:15672 with guest:guest</p>
]]></content:encoded></item></channel></rss>