<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Blog – Yeri Tiete</title>
    <link>https://yeri.be/tag/blog/</link>
    <description>Yeri Tiete&#39;s blog</description>
    <language>en</language>
    <copyright>© Yeri Tiete</copyright>
    <lastBuildDate>Sun, 17 May 2026 06:32:54 +0200</lastBuildDate>
    <atom:link href="https://yeri.be/tag/blog/index.xml" rel="self" type="application/rss+xml" />
    
    <item>
      <title>Scheduling posts on a static blog</title>
      <link>https://yeri.be/scheduling-posts-on-a-static-blog/</link>
      <pubDate>Sun, 17 May 2026 06:32:54 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/scheduling-posts-on-a-static-blog/</guid><enclosure url="https://static.yeri.be/posts/scheduled-posts/box.mp4" length="0" type="video/mp4" />
      <description>&lt;p&gt;One of the things I missed &lt;a href=&#34;https://yeri.be/from-wordpress-to-hugo/&#34;&gt;moving from WordPress to Hugo&lt;/a&gt;: scheduled posts.&#xA;WP just&amp;hellip; does that. Set a future date, and forget about it.&lt;/p&gt;&#xA;&lt;p&gt;And static site generators don&amp;rsquo;t&amp;hellip; The site only rebuilds when you &lt;code&gt;git push&lt;/code&gt;, and that&amp;rsquo;s it. 😢&lt;/p&gt;&#xA;&lt;p&gt;Why schedule posts, you ask? Because at times I write 3-4 posts in a day, and I don&amp;rsquo;t want to spam. ¯\&lt;em&gt;(ツ)&lt;/em&gt;/¯ I have a rule that there should only be a single published post a day, and if I know I&amp;rsquo;m out of topics (especially for FlatTurtle) I tend to add a week or 2 between posts to spread it out evenly.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><video controls preload="metadata"><source src="https://static.yeri.be/posts/scheduled-posts/box.mp4" type="video/mp4"></video></p><p>One of the things I missed <a href="/from-wordpress-to-hugo/">moving from WordPress to Hugo</a>: scheduled posts.
WP just&hellip; does that. Set a future date, and forget about it.</p>
<p>And static site generators don&rsquo;t&hellip; The site only rebuilds when you <code>git push</code>, and that&rsquo;s it. 😢</p>
<p>Why schedule posts, you ask? Because at times I write 3-4 posts in a day, and I don&rsquo;t want to spam. ¯\<em>(ツ)</em>/¯ I have a rule that there should only be a single published post a day, and if I know I&rsquo;m out of topics (especially for FlatTurtle) I tend to add a week or 2 between posts to spread it out evenly.</p>
<p>So I wrote (aka vibe coded) a little thing about a year or two ago, originally called <em>BlogTurtle Rebuilder</em>, because it was meant for <a href="https://flatturtle.xyz" target="_blank" rel="noopener noreferrer">FlatTurtle</a>&rsquo;s hugo <a href="https://flatturtle.link/blog" target="_blank" rel="noopener noreferrer">blog</a>. I&rsquo;ve since repurposed it for this site.</p>
<p>The flow is quite simple:</p>
<ol>
<li>I push a Markdown post to GitLab with <code>date = &quot;...&quot;</code> set to whenever I want it published.</li>
<li>Gitlab runs CI and deploys to Cloudflare Pages. Hugo will, however, hide posts with a <code>date</code> in the future.</li>
<li>On push, GitLab also pings a webhook (a docker container on a server).</li>
<li>Said container does a <code>git pull</code> and scans every <code>.md</code> for that date field.</li>
<li>Anything in the future gets an in-memory timer for that exact moment. Anything already due gets ignored at Gitlab CI would&rsquo;ve deployed it.</li>
<li>When the timer pops, it triggers the GitLab CI/CD pipeline (through another webhook) that does a new Hugo build + deploy.</li>
<li>As an added bonus, I get an email telling me the post is live, with a <a href="https://culturedcode.com/things/" target="_blank" rel="noopener noreferrer">Things3</a> deep-link to add a follow-up task to share it somewhere. It&rsquo;s one click away.</li>
</ol>
<p>That&rsquo;s the whole thing.</p>
]]></content:encoded>
      <category>software</category><category>www</category>
      <category>blog</category><category>docker</category><category>python</category><category>hugo</category><category>gitlab</category><category>flatturtle</category>
    </item>
    
    <item>
      <title>From WordPress to Hugo</title>
      <link>https://yeri.be/from-wordpress-to-hugo/</link>
      <pubDate>Sun, 10 May 2026 23:36:53 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/from-wordpress-to-hugo/</guid><enclosure url="https://static.yeri.be/posts/from-wp-to-hugo/new-site.png" length="0" type="image/png" />
      <description>&lt;p&gt;Can&amp;rsquo;t believe it&amp;rsquo;s been &lt;a href=&#34;https://yeri.be/first-post/&#34;&gt;so many years&lt;/a&gt;&amp;hellip; But the time has come to say farewell to &lt;a href=&#34;https://yeri.be/tag/wordpress/&#34;&gt;WordPress&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;It&amp;rsquo;s been on my mind for years, but never really put in the effort to export so many years worth of posts, media, etc to a better solution&amp;hellip; It felt like a Herculean job and everytime I thought about it for more than 3 minutes, I dreaded the idea.&lt;/p&gt;&#xA;&lt;p&gt;But since the future&amp;rsquo;s (finally) here, thanks to AI, I was able to export it all without fiddling with broken or paid addons and get everything in Hugo within a few hours worth of work. The site lives (for now) on Cloudflare, with the media in R2. The deploy via Gitlab-ci is (or should, let&amp;rsquo;s find out after this post 🥲) be fully automated and media should sync up in R2.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://static.yeri.be/posts/from-wp-to-hugo/new-site.png" alt="From WordPress to Hugo"></p><p>Can&rsquo;t believe it&rsquo;s been <a href="https://yeri.be/first-post/">so many years</a>&hellip; But the time has come to say farewell to <a href="https://yeri.be/tag/wordpress/">WordPress</a>.</p>
