<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title>jkossen.nl: All Posts</title>
	<link href="https://jkossen.nl/index.xml" rel="self"/>
	<updated>2026-06-02T00:00:00Z</updated>
	<author>
		<name>Jochem Kossen</name>
	</author>
	<id>https://jkossen.nl/</id>
	<entry>
		<title>Notes on Podman and Quadlets</title>
		<link href="https://jkossen.nl/podman/"/>
		<id>https://jkossen.nl/podman/</id>
		<updated>2026-06-02T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;This post contains notes on and examples of my &lt;a href=&#34;https://podman.io&#34;&gt;Podman&lt;/a&gt; containers on &lt;a href=&#34;https://debian.org&#34;&gt;Debian&lt;/a&gt; setup.&lt;/p&gt;&#xA;&lt;h2 id=&#34;table-of-contents&#34;&gt;Table of Contents&lt;/h2&gt;&#xA;&lt;nav id=&#34;TableOfContents&#34;&gt;&#xA;  &lt;ul&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#table-of-contents&#34;&gt;Table of Contents&lt;/a&gt;&lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#on-running-podman-containers-rootless&#34;&gt;On running Podman containers rootless&lt;/a&gt;&lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#enable-lingering&#34;&gt;Enable lingering&lt;/a&gt;&lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#enable-automatic-updates&#34;&gt;Enable automatic updates&lt;/a&gt;&lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#manually-auto-updating&#34;&gt;&amp;ldquo;Manually&amp;rdquo; auto-updating&lt;/a&gt;&lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#reverse-proxy-container&#34;&gt;Reverse Proxy container&lt;/a&gt;&#xA;      &lt;ul&gt;&#xA;        &lt;li&gt;&lt;a href=&#34;#rproxycontainer&#34;&gt;rproxy.container&lt;/a&gt;&lt;/li&gt;&#xA;        &lt;li&gt;&lt;a href=&#34;#rproxy-datavolume&#34;&gt;rproxy-data.volume&lt;/a&gt;&lt;/li&gt;&#xA;        &lt;li&gt;&lt;a href=&#34;#podman-ipv6network&#34;&gt;podman-ipv6.network&lt;/a&gt;&lt;/li&gt;&#xA;        &lt;li&gt;&lt;a href=&#34;#note-1&#34;&gt;Note 1&lt;/a&gt;&lt;/li&gt;&#xA;        &lt;li&gt;&lt;a href=&#34;#note-2&#34;&gt;Note 2&lt;/a&gt;&lt;/li&gt;&#xA;      &lt;/ul&gt;&#xA;    &lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#port-forwarding&#34;&gt;port forwarding&lt;/a&gt;&lt;/li&gt;&#xA;  &lt;/ul&gt;&#xA;&lt;/nav&gt;&#xA;&#xA;&lt;h2 id=&#34;on-running-podman-containers-rootless&#34;&gt;On running Podman containers rootless&lt;/h2&gt;&#xA;&lt;p&gt;I run a few containers for web services (http/https servers) behind another container which serves as a reverse proxy.&lt;/p&gt;&#xA;&lt;p&gt;All containers run &lt;strong&gt;rootless&lt;/strong&gt; under their own user account.&#xA;If I have a site, say, &lt;code&gt;jkossen.nl&lt;/code&gt;, it runs under the &lt;code&gt;jkossen-nl&lt;/code&gt; user account which has no privileges on the rest of the system.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Notes on the nvi text editor</title>
		<link href="https://jkossen.nl/nvi/"/>
		<id>https://jkossen.nl/nvi/</id>
		<updated>2026-06-02T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;Aside from &lt;a href=&#34;https://jkossen.nl/vim/&#34;&gt;Vim&lt;/a&gt;, I sometimes use &lt;code&gt;nvi&lt;/code&gt; as an even lighter-weight text&#xA;editor. Don&amp;rsquo;t underestimate it though, it comes with lots of functionality&#xA;built-in.&lt;/p&gt;&#xA;&lt;h2 id=&#34;a-few-tips-on-using-nvi&#34;&gt;A few tips on using nvi&lt;/h2&gt;&#xA;&lt;p&gt;nvi offers a lot of shortcuts for functionality to help you edit conveniently and fast.&#xA;Here are a few I use regularly:&lt;/p&gt;&#xA;&lt;table class=&#34;mono&#34;&gt;&#xA;&#x9;&lt;thead&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;th&gt;Key&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/th&gt;&lt;th&gt;Action&lt;/th&gt;&lt;/tr&gt;&#xA;&#x9;&lt;/thead&gt;&#xA;&#x9;&lt;tbody&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;{&lt;/td&gt;&lt;td&gt;Move cursor to before current paragraph&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;}&lt;/td&gt;&lt;td&gt;Move cursor to after current paragraph&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;[[&lt;/td&gt;&lt;td&gt;Move cursor to beginning of file&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;]]&lt;/td&gt;&lt;td&gt;Move cursor to end of file&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;/Fore&lt;/td&gt;&lt;td&gt;Move cursor to next occurrence of &#39;Fore&#39;&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;?Back&lt;/td&gt;&lt;td&gt;Move cursor to previous occurrence of &#39;Back&#39;&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;n&lt;/td&gt;&lt;td&gt;Move cursor to next match of previous search term&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;u&lt;/td&gt;&lt;td&gt;Undo. Then press . for multiple undo&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;:42&lt;/td&gt;&lt;td&gt;Move cursor to line 42&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;y4l&lt;/td&gt;&lt;td&gt;Yank (copy) the next 4 characters starting from the cursor&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;y4y&lt;/td&gt;&lt;td&gt;Yank (copy) 4 lines starting from the cursor&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;p&lt;/td&gt;&lt;td&gt;Paste yanked contents after current line&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;P&lt;/td&gt;&lt;td&gt;Paste yanked contents before current line&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&#x9;&lt;tr&gt;&lt;td&gt;.&lt;/td&gt;&lt;td&gt;Repeat last modification action (undo as well, so multiple undo!)&lt;/td&gt;&lt;/tr&gt;&#xA;&#x9;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;h2 id=&#34;configuration&#34;&gt;Configuration&lt;/h2&gt;&#xA;&lt;p&gt;nvi uses a file called &lt;code&gt;.nexrc&lt;/code&gt; in your home folder.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Notes on the Vim text editor</title>
		<link href="https://jkossen.nl/vim/"/>
		<id>https://jkossen.nl/vim/</id>
		<updated>2026-06-02T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;In search of a calm editor with few distractions, I made a configuration for the &lt;a href=&#34;https://www.vim.org&#34;&gt;Vim&lt;/a&gt; (and &lt;a href=&#34;https://vim-classic.org&#34;&gt;Vim Classic&lt;/a&gt;) text editor.&#xA;While some don&amp;rsquo;t consider Vim to be an editor with low cognitive load, I humbly disagree with this.&#xA;Yes it has a learning curve, but it&amp;rsquo;s well documented, and you can learn basic functionality very quickly.&#xA;Also, the basic use of Vim does not change much, so everything you learn is knowledge you&amp;rsquo;ll be able to use for &lt;em&gt;decades&lt;/em&gt;.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Notes on my Laptop setup</title>
		<link href="https://jkossen.nl/laptop/"/>
		<id>https://jkossen.nl/laptop/</id>
		<updated>2026-06-01T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;I&amp;rsquo;ve been using a Lenovo T14 Gen 6 AMD laptop running &lt;a href=&#34;https://debian.org&#34;&gt;Debian&lt;/a&gt;&#xA;for a while now. This is where I collect notes on my setup. Some are specific&#xA;to this type, others are more generic.&lt;/p&gt;&#xA;&lt;h2 id=&#34;obligatory-fastfetch-output&#34;&gt;Obligatory fastfetch output&lt;/h2&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-txt&#34; data-lang=&#34;txt&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-1&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-1&#34;&gt; 1&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;        _,met$$$$$gg.          jochem@meridian&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-2&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-2&#34;&gt; 2&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;     ,g$$$$$$$$$$$$$$$P.       ---------------&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-3&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-3&#34;&gt; 3&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;   ,g$$P&amp;#34;&amp;#34;       &amp;#34;&amp;#34;&amp;#34;Y$$.&amp;#34;.     OS: Debian GNU/Linux forky/sid (forky) x86_64&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-4&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-4&#34;&gt; 4&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;  ,$$P&amp;#39;              `$$$.     Host: 21QJ005EMH (ThinkPad T14 Gen 6)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-5&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-5&#34;&gt; 5&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;&amp;#39;,$$P       ,ggs.     `$$b:    Kernel: Linux 7.0.9+deb14-amd64&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-6&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-6&#34;&gt; 6&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;`d$$&amp;#39;     ,$P&amp;#34;&amp;#39;   .    $$$     Uptime: 6 days, 1 hour, 44 mins&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-7&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-7&#34;&gt; 7&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt; $$P      d$&amp;#39;     ,    $$P     Packages: 1884 (dpkg), 14 (flatpak)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-8&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-8&#34;&gt; 8&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt; $$:      $$.   -    ,d$$&amp;#39;     Shell: bash 5.3.9&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-9&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-9&#34;&gt; 9&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt; $$;      Y$b._   _,d$P&amp;#39;       Display (LEN403A): 1920x1200 @ 1.25x in 14&amp;#34;, 60 Hz [Built-in]&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-10&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-10&#34;&gt;10&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt; Y$$.    `.`&amp;#34;Y$$$$P&amp;#34;&amp;#39;          DE: GNOME 49.5&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-11&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-11&#34;&gt;11&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt; `$$b      &amp;#34;-.__               WM: Mutter (Wayland)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-12&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-12&#34;&gt;12&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;  `Y$$b                        WM Theme: Adwaita&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-13&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-13&#34;&gt;13&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;   `Y$$.                       Theme: Adwaita [GTK2/3/4]&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-14&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-14&#34;&gt;14&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;     `$$b.                     Icons: Adwaita [GTK2/3/4]&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-15&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-15&#34;&gt;15&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;       `Y$$b.                  Font: Noto Sans (10pt) [GTK2/3/4]&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-16&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-16&#34;&gt;16&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;         `&amp;#34;Y$b._               Cursor: Adwaita (24px)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-17&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-17&#34;&gt;17&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;             `&amp;#34;&amp;#34;&amp;#34;&amp;#34;             Terminal: kitty 0.47.0&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-18&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-18&#34;&gt;18&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;                               Terminal Font: HackNF-Regular (14pt)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-19&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-19&#34;&gt;19&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;                               CPU: AMD Ryzen AI 7 PRO 350 (16) @ 5.09 GHz&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-20&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-20&#34;&gt;20&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;                               GPU: AMD Radeon 860M Graphics [Integrated]&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-21&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-21&#34;&gt;21&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;                               Memory: 5.11 GiB / 27.05 GiB (19%)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-22&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-22&#34;&gt;22&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;                               Swap: 0 B / 32.00 GiB (0%)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-23&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-23&#34;&gt;23&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;                               Disk (/): 24.85 GiB / 720.92 GiB (3%) - btrfs&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-24&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-24&#34;&gt;24&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;                               Local IP (wlp194s0): 192.168.2.44/24&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-25&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-25&#34;&gt;25&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;                               Battery (5B11M90125): 90% [Discharging]&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;ln&#34; id=&#34;hl-0-26&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#hl-0-26&#34;&gt;26&lt;/a&gt;&lt;/span&gt;&lt;span class=&#34;cl&#34;&gt;                               Locale: en_US.UTF-8&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;t14-gen-6-specific-audio-quality-improvement&#34;&gt;T14 Gen 6 specific: audio quality improvement&lt;/h2&gt;&#xA;&lt;p&gt;Audio quality from the speakers sucks by default.&#xA;Thankfully, with some configuration, you can improve that big time.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Over beginnen met schrijven, deel 1</title>
		<link href="https://jkossen.nl/schrijven01/"/>
		<id>https://jkossen.nl/schrijven01/</id>
		<updated>2026-05-07T20:16:04Z</updated>
		<summary type="html">&lt;p&gt;Als een bezetene worstel ik me door vijf boeken tegelijk (lezen, niet schrijven) en ben ik elk vrij moment van de dag in mijn hoofd bezig met mijn schrijfopdrachten. Ja hoor, Jochem heeft een hobby.&lt;/p&gt;&#xA;&lt;p&gt;Momenteel volg ik mijn tweede cursus bij de &lt;a href=&#34;https://www.schrijversvakschool.nl&#34;&gt;Schrijversvakschool&lt;/a&gt;, de cursus Kort Verhaal.&#xA;Een monster dat me niet loslaat, me vierendeelt en de stukken verorbert.&#xA;Maar ook een lief, leuk en grappig monster.&lt;/p&gt;&#xA;&lt;p&gt;Inmiddels heb ik een paar dingen opgestoken die in elk geval voor mij gelden.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>A few examples of and notes on Podman quadlets</title>
		<link href="https://jkossen.nl/quadlets/"/>
		<id>https://jkossen.nl/quadlets/</id>
		<updated>2026-02-26T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;As of 2026-06-02, I&amp;rsquo;ve merged the contents of this page into:&lt;/p&gt;&#xA;&lt;p&gt;=&amp;gt; &lt;a href=&#34;https://jkossen.nl/podman/&#34;&gt;Notes on Podman&lt;/a&gt;&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Touch, Feel</title>
		<link href="https://jkossen.nl/photo-touch-feel/"/>
		<id>https://jkossen.nl/photo-touch-feel/</id>
		<updated>2026-01-07T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;Experiments with touching, feeling, seeing and light&lt;/p&gt;&#xA;&lt;div class=&#34;gallery&#34;&gt;&#xA;&lt;figure&gt;&#xA;    &lt;a href=&#34;1024/PB040418.jpg&#34;&gt;&#xA;        &lt;img src=&#34;400/PB040418.jpg&#34;&gt;&#xA;    &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;    &lt;a href=&#34;1024/PB040422.jpg&#34;&gt;&#xA;        &lt;img src=&#34;400/PB040422.jpg&#34;&gt;&#xA;    &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;    &lt;a href=&#34;1024/PB040427.jpg&#34;&gt;&#xA;        &lt;img src=&#34;400/PB040427.jpg&#34;&gt;&#xA;    &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;    &lt;a href=&#34;1024/PB040433.jpg&#34;&gt;&#xA;        &lt;img src=&#34;400/PB040433.jpg&#34;&gt;&#xA;    &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;    &lt;a href=&#34;1024/PB040455.jpg&#34;&gt;&#xA;        &lt;img src=&#34;400/PB040455.jpg&#34;&gt;&#xA;    &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;    &lt;a href=&#34;1024/PB040457.jpg&#34;&gt;&#xA;        &lt;img src=&#34;400/PB040457.jpg&#34;&gt;&#xA;    &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;    &lt;a href=&#34;1024/PB040462.jpg&#34;&gt;&#xA;        &lt;img src=&#34;400/PB040462.jpg&#34;&gt;&#xA;    &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;    &lt;a href=&#34;1024/PB040468.jpg&#34;&gt;&#xA;        &lt;img src=&#34;400/PB040468.jpg&#34;&gt;&#xA;    &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;    &lt;a href=&#34;1024/PB040492.jpg&#34;&gt;&#xA;        &lt;img src=&#34;400/PB040492.jpg&#34;&gt;&#xA;    &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;/div&gt;</summary>
	</entry>
	<entry>
		<title>Simply Vim</title>
		<link href="https://jkossen.nl/vim-simply/"/>
		<id>https://jkossen.nl/vim-simply/</id>
		<updated>2025-09-13T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;As of 2026-06-02, I merged the contents of this page into:&lt;/p&gt;&#xA;&lt;p&gt;=&amp;gt; &lt;a href=&#34;https://jkossen.nl/vim/&#34;&gt;Notes on the Vim text editor&lt;/a&gt;&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Welk sociaal medium verdient jouw mening?</title>
		<link href="https://jkossen.nl/welk-medium/"/>
		<id>https://jkossen.nl/welk-medium/</id>
		<updated>2025-01-18T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;Twitter begon prima totdat het niet meer zo prima was.&#xA;Instagram begon prima totdat het niet meer zo prima was.&#xA;Facebook begon prima totdat het niet meer zo prima was.&#xA;En BlueSky begon, hoe kan het ook anders, prima.&lt;/p&gt;&#xA;&lt;p&gt;Als ik een voorspelling voor de toekomst mocht maken, zou ik op zijn minst de geschiedenis van vergelijkbare situaties erop na lezen.&lt;/p&gt;&#xA;&lt;p&gt;Vandaag las ik de column &lt;a href=&#34;https://www.nrc.nl/nieuws/2025/01/17/een-mening-is-meer-dan-een-haarbal-a4879993&#34;&gt;Een mening is meer dan een haarbal door Floor Rusman&lt;/a&gt; in &lt;a href=&#34;https://nrc.nl&#34;&gt;NRC&lt;/a&gt;.&#xA;En ik kan me goed vinden in het meeste dat ze schrijft.&#xA;En buiten dat ik haarballen uitbraken een hele mooie metafoor vind heb ik er nog een paar gedachten over.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Now</title>
		<link href="https://jkossen.nl/now/"/>
		<id>https://jkossen.nl/now/</id>
		<updated>2025-01-12T00:00:00Z</updated>
		<summary type="html">A log of my recent personal activities</summary>
	</entry>
	<entry>
		<title>Photos: A Foggy Friday</title>
		<link href="https://jkossen.nl/photo-2024-12-27/"/>
		<id>https://jkossen.nl/photo-2024-12-27/</id>
		<updated>2024-12-27T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;Click the thumbnails to view a larger version.&lt;/p&gt;&#xA;&lt;div class=&#34;gallery&#34;&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8936-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8936-400.jpg alt=&#34;DSCF8936.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8939-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8939-400.jpg alt=&#34;DSCF8939.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8940-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8940-400.jpg alt=&#34;DSCF8940.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8942-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8942-400.jpg alt=&#34;DSCF8942.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8944-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8944-400.jpg alt=&#34;DSCF8944.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8946-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8946-400.jpg alt=&#34;DSCF8946.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8948-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8948-400.jpg alt=&#34;DSCF8948.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8950-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8950-400.jpg alt=&#34;DSCF8950.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8951-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8951-400.jpg alt=&#34;DSCF8951.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;/div&gt;</summary>
	</entry>
	<entry>
		<title>Photos: a walk around Holtingerveld</title>
		<link href="https://jkossen.nl/photo-2024-12-26/"/>
		<id>https://jkossen.nl/photo-2024-12-26/</id>
		<updated>2024-12-26T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;Click the thumbnails to view a larger version.&lt;/p&gt;&#xA;&lt;div class=&#34;gallery&#34;&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8925-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8925-400.jpg alt=&#34;DSCF8925.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8928-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8928-400.jpg alt=&#34;DSCF8928.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8929-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8929-400.jpg alt=&#34;DSCF8929.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8930-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8930-400.jpg alt=&#34;DSCF8930.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8931-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8931-400.jpg alt=&#34;DSCF8931.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8932-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8932-400.jpg alt=&#34;DSCF8932.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;figure&gt;&#xA;  &lt;a href=&#34;DSCF8935-2048.jpg&#34;&gt;&#xA;    &lt;img src=DSCF8935-400.jpg alt=&#34;DSCF8935.JPG&#34;&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;/div&gt;</summary>
	</entry>
	<entry>
		<title>A simple JavaScript Lightbox without dependencies</title>
		<link href="https://jkossen.nl/photojs/"/>
		<id>https://jkossen.nl/photojs/</id>
		<updated>2024-02-19T00:00:00Z</updated>
		<summary type="html">A lightweight photo gallery and lightbox for your website</summary>
	</entry>
	<entry>
		<title>IJssel Highwater long exposure 2024</title>
		<link href="https://jkossen.nl/photo-ijssel-long-exposure/"/>
		<id>https://jkossen.nl/photo-ijssel-long-exposure/</id>
		<updated>2024-01-13T00:00:00Z</updated>
		<summary type="html">&lt;figure&gt;&#xA;    &lt;img src=&#34;jpg-1280/DSCF8663-1280.jpg&#34; alt=&#34;IJssel&#34; /&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;A series of long exposure photographs made during the highwater in the IJssel of 2024.&lt;/p&gt;&#xA;&lt;p&gt;Click the thumbnails to view a larger version.&lt;/p&gt;&#xA;&lt;div class=&#34;gallery two&#34;&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a href=&#34;jpg-1280/DSCF8660-1280.jpg&#34;&gt;&#xA;      &lt;img src=&#34;jpg-500/DSCF8660-500.jpg&#34; alt=&#34;IJssel&#34; /&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a href=&#34;jpg-1280/DSCF8663-1280.jpg&#34;&gt;&#xA;      &lt;img src=&#34;jpg-500/DSCF8663-500.jpg&#34; alt=&#34;IJssel&#34; /&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a&#xA;      href=&#34;jpg-1280/DSCF8672-1280.jpg&#34;&#xA;    &gt;&#xA;      &lt;img&#xA;        src=&#34;jpg-500/DSCF8672-500.jpg&#34;&#xA;        alt=&#34;IJssel&#34;&#xA;      /&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a href=&#34;jpg-1280/DSCF8686-1280.jpg&#34;&gt;&#xA;      &lt;img src=&#34;jpg-500/DSCF8686-500.jpg&#34; alt=&#34;IJssel&#34; /&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;&lt;/div&gt;</summary>
	</entry>
	<entry>
		<title>Photos: Litterland</title>
		<link href="https://jkossen.nl/photo-litterland/"/>
		<id>https://jkossen.nl/photo-litterland/</id>
		<updated>2023-11-12T00:00:00Z</updated>
		<summary type="html">&lt;figure&gt;&#xA;  &lt;img src=&#34;jpg-1280/_M120293-1280.jpg&#34; alt=&#34;litter&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;A photo series revolving around litter and its contrast to nature. Do we&#xA;really find it too much effort to clean up our own trash?&lt;/p&gt;&#xA;&lt;p&gt;Click the thumbnails to view a larger version.&lt;/p&gt;&#xA;&lt;div class=&#34;gallery&#34;&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a href=&#34;jpg-1280/_M120293-1280.jpg&#34;&gt;&#xA;      &lt;img src=&#34;jpg-400/_M120293-400.jpg&#34; alt=&#34;litter&#34;&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a href=&#34;jpg-1280/_M120288-1280.jpg&#34;&gt;&#xA;      &lt;img src=&#34;jpg-400/_M120288-400.jpg&#34; alt=&#34;litter&#34;&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a&#xA;      href=&#34;jpg-1280/6F6E5E26-313F-4FD6-8BB7-D09724319F13-10403-0000018853F86702-1280.jpg&#34;&#xA;    &gt;&#xA;      &lt;img&#xA;        src=&#34;jpg-400/6F6E5E26-313F-4FD6-8BB7-D09724319F13-10403-0000018853F86702-400.jpg&#34;&#xA;        alt=&#34;litter&#34;&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a href=&#34;jpg-1280/_M120294-1280.jpg&#34;&gt;&#xA;      &lt;img src=&#34;jpg-400/_M120294-400.jpg&#34; alt=&#34;litter&#34;&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a href=&#34;jpg-1280/_M120295-1280.jpg&#34;&gt;&#xA;      &lt;img src=&#34;jpg-400/_M120295-400.jpg&#34; alt=&#34;litter&#34;&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a href=&#34;jpg-1280/_M120296-1280.jpg&#34;&gt;&#xA;      &lt;img src=&#34;jpg-400/_M120296-400.jpg&#34; alt=&#34;litter&#34;&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a href=&#34;jpg-1280/_M120320-1280.jpg&#34;&gt;&#xA;      &lt;img src=&#34;jpg-400/_M120320-400.jpg&#34; alt=&#34;litter&#34;&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a href=&#34;jpg-1280/_M120363-1280.jpg&#34;&gt;&#xA;      &lt;img src=&#34;jpg-400/_M120363-400.jpg&#34; alt=&#34;litter&#34;&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;  &lt;figure&gt;&#xA;    &lt;a href=&#34;jpg-1280/_M120365-1280.jpg&#34;&gt;&#xA;      &lt;img src=&#34;jpg-400/_M120365-400.jpg&#34; alt=&#34;litter&#34;&gt;&#xA;    &lt;/a&gt;&#xA;  &lt;/figure&gt;&#xA;&lt;/div&gt;</summary>
	</entry>
	<entry>
		<title>Web server setup with OpenBSD</title>
		<link href="https://jkossen.nl/obsd-server-setup/"/>
		<id>https://jkossen.nl/obsd-server-setup/</id>
		<updated>2023-06-20T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;As a hobby, I host my website on my own server. It’s currently running&#xA;the &lt;a href=&#34;https://openbsd.org&#34;&gt;OpenBSD&lt;/a&gt; operating system.  OpenBSD comes&#xA;with batteries included. Among other things, it comes with a web (http&#xA;/ https) server, a transparent proxy and load balancer, a mail (SMTP)&#xA;server, the OpenSSH shell server and a packet filter&#xA;(“firewall”). Everything you need to host your website yourself. All&#xA;nicely integrated. All for free.&lt;/p&gt;&#xA;&lt;p&gt;OpenBSD is very consistent, lightweight and probably the most secure&#xA;functional operating system available. Maintenance is a breeze, so&#xA;it’s great for serving purposes.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Imagine you are Jochem ... The Writer</title>
		<link href="https://jkossen.nl/jk02/"/>
		<id>https://jkossen.nl/jk02/</id>
		<updated>2023-06-12T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;Imagine you, being me.&lt;/p&gt;&#xA;&lt;p&gt;You have this vague sense of an idea.&lt;br&gt;&#xA;It has to get out.&lt;br&gt;&#xA;You feel you have to write it into a story.&lt;br&gt;&#xA;Or a book perhaps!&lt;br&gt;&#xA;You could just start.&lt;br&gt;&#xA;Typing one letter after another.&lt;br&gt;&#xA;But you want to do this right.&lt;br&gt;&#xA;You decide to immerse yourself in the art of writing.&lt;/p&gt;&#xA;&lt;p&gt;You read every book on writing you can find.&lt;br&gt;&#xA;But you only remember &lt;a href=&#34;https://www.amazon.com/Writing-10th-Anniversary-Memoir-Craft/dp/1439156816&#34;&gt;On Writing by Stephen King&lt;/a&gt;.&lt;br&gt;&#xA;In your defense, that&amp;rsquo;s a good one.&lt;br&gt;&#xA;One thing you learn is that you have to read a lot of books.&lt;br&gt;&#xA;So you read.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Long(er) Term Software</title>
		<link href="https://jkossen.nl/ltsoft/"/>
		<id>https://jkossen.nl/ltsoft/</id>
		<updated>2023-06-08T00:00:00Z</updated>
		<summary type="html">&lt;h2 id=&#34;abstract&#34;&gt;Abstract&lt;/h2&gt;&#xA;&lt;p&gt;Occasionally I think about the software I use.&#xA;Why do I get excited about running the latest and greatest?&#xA;I guess I’m not as immune to fancy marketing as I would like to be.&#xA;I might have found a cure, though.&lt;/p&gt;&#xA;&lt;h2 id=&#34;how-it-started&#34;&gt;How it started&lt;/h2&gt;&#xA;&lt;p&gt;Recently whenever I throw away plastic in our plastic bin (we do&#xA;separate waste!),&#xA;I’m shocked to see how much plastic we use.&#xA;It’s terrible and I am ashamed.&#xA;It encouraged me to find ways to use less plastic.&#xA;And reduce waste in general.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Productivity apps</title>
		<link href="https://jkossen.nl/prod-apps/"/>
		<id>https://jkossen.nl/prod-apps/</id>
		<updated>2023-05-08T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;An app for personal to-do’s.&lt;br&gt;&#xA;An app for work tasks.&lt;br&gt;&#xA;An app for work notes.&lt;br&gt;&#xA;An app for personal notes.&lt;br&gt;&#xA;An app for reminders.&lt;br&gt;&#xA;An app for calendar items.&lt;br&gt;&#xA;An app for text editing.&lt;/p&gt;&#xA;&lt;p&gt;I changed from Microsoft Todo to Todoist as well.&#xA;Each has half of my tasks.&lt;/p&gt;&#xA;&lt;p&gt;Where are those notes on the to-do item I should finish by tomorrow?&#xA;You know, the to-do item I’m unable to find.&#xA;I&amp;rsquo;m not sure whether it was for work, for personal or both.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Hé Djaylazebellino</title>
		<link href="https://jkossen.nl/he-d/"/>
		<id>https://jkossen.nl/he-d/</id>
		<updated>2023-04-15T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;Bet-over-over-grootvader aan Djaylazebellino. Nu ja, eigenlijk weet ik je naam niet dus doe ik maar een gok. Net zoals ik nu gok dat jij 10 jaar oud bent en je dit leest in het jaar 02223. Vermoedelijk woon je nog steeds op planeet Aarde maar ook dat vermoeden is op het moment van schrijven op zijn best twijfelachtig.&lt;/p&gt;&#xA;&lt;p&gt;Allereerst, wees op je hoede. Ik zou er hier en daar wel eens naast kunnen zitten. Ik moedig je aan zelf na te denken, je te verdiepen en onderbouwd en kritisch deze tekst tot je te nemen.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Laat eens lekker los</title>
		<link href="https://jkossen.nl/los/"/>
		<id>https://jkossen.nl/los/</id>
		<updated>2021-11-26T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;Weet je waar ik gek op ben?&lt;/p&gt;&#xA;&lt;p class=&#34;mt-50 center pink ls-5 font-bold text-sm opacity-4&#34;&gt;&#xA;routine&lt;/p&gt;&#xA;&lt;p class=&#34;center font-bold pink ls-l text-xl opacity-6&#34;&gt;&#xA;regels&#xA;&lt;/p&gt;&#xA;&lt;p class=&#34;center pink ls-l font-bold text-xxl&#34;&gt;&#xA;structuur&lt;/p&gt;&#xA;&lt;p class=&#34;center pink ls-l font-bold text-xl opacity-6&#34;&gt;&#xA;orde&#xA;&lt;/p&gt;&#xA;&lt;p class=&#34;center pink ls-l font-bold text-sm opacity-4&#34;&#xA;&#x9;style=&#34;margin-bottom: 180px;&#34;&gt;&#xA;werken volgens plan&#xA;&lt;/p&gt;&#xA;&lt;p&gt;Sleutels in mijn linker jaszak. Afspraken alleen per uitnodiging in&#xA;mijn agenda. Lesrooster in mijn agenda. Ik lig links. 8:10 stappen we&#xA;op de fiets. Taken worden opgedeeld in kleine acties. Oplaadkabels&#xA;liggen in het meest rechtse laatje. Vrijdagavond zwemles. Elke dinsdag&#xA;om 14:30 teamoverleg. Notulen volgens het format in de&#xA;notulenmap. Alles in een systeem. Alles vindbaar. Zij ligt&#xA;rechts. Alle puntjes op de i. Letters op de juiste plek. Alles volgens afspraak.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Over vervuiling door de ruimtevaart</title>
		<link href="https://jkossen.nl/ruimtevaart-vervuiling/"/>
		<id>https://jkossen.nl/ruimtevaart-vervuiling/</id>
		<updated>2021-11-09T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;70 meter hoog. 550.000 kilogram schoon aan de haak.&#xA;9 Merlin motoren die zoveel lawaai produceren dat het op 5 kilometer afstand klinkt alsof de persoon naast je de zoetgevooisde klanken van zijn kettingzaag&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; aan het bewonderen is.&#xA;Dat is de Falcon 9 van SpaceX.&#xA;Deze kolos verticaal het oneindige in zien schieten is het aanschouwen van pure, brute kracht.&lt;/p&gt;&#xA;&lt;p&gt;Een vlucht naar Mars, een onvoorstelbare 56 miljoen kilometer verderop als de planeten op zijn dichtst bij elkaar staan, is geen probleem.&#xA;Ongeveer 56.000 maal de dikte van onze atmosfeer die een schamele 1000 kilometer dik is.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Grip op mijn werk in het onderwijs</title>
		<link href="https://jkossen.nl/werk-grip/"/>
		<id>https://jkossen.nl/werk-grip/</id>
		<updated>2021-06-12T00:00:00Z</updated>
		<summary type="html">&lt;h2 id=&#34;inhoud&#34;&gt;Inhoud&lt;/h2&gt;&#xA;&lt;nav id=&#34;TableOfContents&#34;&gt;&#xA;  &lt;ul&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#inhoud&#34;&gt;Inhoud&lt;/a&gt;&lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#de-situatie&#34;&gt;De situatie&lt;/a&gt;&lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#systematiseren&#34;&gt;Systematiseren&lt;/a&gt;&#xA;      &lt;ul&gt;&#xA;        &lt;li&gt;&lt;a href=&#34;#wekelijkse-retrospective&#34;&gt;Wekelijkse retrospective&lt;/a&gt;&lt;/li&gt;&#xA;        &lt;li&gt;&lt;a href=&#34;#alles-in-de-agenda&#34;&gt;Alles in de agenda&lt;/a&gt;&lt;/li&gt;&#xA;        &lt;li&gt;&lt;a href=&#34;#een-takenlijst&#34;&gt;Een takenlijst&lt;/a&gt;&lt;/li&gt;&#xA;        &lt;li&gt;&lt;a href=&#34;#notities&#34;&gt;Notities&lt;/a&gt;&lt;/li&gt;&#xA;        &lt;li&gt;&lt;a href=&#34;#alle-meldingen-uit&#34;&gt;Alle meldingen &lt;em&gt;uit&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;&#xA;      &lt;/ul&gt;&#xA;    &lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#wat-ik-doe-in-het-blok-inboxes&#34;&gt;Wat ik doe in het blok &amp;ldquo;Inboxes&amp;rdquo;&lt;/a&gt;&lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#to-do-tijd&#34;&gt;To Do tijd&lt;/a&gt;&lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#meetings-en-gesprekken&#34;&gt;Meetings en gesprekken&lt;/a&gt;&lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#notities-tijdens-gesprekken&#34;&gt;Notities tijdens gesprekken&lt;/a&gt;&lt;/li&gt;&#xA;    &lt;li&gt;&lt;a href=&#34;#verdiepen-of-verbreden&#34;&gt;Verdiepen of verbreden?&lt;/a&gt;&lt;/li&gt;&#xA;  &lt;/ul&gt;&#xA;&lt;/nav&gt;&#xA;&#xA;&lt;h2 id=&#34;de-situatie&#34;&gt;De situatie&lt;/h2&gt;&#xA;&lt;p&gt;Nadat ik mijn studenten instructie heb gegeven loop ik mijn rondje langs de werkgroepen. Ik zie bij één groep dat een groepslid een tikkeltje bleek ziet en weinig vrolijks uitstraalt. Bliep zegt mijn telefoon. Een mail van een vader. Voogdij ligt bij moeder, maar vader wil graag informatie over de voortgang van zijn kind. Kan dat? Bij twee groepen aan de andere kant gaan vingers omhoog. De ene groep heeft per ongeluk het werk van vandaag weggegooid. De andere groep kan geen ideeën bedenken voor de vrije opdracht die ze gekregen hebben.&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Neem het niet voor lief</title>
		<link href="https://jkossen.nl/niet-voor-lief/"/>
		<id>https://jkossen.nl/niet-voor-lief/</id>
		<updated>2021-05-28T00:00:00Z</updated>
		<summary type="html">&lt;p&gt;&lt;img src=&#34;nietvoorlief.svg&#34; alt=&#34;Neem het niet voor lief&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Vanmorgen trok ik mijn afgetrapte Converse All stars aan. Ik dacht er niet eens bij na. Koop jij weleens nieuwe kleren? Hoe lang blijf jij daar gelukkig van? En van je spelcomputer? Of misschien heb je al een jaar een 4k 55&amp;quot; televisie en vind je die inmiddels &amp;ldquo;gewoon&amp;rdquo;?&lt;/p&gt;&#xA;&lt;p&gt;Misschien beschouw je die dingen allemaal niet als belangrijk onderdeel van je leven. Maar wat als je eens aan je partner denkt? Hoe zou het zijn om je partner met net zoveel intensiteit en energie te bekijken als toen je net verliefd was?&lt;/p&gt;</summary>
	</entry>
	<entry>
		<title>Maak je (team)werk zichtbaar</title>
		<link href="https://jkossen.nl/werk-zichtbaar/"/>
		<id>https://jkossen.nl/werk-zichtbaar/</id>
		<updated>2021-05-05T00:00:00Z</updated>
		<summary type="html">&lt;figure&gt;&lt;img src=&#34;stuurgroepmeeting.svg&#34;/&gt;&lt;figcaption&gt;&#xA;            Maak je werk zichtbaar&#xA;        &lt;/figcaption&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Als je dit artikel leest neem ik aan dat je nieuwsgierig bent naar manieren om je werk handiger aan te pakken. Misschien heb je het te druk of ben je het overzicht kwijt van al het werk dat moet gebeuren. Misschien is het moeilijk een goede inschatting aan opdrachtgevers te geven van wanneer hun opdracht klaar kan zijn. Of is het moeilijk om gemaakte afspraken na te komen. Geldt dit alleen voor jou, of ook voor de rest van het team?&lt;/p&gt;</summary>
	</entry>
</feed>