<p>It&rsquo;s been on my mind for years, but never really put in the effort to export so many years worth of posts, media, etc to a better solution&hellip; It felt like a Herculean job and everytime I thought about it for more than 3 minutes, I dreaded the idea.</p>
<p>But since the future&rsquo;s (finally) here, thanks to AI, I was able to export it all without fiddling with broken or paid addons and get everything in Hugo within a few hours worth of work. The site lives (for now) on Cloudflare, with the media in R2. The deploy via Gitlab-ci is (or should, let&rsquo;s find out after this post 🥲) be fully automated and media should sync up in R2.</p>
<p>There&rsquo;s not a single reason I was fed up with WordPress, it was a mix of <a href="https://www.reddit.com/r/Wordpress/comments/1g2jo1j/explain_me_the_wordpress_drama_like_im_5/" target="_blank" rel="noopener noreferrer">drama</a>, the potential security issues (althought it was all running in containers, but still), the fact WP felt slower and slower (with a lot of bloatware), but also really because I started to hate the editor. It was bulky and annoying and a real pain to deal with lately.</p>
<p>I&rsquo;ve been running Hugo for 2-3 years now at <a href="https://blog.flatturtle.com/" target="_blank" rel="noopener noreferrer">FlatTurtle</a>, and started to love the simplicity and speed. So that&rsquo;s what I went with.</p>
<p>Nothing more to say about <a href="https://static.yeri.be/posts/from-wp-to-hugo/new-site.png" target="_blank" rel="noopener noreferrer">it</a> &hellip; -.-)</p>
]]></content:encoded>
      <category>misc</category>
      <category>wordpress</category><category>tuinslak</category><category>blog</category>
    </item>
    
    <item>
      <title>Feed2Toot</title>
      <link>https://yeri.be/feed2toot/</link>
      <pubDate>Sat, 12 Nov 2022 16:36:32 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/feed2toot/</guid><enclosure url="https://static.yeri.be/2023/10/toot.jpg" length="0" type="image/jpeg" />
      <description>&lt;p&gt;Started looking into a service to auto-post from this blog onto my &lt;a href=&#34;https://m.superuser.one&#34; data-type=&#34;URL&#34; data-id=&#34;m.superuser.one&#34; target=&#34;_blank&#34; rel=&#34;noreferrer noopener&#34;&gt;Mastodon&lt;/a&gt; feed. &lt;a href=&#34;https://feed2toot.readthedocs.io/en/latest/&#34; target=&#34;_blank&#34; rel=&#34;noreferrer noopener&#34;&gt;Feed2Toot&lt;/a&gt; fit the bill perfectly. &lt;/p&gt;&#xA;&lt;p&gt;I wanted to run the whole thing from a Docker container, though, so I&#39;ll quickly write a how-to.&lt;/p&gt;&#xA;&lt;p&gt;This whole thing runs from a Raspberry Pi, as root. No k8s or k3s for me. The path I use is &lt;code&gt;/root/git/feed2toot/&lt;/code&gt;, so be sure to modify that to whatever you&#39;re using.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://static.yeri.be/2023/10/toot.jpg" alt="Feed2Toot"></p><p>Started looking into a service to auto-post from this blog onto my <a href="https://m.superuser.one" data-type="URL" data-id="m.superuser.one" target="_blank" rel="noreferrer noopener">Mastodon</a> feed. <a href="https://feed2toot.readthedocs.io/en/latest/" target="_blank" rel="noreferrer noopener">Feed2Toot</a> fit the bill perfectly. </p>
<p>I wanted to run the whole thing from a Docker container, though, so I'll quickly write a how-to.</p>
<p>This whole thing runs from a Raspberry Pi, as root. No k8s or k3s for me. The path I use is <code>/root/git/feed2toot/</code>, so be sure to modify that to whatever you're using.</p>
<p>First off, <a rel="noreferrer noopener" href="https://feed2toot.readthedocs.io/en/latest/configure.html" target="_blank">get your credentials</a> for the app. You can either install the Feed2Toot package on a system (i.e. throwaway VM, to keep it clean), or use the Docker container below, but add <code>RUN apk add bash</code> and change the last line to <code>CMD ["bash"]</code> and then chroot into it via <code>docker exec -it feed2toot bash</code>.</p>
<p>This will generate two files (<code>feed2toot_clientcred.txt</code> and <code>feed2toot_usercred.txt</code>). Be sure to save these.</p>
<p>You can also try to run Feed2Toot at least once to make sure it's working and to fine-tune your <code>ini</code> file. This is mine:</p>
<pre class="wp-block-code"><code>&#91;mastodon]
instance_url=https://m.superuser.one
; Here you need the two files created by register_feed2toot_app
user_credentials=/etc/feed2toot/feed2toot_usercred.txt
client_credentials=/etc/feed2toot/feed2toot_clientcred.txt
; Default visibility is public, but you can override it:
; toot_visibility=unlisted

&#91;cache]
cachefile=/feed2toot/feed2toot.db
cache_limit=10000

&#91;lock]
lock_file=/var/lock/feed2toot.lock
lock_timeout=3600

&#91;rss]
uri=https://yeri.be/feed
; uri_list=/feed2toot/rsslist.txt
toot={title} {link}
; toot_max_len=500
title_pattern=Open Source
title_pattern_case_sensitive=true
no_uri_pattern_no_global_pattern=true
; ignore_ssl=false

&#91;hashtaglist]
; several_words_hashtags_list=/feed2toot/hashtags.txt
; no_tags_in_toot=false

&#91;feedparser]
; accept_bozo_exceptions=true

&#91;media]
; custom=/var/lib/feed2toot/media/logo.png</code></pre>
<p>I have three other files to make this work, first off <code>Dockerfile</code>:</p>
<pre class="wp-block-code"><code>FROM python:3.6-alpine
RUN pip3 install feed2toot &amp;&amp; mkdir -p /etc/feed2toot/
COPY feed2toot.ini feed2toot_clientcred.txt feed2toot_usercred.txt /etc/feed2toot/
VOLUME /feed2toot/
CMD &#91;"feed2toot", "-c", "/etc/feed2toot/feed2toot.ini"]</code></pre>
<p>The script I run to build the container (<code>start.sh</code>):</p>
<pre class="wp-block-code"><code>#!/bin/bash
git pull

BASEIMAGE=`cat Dockerfile | grep FROM | awk '{print $2}'`
docker pull $BASEIMAGE
docker stop feed2toot
docker rm feed2toot
docker build -t feed2toot .
./run.sh</code></pre>
<p>And finally, the script to run the container every so often (<code>run.sh</code>):</p>
<pre class="wp-block-code"><code>#!/bin/bash
docker run -d --rm -v /srv/mastodon/feed2toot/:/feed2toot/ --name feed2toot feed2toot</code></pre>
<p>This will save the database file under <code>/srv/mastodon/</code>, to preserve states across rebuilds.</p>
<p>Note that once Feed2Toot runs, it'll exit, and the container will be stopped. So it does not automatically run all the time. </p>
<p>So, you'll want to run this every so often. You can add a file to <code>/etc/cron.d/</code> to run it, for example, every six hours:</p>
<pre class="wp-block-code"><code>#
# cron-jobs for feed2toot
#

MAILTO=root

0 */6 * * *		root	if &#91; -x /root/git/feed2toot/run.sh ]; then /root/git/feed2toot/run.sh &gt;/dev/null; fi</code></pre>
<p>That's it. Should do the trick. It'll now post stuff from your RSS feed onto your timeline. </p>
<p>Oh, and Jeroen has <a rel="noreferrer noopener" href="https://www.forceflow.be/2022/11/11/moving-from-twitter-to-mastodon/" target="_blank">a good post</a> about Mastodon.</p>
]]></content:encoded>
      <category>linux</category><category>software</category><category>virtualisation</category>
      <category>blog</category><category>docker</category><category>fediverse</category><category>mastodon</category>
    </item>
    
    <item>
      <title>The World&#39;s Deadliest Thing</title>
      <link>https://yeri.be/the-worlds-deadliest-thing/</link>
      <pubDate>Tue, 23 Nov 2021 17:08:00 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/the-worlds-deadliest-thing/</guid><enclosure url="https://static.yeri.be/2021/11/pexels-photo-5584279.jpeg" length="0" type="image/jpeg" />
      <description>&lt;blockquote class=&#34;wp-block-quote&#34;&gt;&lt;p&gt;Around 1895, whilst investigating the case of a group of musicians who had died after eating cooked ham, a Belgian scientist called Emile van Ermengem identified the bacteria at the heart of Kerber’s sausage poisonings, a disease that had been coined Botulism, after bolutus, the Latin for sausage. Later work showed that these bacteria, which Van Ermengem named Clostridium Botulinum, would only grow under certain conditions. The inside of a piece of badly stored, processed meat was ideal, but when conditions changed, the bacteria would shut down, forming highly resistant spores and remaining in that form until conditions were right again for growth.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://static.yeri.be/2021/11/pexels-photo-5584279.jpeg" alt="The World&#39;s Deadliest Thing"></p><blockquote class="wp-block-quote"><p>Around 1895, whilst investigating the case of a group of musicians who had died after eating cooked ham, a Belgian scientist called Emile van Ermengem identified the bacteria at the heart of Kerber’s sausage poisonings, a disease that had been coined Botulism, after bolutus, the Latin for sausage. Later work showed that these bacteria, which Van Ermengem named Clostridium Botulinum, would only grow under certain conditions. The inside of a piece of badly stored, processed meat was ideal, but when conditions changed, the bacteria would shut down, forming highly resistant spores and remaining in that form until conditions were right again for growth.</p><p>A few years later, scientists discovered something even more remarkable. The spores that produce these deadly bacteria were almost everywhere. They were found in the soil, on the surface of vegetables, in animal faeces and within riverbeds. They could survive being boiled, being frozen, and cope with highly acidic environments. Thankfully, these spores were also harmless, passing through humans unchanged if ingested. But under the correct conditions, they would turn back into bacteria, producing a deadly neurotoxin. If this toxin was ingested, even in the tiniest quantities imaginable, it would produce a slow paralysis moving down the body, eventually shutting down vital processes like breathing. For anyone unlucky enough to consume it, the survival rate was around 60%.</p><p>[...]</p><p>It is perhaps strange that such a rare poisoning event shapes our modern food system so profoundly, but this is perhaps because the toxin produced is one of, if not the, deadliest on earth. It has been estimated that in its pure crystalline form, six grams of botulism toxin, about one teaspoon full, would be enough to kill 200 million people. The lethal dose when consumed orally is around 30 billionths of a gram, which if you want a relatable comparison, is about the same as if you cut a single poppy seed into ten thousand equal pieces and ate one of them. It is an amount so tiny, it really doesn’t make sense.</p><p>[...]</p><p>The rapid, long-lasting and highly noticeable cosmetic effects made Botox a near instant success. In small doses, the same nerve damage that causes fatal paralysis in poisoning cases, helps to remove forehead creases and crow’s feet, with the only side effects being an inability to express emotion using your face, and an occasional case of drooping eyelids. A distinctive wrinkle-free and slightly startled look became fashionable among the Hollywood A-List, and eventually across the world. It is of course deeply ironic that many celebrities who publicly advocated a clean living, chemical-free lifestyle, were also early adopters of a treatment that involves injecting the deadliest substance on earth into your face (looking at you, Paltrow). If any of them were surprised at this seeming paradox, they certainly didn’t show it.</p><p>[...]</p><p>[I]t is likely that the pure crystalline form of Botulinum toxin is now also the most valuable, with an estimated street value of $100 trillion per kilogram. The entire global face paralysing industry is supported by an annual production of just a few milligrams.</p><cite><a href="https://www.the-angry-chef.com/blog/the-worlds-deadliest-thing" target="_blank" rel="noreferrer noopener">Source</a>.</cite></blockquote>
<p>Never linked Botulinum and Botox to one another. Wow. </p>
]]></content:encoded>
      <category>misc</category>
      <category>bacteria</category><category>blog</category><category>virus</category>
    </item>
    
    <item>
      <title>shanwong.design</title>
      <link>https://yeri.be/shanwong-design/</link>
      <pubDate>Wed, 26 May 2021 01:11:32 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/shanwong-design/</guid><enclosure url="https://static.yeri.be/2021/05/shanwong.design.png" length="0" type="image/png" />
      <description>&lt;p&gt;Shameless plug to get Google to index &lt;a href=&#34;http://shanwong.design&#34; target=&#34;_blank&#34; rel=&#34;noreferrer noopener&#34;&gt;the website&lt;/a&gt; faster. ¯\_(ツ)_/¯ &lt;/p&gt;&#xA;&lt;p&gt;I was playing around with the idea to up the marketing and social media stuff for &lt;a href=&#34;http://shanwong.com&#34; target=&#34;_blank&#34; rel=&#34;noreferrer noopener&#34;&gt;Shan&lt;/a&gt; (WFH is taking its toll -- I was bored, always doing the same, saw Shan struggle to do both creative and marketing work, and I had plenty of brainjuice left -- and in all fairness I was probably getting a bit frustrated and going &#34;why don&#39;t you just ...&#34;. So yeah, decided to actually help out and experiment some). &lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://static.yeri.be/2021/05/shanwong.design.png" alt="shanwong.design"></p><p>Shameless plug to get Google to index <a href="http://shanwong.design" target="_blank" rel="noreferrer noopener">the website</a> faster. ¯\_(ツ)_/¯ </p>
<p>I was playing around with the idea to up the marketing and social media stuff for <a href="http://shanwong.com" target="_blank" rel="noreferrer noopener">Shan</a> (WFH is taking its toll -- I was bored, always doing the same, saw Shan struggle to do both creative and marketing work, and I had plenty of brainjuice left -- and in all fairness I was probably getting a bit frustrated and going "why don't you just ...". So yeah, decided to actually help out and experiment some). </p>
<p>Since medio April I have been running most of the social media accounts, having content scheduled using Hootsuite, increasing followers, etc. </p>
<p>I did some of this before, but it was mostly some random paid advertisement without a real strategy that didn't lead to anything very substantial. The ROI wasn't really there and was mostly just a gamble -- so far we've had more leads from organic growth than from paid ads on Google or Facebook/Instagram. Soooooo something must be wrong there...?!</p>
<p>Another thing that was missing to make her more prominent as SME (subject matter expert) was to have all the knowledge and experience she has more publicly available; ie give some away for free (and help those that wouldn't hire the services anyway), and then provide enough of a teaser to reel in customers that want more and have budget. The blog will also hold some reviews, plug some contractors and suppliers (create a bit of a win-win situation and platform), etc. </p>
<p>So yeah -- I suddenly had this epiphany to set up a <a href="https://shanwong.design/" target="_blank" rel="noreferrer noopener">blog</a> (using <a href="http://medium.com/@yeritiete" target="_blank" rel="noreferrer noopener">Medium</a> -- and I may have been late to the party, but I've been watching and wanted to get to know more about the platform -- and so far Medium actually has quite some interesting articles). </p>
<p>Got some <a href="https://shanwong.design/pams-journey-from-house-to-home" target="_blank" rel="noreferrer noopener">interviews</a> going with <a href="https://shanwong.design/made-by-jan-fbda5eec7f50" target="_blank" rel="noreferrer noopener">clients</a>, show casing <a href="https://shanwong.design/off-duty-pilates-studio-7c8b2c6a14f8" target="_blank" rel="noreferrer noopener">some projects</a> (the <a href="https://shanwong.com/projects/" target="_blank" rel="noreferrer noopener">portfolio</a> is nice, but doesn't have a lot of written content) have some posts about what's going on in <a href="https://shanwong.design/shan-wong-bf4c5be2c7a1" target="_blank" rel="noreferrer noopener">Shan</a>'s mind (those are the ones that take time as Shan needs to sit down and actually give me content) and even wrote about <a href="https://shanwong.design/renovation-of-a-hdb-unit-in-telok-blangah-crescent-singapore-c2778dfc530a" target="_blank" rel="noreferrer noopener">our house</a>. :)   </p>
<p>So let's see how that works out -- but so far it's been worth it. </p>
]]></content:encoded>
      <category>misc</category>
      <category>blog</category><category>interior</category><category>shanwong</category><category>singapore</category>
    </item>
    
    <item>
      <title>Theme</title>
      <link>https://yeri.be/theme/</link>
      <pubDate>Sat, 27 Dec 2014 06:47:34 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/theme/</guid>
      <description>&lt;p&gt;I had the &lt;a href=&#34;https://yeri.be/theme-blog-and-stuff&#34;&gt;same theme&lt;/a&gt; for over four years. I&amp;rsquo;ve made quite a few custom css and PHP edits myself, and it had been &lt;a href=&#34;http://azeemazeez.com/blogs/white-as-milk/&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;outdated for ages&lt;/a&gt;&amp;hellip; But it served me well.&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: center;&#34;&gt;&lt;a href=&#34;https://static.yeri.be/2014/12/theme-2011.png&#34;&gt;&lt;img class=&#34;alignnone size-full wp-image-6554&#34; src=&#34;https://static.yeri.be/2014/12/theme-2011.png&#34; alt=&#34;theme-2011&#34; width=&#34;1817&#34; height=&#34;1192&#34; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;However, it&amp;rsquo;s now time for &lt;a href=&#34;https://wordpress.org/themes/opal&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;something new&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: center;&#34;&gt;&lt;a href=&#34;https://static.yeri.be/2014/12/theme-2015.png&#34;&gt;&lt;img class=&#34;alignnone size-full wp-image-6542&#34; src=&#34;https://static.yeri.be/2014/12/theme-2015.png&#34; alt=&#34;theme-2015&#34; width=&#34;1411&#34; height=&#34;1174&#34; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;As always, as minimalistic as possible.&lt;/p&gt;&#xA;&lt;p&gt;On a side note, this blog has been moved from &lt;a href=&#34;https://yeri.be/blog-changes&#34;&gt;vm1&lt;/a&gt; (and &lt;a href=&#34;https://yeri.be/one-2&#34;&gt;one&lt;/a&gt; before that) a virtual machine running on a dual Xeon 3070 (2.66Ghz) at &lt;a href=&#34;https://yeri.be/four&#34;&gt;Databarn&lt;/a&gt; to &lt;a href=&#34;http://www.wowwiki.com/Akama&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Akama&lt;/a&gt;, a VM on an 8 core Xeon E3-1230 (3.2Ghz) at &lt;a href=&#34;https://www.facebook.com/photo.php?fbid=10203828300326081&amp;amp;set=pb.1177197811.-2207520000.1419638163.&amp;amp;type=3&amp;amp;theater&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Leaseweb&lt;/a&gt;.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>I had the <a href="https://yeri.be/theme-blog-and-stuff">same theme</a> for over four years. I&rsquo;ve made quite a few custom css and PHP edits myself, and it had been <a href="http://azeemazeez.com/blogs/white-as-milk/" target="_blank" rel="noopener noreferrer">outdated for ages</a>&hellip; But it served me well.</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2014/12/theme-2011.png"><img class="alignnone size-full wp-image-6554" src="https://static.yeri.be/2014/12/theme-2011.png" alt="theme-2011" width="1817" height="1192" /></a></p>
<p>However, it&rsquo;s now time for <a href="https://wordpress.org/themes/opal" target="_blank" rel="noopener noreferrer">something new</a>.</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2014/12/theme-2015.png"><img class="alignnone size-full wp-image-6542" src="https://static.yeri.be/2014/12/theme-2015.png" alt="theme-2015" width="1411" height="1174" /></a></p>
<p>As always, as minimalistic as possible.</p>
<p>On a side note, this blog has been moved from <a href="https://yeri.be/blog-changes">vm1</a> (and <a href="https://yeri.be/one-2">one</a> before that) a virtual machine running on a dual Xeon 3070 (2.66Ghz) at <a href="https://yeri.be/four">Databarn</a> to <a href="http://www.wowwiki.com/Akama" target="_blank" rel="noopener noreferrer">Akama</a>, a VM on an 8 core Xeon E3-1230 (3.2Ghz) at <a href="https://www.facebook.com/photo.php?fbid=10203828300326081&amp;set=pb.1177197811.-2207520000.1419638163.&amp;type=3&amp;theater" target="_blank" rel="noopener noreferrer">Leaseweb</a>.</p>
<p>I&rsquo;ve also correctly repaired IPv6 on this blog. Apparently nginx never and/or stopped correctly listening to IPv6 (suddenly my Android devices displayed errors on this page, Chrome &amp; Firefox on OS X seemed to fall back to IPv4 instantly&hellip; Not sure how long it was broken, but it&rsquo;s back).</p>
<p>Note to self:</p>
<pre>listen          yeri.be:443;
server_name     yeri.be;</pre>
<p>Does not work with IPv6, it has to be</p>
<pre>listen          [::]:443;
server_name     yeri.be;</pre>
]]></content:encoded>
      <category>hardware</category><category>linux</category><category>networking</category><category>software</category><category>virtualisation</category><category>www</category>
      <category>tuinslak</category><category>blog</category><category>nginx</category><category>rootspirit</category>
    </item>
    
    <item>
      <title>diplomatie.belgium.be</title>
      <link>https://yeri.be/diplomatie-belgium-be/</link>
      <pubDate>Fri, 21 Feb 2014 07:42:45 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/diplomatie-belgium-be/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://static.yeri.be/2014/02/Screenshot_2014-02-17-01-16-55.png&#34;&gt;&lt;img class=&#34;alignnone  wp-image-5928 aligncenter&#34; alt=&#34;Screenshot_2014-02-17-01-16-55&#34; src=&#34;https://static.yeri.be/2014/02/Screenshot_2014-02-17-01-16-55-1024x640.png&#34; width=&#34;614&#34; height=&#34;384&#34; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://static.yeri.be/2014/02/Screenshot_2014-02-17-01-19-44.png&#34;&gt;&lt;img class=&#34;alignnone  wp-image-5929 aligncenter&#34; alt=&#34;Screenshot_2014-02-17-01-19-44&#34; src=&#34;https://static.yeri.be/2014/02/Screenshot_2014-02-17-01-19-44-1024x640.png&#34; width=&#34;614&#34; height=&#34;384&#34; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;odd!&lt;/p&gt;&#xA;&lt;p&gt; &lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><a href="https://static.yeri.be/2014/02/Screenshot_2014-02-17-01-16-55.png"><img class="alignnone  wp-image-5928 aligncenter" alt="Screenshot_2014-02-17-01-16-55" src="https://static.yeri.be/2014/02/Screenshot_2014-02-17-01-16-55-1024x640.png" width="614" height="384" /></a></p>
<p><a href="https://static.yeri.be/2014/02/Screenshot_2014-02-17-01-19-44.png"><img class="alignnone  wp-image-5929 aligncenter" alt="Screenshot_2014-02-17-01-19-44" src="https://static.yeri.be/2014/02/Screenshot_2014-02-17-01-19-44-1024x640.png" width="614" height="384" /></a></p>
<p>odd!</p>
<p> </p>
]]></content:encoded>
      <category>www</category>
      <category>tuinslak</category><category>analytics</category><category>belgium</category><category>blog</category>
    </item>
    
    <item>
      <title>https is win for spam</title>
      <link>https://yeri.be/https-is-win-for-spam/</link>
      <pubDate>Mon, 15 Aug 2011 04:34:53 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/https-is-win-for-spam/</guid>
      <description>&lt;p&gt;Well, here are some &lt;a href=&#34;https://yeri.be/how-to-get-rid-of-spambots-on-wp&#34;&gt;stats&lt;/a&gt; for a longer period of time since moving to &lt;a href=&#34;https://yeri.be/blog-over-ssl&#34;&gt;HTTPS&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: center;&#34;&gt;&lt;a href=&#34;https://static.yeri.be/2011/08/spam.png&#34;&gt;&lt;img class=&#34;alignnone size-full wp-image-3225&#34; title=&#34;spam&#34; src=&#34;https://static.yeri.be/2011/08/spam.png&#34; alt=&#34;&#34; width=&#34;437&#34; height=&#34;561&#34; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: left;&#34;&gt;So moving to HTTPS lowered the average from ~1000ish to ~200 spam comments per month (I implemented HTTPS near the end of 2011-02).&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://static.yeri.be/2011/08/spam-graph.png&#34;&gt;&lt;img class=&#34;alignnone size-large wp-image-3231 aligncenter&#34; title=&#34;spam-graph&#34; src=&#34;https://static.yeri.be/2011/08/spam-graph-1024x205.png&#34; alt=&#34;&#34; width=&#34;717&#34; height=&#34;144&#34; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: left;&#34;&gt;And yay, for Akismet&#39;s graphs being back. For some reason they&#39;d been broken for ages on this blog.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Well, here are some <a href="https://yeri.be/how-to-get-rid-of-spambots-on-wp">stats</a> for a longer period of time since moving to <a href="https://yeri.be/blog-over-ssl">HTTPS</a>.</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2011/08/spam.png"><img class="alignnone size-full wp-image-3225" title="spam" src="https://static.yeri.be/2011/08/spam.png" alt="" width="437" height="561" /></a></p>
<p style="text-align: left;">So moving to HTTPS lowered the average from ~1000ish to ~200 spam comments per month (I implemented HTTPS near the end of 2011-02).</p>
<p><a href="https://static.yeri.be/2011/08/spam-graph.png"><img class="alignnone size-large wp-image-3231 aligncenter" title="spam-graph" src="https://static.yeri.be/2011/08/spam-graph-1024x205.png" alt="" width="717" height="144" /></a></p>
<p style="text-align: left;">And yay, for Akismet's graphs being back. For some reason they'd been broken for ages on this blog.</p>
]]></content:encoded>
      <category>www</category>
      <category>tuinslak</category><category>akismet</category><category>blog</category><category>spam</category>
    </item>
    
    <item>
      <title>How to get rid of spambots on WP?</title>
      <link>https://yeri.be/how-to-get-rid-of-spambots-on-wp/</link>
      <pubDate>Thu, 24 Feb 2011 07:24:23 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/how-to-get-rid-of-spambots-on-wp/</guid>
      <description>&lt;p&gt;Simple, start using &lt;a href=&#34;https://yeri.be/blog-over-ssl/&#34;&gt;SSL&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;&lt;span style=&#34;text-decoration: line-through;&#34;&gt;Not entirely sure&lt;/span&gt; &lt;em&gt;why &lt;/em&gt;this keeps spambots away, but a drop from ~100 spam comments/day (&lt;a href=&#34;https://yeri.be/askimet/&#34;&gt;1&lt;/a&gt;/&lt;a href=&#34;https://yeri.be/749-spams-caught/&#34;&gt;2&lt;/a&gt;) to at most 4 seems pretty cool.&lt;/p&gt;&#xA;&lt;p&gt;Edit: seems like they just do a POST request to an old URL (&lt;span style=&#34;text-decoration: underline;&#34;&gt;http&lt;/span&gt;://blog.tuinslak.org/some-post), which results in this reply:&lt;/p&gt;&#xA;&lt;pre style=&#34;background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;&#34;&gt;HTTP/1.1 301 Moved Permanently&#xA;Server: nginx/0.9.4&#xA;Date: Tue, 22 Feb 2011 07:10:24 GMT&#xA;Content-Type: text/html&#xA;Content-Length: 184&#xA;Connection: close&#xA;Location: http&lt;span style=&#34;text-decoration: underline;&#34;&gt;s&lt;/span&gt;://blog.tuinslak.org/&lt;/pre&gt;&#xA;&lt;p&gt;I&amp;rsquo;m guessing once they rescan the new URLs they&amp;rsquo;ll be spamming again. Just a matter of time for them to update their &amp;ldquo;bookmarks&amp;rdquo;. ;)&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Simple, start using <a href="https://yeri.be/blog-over-ssl/">SSL</a>.</p>
<p><span style="text-decoration: line-through;">Not entirely sure</span> <em>why </em>this keeps spambots away, but a drop from ~100 spam comments/day (<a href="https://yeri.be/askimet/">1</a>/<a href="https://yeri.be/749-spams-caught/">2</a>) to at most 4 seems pretty cool.</p>
<p>Edit: seems like they just do a POST request to an old URL (<span style="text-decoration: underline;">http</span>://blog.tuinslak.org/some-post), which results in this reply:</p>
<pre style="background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;">HTTP/1.1 301 Moved Permanently
Server: nginx/0.9.4
Date: Tue, 22 Feb 2011 07:10:24 GMT
Content-Type: text/html
Content-Length: 184
Connection: close
Location: http<span style="text-decoration: underline;">s</span>://blog.tuinslak.org/</pre>
<p>I&rsquo;m guessing once they rescan the new URLs they&rsquo;ll be spamming again. Just a matter of time for them to update their &ldquo;bookmarks&rdquo;. ;)</p>
<p style="text-align: left;">Anyway, here's the Akismet screenshot:</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2011/02/spam60days.png"><img class="alignnone size-full wp-image-2624" title="Spam comments" src="https://static.yeri.be/2011/02/spam.png" alt="" width="231" height="216" /></a></p>
<p>Pretty cool, no ?</p>
<p>Totals can be found <a href="https://static.yeri.be/2011/02/totalspam.png">here</a>.</p>
]]></content:encoded>
      <category>www</category>
      <category>tuinslak</category><category>akismet</category><category>blog</category><category>spam</category>
    </item>
    
    <item>
      <title>blog over ssl</title>
      <link>https://yeri.be/blog-over-ssl/</link>
      <pubDate>Fri, 18 Feb 2011 01:35:44 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/blog-over-ssl/</guid>
      <description>&lt;p&gt;Starting a SSL test on this domain as of today. Free cert by &lt;a href=&#34;https://www.startssl.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;StartSSL&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;SSL is clearly the new hype, and this time I won&amp;rsquo;t be last to join it! ;)&lt;/p&gt;&#xA;&lt;p&gt;Just going to check how much (if any) SSL slows down my site.&lt;/p&gt;&#xA;&lt;p&gt;Every &lt;a href=&#34;https://yeri.be&#34;&gt;http&lt;/a&gt; requests gets automatically rewritten to &lt;a href=&#34;https://yeri.be&#34;&gt;https&lt;/a&gt;.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Starting a SSL test on this domain as of today. Free cert by <a href="https://www.startssl.com/" target="_blank" rel="noopener noreferrer">StartSSL</a>.</p>
<p>SSL is clearly the new hype, and this time I won&rsquo;t be last to join it! ;)</p>
<p>Just going to check how much (if any) SSL slows down my site.</p>
<p>Every <a href="https://yeri.be">http</a> requests gets automatically rewritten to <a href="https://yeri.be">https</a>.</p>
]]></content:encoded>
      <category>misc</category><category>networking</category><category>www</category>
      <category>tuinslak</category><category>blog</category><category>https</category><category>ssl</category>
    </item>
    
    <item>
      <title>Theme, blog, and stuff</title>
      <link>https://yeri.be/theme-blog-and-stuff/</link>
      <pubDate>Sun, 16 Jan 2011 00:12:45 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/theme-blog-and-stuff/</guid>
      <description>&lt;p&gt;As you noticed&amp;hellip; Or perhaps didn&amp;rsquo;t notice, I&amp;rsquo;ve started using a new, simplistic theme a couple of days ago.&lt;/p&gt;&#xA;&lt;p&gt;Kinda thought it might be too simplistic (I&amp;rsquo;ve hidden the sidebar, there&amp;rsquo;s no search or archive, etc), but I started to, you know, get attached to it.&lt;/p&gt;&#xA;&lt;p&gt;So it&amp;rsquo;s here to stay, for &lt;a href=&#34;https://yeri.be/new-theme/&#34;&gt;a year&lt;/a&gt; or something. I guess.&lt;/p&gt;&#xA;&lt;p&gt;I&amp;rsquo;ve also noticed that the long load times on my blog were &lt;a href=&#34;https://web.archive.org/web/20120830072143/http://code.google.com:80/p/wpbuzzcomments/&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;WP_Buzz&lt;/a&gt;&amp;rsquo;s fault. Nice plugin, but 15 to 45 seconds of load time per uncached page wasn&amp;rsquo;t really worth it. Hope it &lt;a href=&#34;http://code.google.com/p/wpbuzzcomments/issues/detail?id=17&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;can be fixed&lt;/a&gt;.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>As you noticed&hellip; Or perhaps didn&rsquo;t notice, I&rsquo;ve started using a new, simplistic theme a couple of days ago.</p>
<p>Kinda thought it might be too simplistic (I&rsquo;ve hidden the sidebar, there&rsquo;s no search or archive, etc), but I started to, you know, get attached to it.</p>
<p>So it&rsquo;s here to stay, for <a href="https://yeri.be/new-theme/">a year</a> or something. I guess.</p>
<p>I&rsquo;ve also noticed that the long load times on my blog were <a href="https://web.archive.org/web/20120830072143/http://code.google.com:80/p/wpbuzzcomments/" target="_blank" rel="noopener noreferrer">WP_Buzz</a>&rsquo;s fault. Nice plugin, but 15 to 45 seconds of load time per uncached page wasn&rsquo;t really worth it. Hope it <a href="http://code.google.com/p/wpbuzzcomments/issues/detail?id=17" target="_blank" rel="noopener noreferrer">can be fixed</a>.</p>
<p>I&rsquo;ve always thought it was <a href="https://yeri.be/one/">One</a> that <a href="https://yeri.be/blog-changes/">wasn&rsquo;t keeping up</a> with the SQL queries, and as refreshing the page always fixed my problem, I thought it just was bad luck and/or my dodgy connection. Until I saw WordPress was doing half a minute for about 90ish SQL queries&hellip; Per page.</p>
<p>But on the other hand, seems like changing from <a href="http://one.rootspirit.com/" target="_blank" rel="noopener noreferrer">One</a> to <a href="https://web.archive.org/web/20110213161611/http://vm1.rootspirit.com:80/" target="_blank" rel="noopener noreferrer">vm1</a> was useful after all:</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2011/01/crawlspeed.png"><img class="alignnone size-full wp-image-2285" title="google crawl speed" src="https://static.yeri.be/2011/01/crawlspeed.png" alt="" width="735" height="168" /></a></p>
<p>Anyway, to search on this blog use <a href="http://www.google.be/search?sourceid=chrome&amp;ie=UTF-8&amp;q=site:blog.tuinslak.org" target="_blank" rel="noopener noreferrer">Google</a> or, if you have Chrome, type in blog.tuinslak&lt;tab&gt; and add your search query. Kinda rocks feature!</p>
<p>Been on posting spree lately. Not all post quite as useful, but hey. Let&rsquo;s see how long I keep up! ;)</p>
]]></content:encoded>
      <category>google</category><category>hardware</category><category>linux</category><category>networking</category><category>software</category><category>www</category>
      <category>tuinslak</category><category>blog</category><category>rootspirit</category>
    </item>
    
    <item>
      <title>Blog changes</title>
      <link>https://yeri.be/blog-changes/</link>
      <pubDate>Thu, 09 Dec 2010 00:47:31 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/blog-changes/</guid>
      <description>&lt;p&gt;Right, playing around with my blog again. Wasn&amp;rsquo;t really that happy anymore with my nginx rproxy caching. Especially that for some reason, lately, every (php) request got at least one hit to the backend Apache server, while it used to cache the generated html for 30 mins.&lt;/p&gt;&#xA;&lt;p&gt;And well, performance just wasn&amp;rsquo;t good enough. So I said bye to &lt;a href=&#34;http://one.rootspirit.com&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;one.rootspirit.com&lt;/a&gt;, and hi to &lt;a href=&#34;https://web.archive.org/web/20110213161611/http://vm1.rootspirit.com:80/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;vm1.rootspirit.com&lt;/a&gt; a couple of days ago. Vm1 is no longer the nginx proxy, but is hosting my whole blog now. No more Apache for me.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Right, playing around with my blog again. Wasn&rsquo;t really that happy anymore with my nginx rproxy caching. Especially that for some reason, lately, every (php) request got at least one hit to the backend Apache server, while it used to cache the generated html for 30 mins.</p>
<p>And well, performance just wasn&rsquo;t good enough. So I said bye to <a href="http://one.rootspirit.com" target="_blank" rel="noopener">one.rootspirit.com</a>, and hi to <a href="https://web.archive.org/web/20110213161611/http://vm1.rootspirit.com:80/" target="_blank" rel="noopener">vm1.rootspirit.com</a> a couple of days ago. Vm1 is no longer the nginx proxy, but is hosting my whole blog now. No more Apache for me.</p>
<p>Now to see if performance increases and if it was any point in changing.</p>
<p>Oh, and all static/upload/image requests are now rewritten to a new domain (static.0x04.com). Gives me to option to move static pages to a different webserver/host in the future. And why 0x04.com and not static.yeri.be or static.tuinslak.org ? Well, don&rsquo;t know. Just like my &ldquo;0x04&rdquo; domain name! :D</p>
<p>Oh well&hellip; Just playing around&hellip;</p>
]]></content:encoded>
      <category>misc</category><category>software</category><category>www</category>
      <category>tuinslak</category><category>blog</category><category>nginx</category>
    </item>
    
    <item>
      <title>blog.irail.be</title>
      <link>https://yeri.be/blog-irail-be/</link>
      <pubDate>Wed, 08 Dec 2010 00:23:21 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/blog-irail-be/</guid>
      <description>&lt;p&gt;&amp;hellip; Now has its own host/blog. Riiiiiiiiight &lt;a href=&#34;http://blog.irail.be/&#34; target=&#34;_blank&#34;&gt;here&lt;/a&gt; !&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>&hellip; Now has its own host/blog. Riiiiiiiiight <a href="http://blog.irail.be/" target="_blank">here</a> !</p>
]]></content:encoded>
      <category>misc</category><category>irail</category><category>www</category>
      <category>blog</category>
    </item>
    
    <item>
      <title>New theme</title>
      <link>https://yeri.be/new-theme/</link>
      <pubDate>Mon, 25 Jan 2010 14:51:16 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/new-theme/</guid>
      <description>&lt;p&gt;Happy 2nd anniversary, blog (yes, I&amp;rsquo;m a couple of days late ;)).&lt;/p&gt;&#xA;&lt;p&gt;Just updated the old, somewhat boring theme, to this new white, clear and simple theme.&lt;/p&gt;&#xA;&lt;p&gt;Let&amp;rsquo;s see how long it takes me this time before I grow tired of it. ;)&lt;/p&gt;&#xA;&lt;p&gt;Also &lt;a href=&#34;http://yourls.org/&#34; target=&#34;_blank&#34;&gt;Yourls&lt;/a&gt; is now fully functional (see page sources for the short URL) on this blog. It&amp;rsquo;s now also using the yeri.be domain instead of &lt;a href=&#34;https://yeri.be&#34; target=&#34;_blank&#34;&gt;tuinslak.be&lt;/a&gt;&amp;hellip; Made more sense (length-wise). ;)&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Happy 2nd anniversary, blog (yes, I&rsquo;m a couple of days late ;)).</p>
<p>Just updated the old, somewhat boring theme, to this new white, clear and simple theme.</p>
<p>Let&rsquo;s see how long it takes me this time before I grow tired of it. ;)</p>
<p>Also <a href="http://yourls.org/" target="_blank">Yourls</a> is now fully functional (see page sources for the short URL) on this blog. It&rsquo;s now also using the yeri.be domain instead of <a href="https://yeri.be" target="_blank">tuinslak.be</a>&hellip; Made more sense (length-wise). ;)</p>
<p><a href="http://en.gravatar.com/" target="_blank">Gravatar</a> has also been enabled by default now (for comments).</p>
]]></content:encoded>
      <category>misc</category>
      <category>tuinslak</category><category>blog</category><category>yourls</category>
    </item>
    
    <item>
      <title>749 spams caught</title>
      <link>https://yeri.be/749-spams-caught/</link>
      <pubDate>Mon, 16 Nov 2009 12:16:53 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/749-spams-caught/</guid>
      <description>&lt;p&gt;The joy of the internet.&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: center;&#34;&gt;&lt;a href=&#34;http://www.flickr.com/photos/tuinslak/4109074882/sizes/o/&#34; target=&#34;_blank&#34;&gt;&lt;img class=&#34;aligncenter&#34; title=&#34;Spam caught by Akismet&#34; src=&#34;http://farm3.static.flickr.com/2554/4109074882_8d3dc6f59e.jpg&#34; alt=&#34;&#34; width=&#34;500&#34; height=&#34;133&#34; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: center;&#34;&gt;&lt;/p&gt;&#xA;Thank you Akismet!</description>
      <content:encoded><![CDATA[<p>The joy of the internet.</p>
<p style="text-align: center;"><a href="http://www.flickr.com/photos/tuinslak/4109074882/sizes/o/" target="_blank"><img class="aligncenter" title="Spam caught by Akismet" src="http://farm3.static.flickr.com/2554/4109074882_8d3dc6f59e.jpg" alt="" width="500" height="133" /></a></p>
<p style="text-align: center;"></p>
Thank you Akismet!
]]></content:encoded>
      <category>www</category>
      <category>tuinslak</category><category>akismet</category><category>blog</category><category>spam</category>
    </item>
    
    <item>
      <title>Merged to tuinslak.org</title>
      <link>https://yeri.be/merged-to-tuinslak-org/</link>
      <pubDate>Wed, 14 Oct 2009 00:10:37 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/merged-to-tuinslak-org/</guid>
      <description>&lt;p&gt;Just &amp;lsquo;cause &lt;a href=&#34;https://yeri.be&#34;&gt;.org&lt;/a&gt; is cooler than &lt;a href=&#34;https://yeri.be&#34;&gt;.be&lt;/a&gt; or &lt;a href=&#34;https://yeri.be&#34;&gt;.eu&lt;/a&gt;. I think.&lt;/p&gt;&#xA;&lt;p&gt;Old links remain operational.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Just &lsquo;cause <a href="https://yeri.be">.org</a> is cooler than <a href="https://yeri.be">.be</a> or <a href="https://yeri.be">.eu</a>. I think.</p>
<p>Old links remain operational.</p>
]]></content:encoded>
      <category>misc</category>
      <category>tuinslak</category><category>blog</category>
    </item>
    
    <item>
      <title>Askimet</title>
      <link>https://yeri.be/askimet/</link>
      <pubDate>Thu, 06 Nov 2008 23:47:54 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/askimet/</guid>
      <description>&lt;p id=&#34;totals&#34;&gt;1,000 spams caught, 60 legitimate comments, and an overall accuracy rate of 99.528%.&lt;/p&gt;&#xA;Should I be happy?</description>
      <content:encoded><![CDATA[<p id="totals">1,000 spams caught, 60 legitimate comments, and an overall accuracy rate of 99.528%.</p>
Should I be happy?
]]></content:encoded>
      <category>www</category>
      <category>tuinslak</category><category>akismet</category><category>blog</category><category>spam</category>
    </item>
    
    <item>
      <title>Blog stats</title>
      <link>https://yeri.be/blog-stats/</link>
      <pubDate>Wed, 03 Sep 2008 02:25:41 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/blog-stats/</guid>
      <description>&lt;p&gt;Well, seems like Firefox is the most popular browser visiting this site. And on 2nd place.. Safari?! Who on earth uses Safari? Oh, but I guess mobile device, such as the iPhone &amp;amp; Symbian use webkit/Safari-like browser.&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: center;&#34;&gt;&lt;a href=&#34;https://static.yeri.be/2008/09/googleanalytics.png&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;img class=&#34;alignnone size-medium wp-image-420&#34; title=&#34;Tuinslak&#39;s Browser stats&#34; src=&#34;https://static.yeri.be/2008/09/googleanalytics-300x75.png&#34; alt=&#34;&#34; width=&#34;300&#34; height=&#34;75&#34; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Well, let&amp;rsquo;s see if &lt;a href=&#34;http://www.google.com/chrome&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Google Chrome&lt;/a&gt; gets in that list. If only they&amp;rsquo;d release it for other OS&amp;rsquo;es too&amp;hellip; :( Seems like good ol&amp;rsquo; Windows isn&amp;rsquo;t that popular anymore.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Well, seems like Firefox is the most popular browser visiting this site. And on 2nd place.. Safari?! Who on earth uses Safari? Oh, but I guess mobile device, such as the iPhone &amp; Symbian use webkit/Safari-like browser.</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2008/09/googleanalytics.png" target="_blank" rel="noopener"><img class="alignnone size-medium wp-image-420" title="Tuinslak's Browser stats" src="https://static.yeri.be/2008/09/googleanalytics-300x75.png" alt="" width="300" height="75" /></a></p>
<p>Well, let&rsquo;s see if <a href="http://www.google.com/chrome" target="_blank" rel="noopener">Google Chrome</a> gets in that list. If only they&rsquo;d release it for other OS&rsquo;es too&hellip; :( Seems like good ol&rsquo; Windows isn&rsquo;t that popular anymore.</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2008/09/osstats.png" target="_blank" rel="noopener"><img class="alignnone size-medium wp-image-424" title="osstats" src="https://static.yeri.be/2008/09/osstats-300x75.png" alt="" width="300" height="75" /></a></p>
]]></content:encoded>
      <category>google</category><category>misc</category>
      <category>analytics</category><category>blog</category><category>chrome</category><category>stats</category>
    </item>
    
    <item>
      <title>Blog Updates</title>
      <link>https://yeri.be/blog-updates/</link>
      <pubDate>Mon, 03 Mar 2008 17:13:24 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/blog-updates/</guid>
      <description>&lt;p&gt;As you might have noticed, I added some new features.&lt;/p&gt;&#xA;&lt;p&gt;I&amp;rsquo;ve been playing around with some plugins.&lt;/p&gt;&#xA;&lt;p&gt;There&amp;rsquo;s now a &lt;a href=&#34;http://twitter.com/Tuinslak&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Twitter&lt;/a&gt; widget, a simple calendar widget (with links on dates where I posted something), and &amp;lsquo;recent comments&amp;rsquo; (not that there are any comments, but I&amp;rsquo;ve added it).&lt;/p&gt;&#xA;&lt;p&gt;I had to do some small modifications in my theme, as it wasn&amp;rsquo;t supporting dynamic widgets, but here it is. Seems to be working fine!&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>As you might have noticed, I added some new features.</p>
<p>I&rsquo;ve been playing around with some plugins.</p>
<p>There&rsquo;s now a <a href="http://twitter.com/Tuinslak" target="_blank" rel="noopener noreferrer">Twitter</a> widget, a simple calendar widget (with links on dates where I posted something), and &lsquo;recent comments&rsquo; (not that there are any comments, but I&rsquo;ve added it).</p>
<p>I had to do some small modifications in my theme, as it wasn&rsquo;t supporting dynamic widgets, but here it is. Seems to be working fine!</p>
<p>I&rsquo;ve also started using Twitter, something else (similar to this blog) I was thinking to use for quite a while. To <strike>be</strike> do, or not to <strike>be</strike> do.</p>
<p>When browsing the net, I saw this drawing, which made me laugh:</p>
<p style="text-align: center"><a href="http://twitter.pbwiki.com/" target="_blank" rel="noopener noreferrer"><img src="https://web.archive.org/web/20141013225435/http://www.gapingvoid.com/history76156-thumb.jpg" height="233" width="400" /></a></p>
<p>So, who else Twitters? Tell me :)</p>
<p>Web2/Twitter <a href="http://www.botanicalls.com/twitter/" target="_blank" rel="noopener noreferrer">saves plants</a>? Indeed.. How handy..! ;)</p>
<p>Enough for my pointless post! Over &amp; Out.</p>
]]></content:encoded>
      <category>misc</category>
      <category>blog</category><category>twitter</category>
    </item>
    
    <item>
      <title>First post!</title>
      <link>https://yeri.be/first-post/</link>
      <pubDate>Sat, 12 Jan 2008 21:49:06 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/first-post/</guid>
      <description>&lt;p&gt;So, after years of &amp;lsquo;why should I have a blog? No one is going to read it anyway&amp;hellip;&amp;rsquo; I finally made one. Don&amp;rsquo;t ask me why.&lt;/p&gt;&#xA;&lt;p&gt;It&amp;rsquo;s probably going to turn out into a rather tech-blog, as I&amp;rsquo;m not the kind of person to write down my emotions on the net, or to keep some kind of diary, but nevertheless, hope you&amp;rsquo;ll enjoy it, or even better, hope someone might read it. ;)&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>So, after years of &lsquo;why should I have a blog? No one is going to read it anyway&hellip;&rsquo; I finally made one. Don&rsquo;t ask me why.</p>
<p>It&rsquo;s probably going to turn out into a rather tech-blog, as I&rsquo;m not the kind of person to write down my emotions on the net, or to keep some kind of diary, but nevertheless, hope you&rsquo;ll enjoy it, or even better, hope someone might read it. ;)</p>
<p>And yes, I&rsquo;ll do my best to post something once in a while.</p>
<p>This website is best viewed on a Mac using Camino! :)</p>
]]></content:encoded>
      <category>misc</category>
      <category>tuinslak</category><category>blog</category>
    </item>
    
  </channel>
</rss>
