<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>the codeartist — programmer and engineer based in Berlin</title>
<link>https://koehr.in</link>
<description>The personal page and weblog of Norman Köhring</description>
<generator>Zola</generator>
<language>en</language>
<atom:link href="https://koehr.in/rss.xml" rel="self" type="application/rss+xml"/>
<lastBuildDate>Tue, 22 Mar 2022 00:00:00 +0000</lastBuildDate>
<item>
<title>There's a file system for EFI vars now</title>
<pubDate>Tue, 22 Mar 2022 00:00:00 +0000</pubDate>
<link>https://koehr.in/til/1647516011-efibootmgr/</link>
<guid>https://koehr.in/til/1647516011-efibootmgr/</guid>
<description><p>On kernel updates I saw a recurring <code>EFI variables are not supported on this system.</code> so I investigated and learned that the new EFI variables are provided via a file system that needs to be mounted first:</p>
<pre data-lang="sh" style="background-color:#2b303b;color:#c0c5ce;" class="language-sh "><code class="language-sh" data-lang="sh"><span style="color:#bf616a;">mount -t</span><span> efivarfs efivarfs /sys/firmware/efi/efivars
</span></code></pre>
</description>
</item>
<item>
<title>Adding aliases in vite with typescript needs the same alias in tsconfig</title>
<pubDate>Tue, 22 Feb 2022 00:00:00 +0000</pubDate>
<link>https://koehr.in/til/20220222-vite-typescript-aliases/</link>
<guid>https://koehr.in/til/20220222-vite-typescript-aliases/</guid>
<description><p>For example:</p>
<pre data-lang="js" style="background-color:#2b303b;color:#c0c5ce;" class="language-js "><code class="language-js" data-lang="js"><span style="color:#b48ead;">import </span><span>{ </span><span style="color:#bf616a;">fileURLToPath</span><span>, </span><span style="color:#bf616a;">URL </span><span>} </span><span style="color:#b48ead;">from </span><span>&quot;</span><span style="color:#a3be8c;">url</span><span>&quot;
</span><span style="color:#b48ead;">import </span><span>{ </span><span style="color:#bf616a;">defineConfig </span><span>} </span><span style="color:#b48ead;">from </span><span>&#39;</span><span style="color:#a3be8c;">vite</span><span>&#39;
</span><span style="color:#b48ead;">import </span><span style="color:#bf616a;">vue </span><span style="color:#b48ead;">from </span><span>&#39;</span><span style="color:#a3be8c;">@vitejs/plugin-vue</span><span>&#39;
</span><span>
</span><span style="color:#65737e;">// https://vitejs.dev/config/
</span><span style="color:#b48ead;">export default </span><span style="color:#8fa1b3;">defineConfig</span><span>({
</span><span> plugins: [</span><span style="color:#8fa1b3;">vue</span><span>()],
</span><span> resolve: {
</span><span> alias: {
</span><span> &quot;</span><span style="color:#a3be8c;">@</span><span>&quot;: </span><span style="color:#8fa1b3;">fileURLToPath</span><span>(new URL(&quot;</span><span style="color:#a3be8c;">./src</span><span>&quot;, </span><span style="color:#b48ead;">import</span><span>.meta.</span><span style="color:#bf616a;">url</span><span>)),
</span><span> &quot;</span><span style="color:#a3be8c;">!component</span><span>&quot;: </span><span style="color:#8fa1b3;">fileURLToPath</span><span>(new URL(&quot;</span><span style="color:#a3be8c;">./src/components</span><span>&quot;, </span><span style="color:#b48ead;">import</span><span>.meta.</span><span style="color:#bf616a;">url</span><span>)),
</span><span> &quot;</span><span style="color:#a3be8c;">!composable</span><span>&quot;: </span><span style="color:#8fa1b3;">fileURLToPath</span><span>(new URL(&quot;</span><span style="color:#a3be8c;">./src/composables</span><span>&quot;, </span><span style="color:#b48ead;">import</span><span>.meta.</span><span style="color:#bf616a;">url</span><span>)),
</span><span> &quot;</span><span style="color:#a3be8c;">!lib</span><span>&quot;: </span><span style="color:#8fa1b3;">fileURLToPath</span><span>(new URL(&quot;</span><span style="color:#a3be8c;">./src/lib</span><span>&quot;, </span><span style="color:#b48ead;">import</span><span>.meta.</span><span style="color:#bf616a;">url</span><span>)),
</span><span> }
</span><span> }
</span><span>})
</span></code></pre>
<p>will need the following in tsconfig.json:</p>
<pre data-lang="json" style="background-color:#2b303b;color:#c0c5ce;" class="language-json "><code class="language-json" data-lang="json"><span>{
</span><span> &quot;</span><span style="color:#a3be8c;">compilerOptions</span><span>&quot;: {
</span><span> &quot;</span><span style="color:#a3be8c;">paths</span><span>&quot;: {
</span><span> &quot;</span><span style="color:#a3be8c;">@/*</span><span>&quot;: [ &quot;</span><span style="color:#a3be8c;">./src/*</span><span>&quot; ],
</span><span> &quot;</span><span style="color:#a3be8c;">!component/*</span><span>&quot;: [ &quot;</span><span style="color:#a3be8c;">./src/components/*</span><span>&quot; ],
</span><span> &quot;</span><span style="color:#a3be8c;">!composable/*</span><span>&quot;: [ &quot;</span><span style="color:#a3be8c;">./src/composables/*</span><span>&quot; ],
</span><span> &quot;</span><span style="color:#a3be8c;">!lib/*</span><span>&quot;: [ &quot;</span><span style="color:#a3be8c;">./src/lib/*</span><span>&quot; ]
</span><span> }
</span><span> }
</span><span>}
</span></code></pre>
<p>The asterixes in the syntax is important (<code>alias/* =&gt; ./path/*</code>).</p>
</description>
</item>
<item>
<title>E-Mail that isn't spam is called ham!</title>
<pubDate>Fri, 03 Sep 2021 00:00:00 +0000</pubDate>
<link>https://koehr.in/til/20210903-email-ham/</link>
<guid>https://koehr.in/til/20210903-email-ham/</guid>
<description></description>
</item>
<item>
<title>`git fetch $repo_url $remote_branch:$new_local_branch`</title>
<pubDate>Fri, 03 Sep 2021 00:00:00 +0000</pubDate>
<link>https://koehr.in/til/20210903-git-fetch-single-branch/</link>
<guid>https://koehr.in/til/20210903-git-fetch-single-branch/</guid>
<description></description>
</item>
<item>
<title>Bush refused offer to discuss Osama Bin Laden handover</title>
<pubDate>Fri, 03 Sep 2021 00:00:00 +0000</pubDate>
<link>https://koehr.in/til/20210903-taliban/</link>
<guid>https://koehr.in/til/20210903-taliban/</guid>
<description></description>
</item>
<item>
<title>There is a HTML tag for "Word Break Opportunity"</title>
<pubDate>Tue, 31 Aug 2021 00:00:00 +0000</pubDate>
<link>https://koehr.in/til/20210831-wbr-tag/</link>
<guid>https://koehr.in/til/20210831-wbr-tag/</guid>
<description></description>
</item>
<item>
<title></title>
<pubDate>Mon, 05 Jul 2021 10:36:44 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-07-05-cq8t-r-daeb/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-07-05-cq8t-r-daeb/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 96</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 13</span>
</a>
</div>
</div>
<img alt="Laptop from 45deg with external Sofle split keyboard and colorful keys" src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;7ad9263912c4055a00.jpg" itemprop="image" />
</div>
<p>The new keyboard is finally ready!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 21 Jun 2021 20:02:38 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-06-21-cqzrm09ddk1/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-06-21-cqzrm09ddk1/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 82</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on June 21, 2021 tagging @worldofprogrammers, @worldcode, @comment_sense, @code.community, @developerspace, @lovecoders, @programunity, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;40d136f1f06ee0ac00.jpg" itemprop="image" />
</div>
<p>Long has it been since my last post!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 18 May 2021 22:32:24 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-05-19-cpb-t9far7v/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-05-19-cpb-t9far7v/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 65</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 6</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on May 18, 2021 tagging @comment_sense, @kbwarriors, @falba.tech, @coderlifes, @mech.keyboards, @programunity, @keeb_click, @_devcommunity, and @the.teleport. May be an image of computer keyboard and indoor." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;505f2d0e3dc98dfc00.jpg" itemprop="image" />
</div>
<p>Oh no, looks like I slipped and fell into the #mechanicalkeyboard rabbit hole again. I found the Sofle keyboard which is very similar to the Lily58 but moves the thumb cluster further out. I think I’m going to get a kit at some point. But one with hot swap sockets this time. Because I also found some really exciting new switches I want to try 😅</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 13 May 2021 14:26:49 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-05-13-co0qlcijkno/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-05-13-co0qlcijkno/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 60</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo by Coffee&#x27;n&#x27;Code in Homeoffice Berlin with @fussel, @workhardanywhere, @comment_sense, @code.community, @coderlifes, @lovecoders, @programunity, @code_base, @codeclique, @_whatthetech, and @_devcommunity. May be an image of sofa and living room." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;cb0573a103a8d7e200.jpg" itemprop="image" />
</div>
<p>Finally a couch!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 04 May 2021 21:18:16 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-05-04-cod0gyfai7d/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-05-04-cod0gyfai7d/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 58</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on May 04, 2021 tagging @worldcode, @comment_sense, @thepracticaldev, @code.community, @lovecoders, @thedevlife, @coding_deck, @programunity, @d_dev_guys, and @_devcommunity. May be a cartoon of text that says &#x27;And don&#x27; let me catch you following me 100&#x27;." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;a9b263baa40d767500.jpg" itemprop="image" />
</div>
<p>Happy #starwarsday everyone!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 03 May 2021 15:55:58 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-05-03-coaqbqda3qh/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-05-03-coaqbqda3qh/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 106</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on May 03, 2021 tagging @worldcode, @comment_sense, @code.community, @lovecoders, @programunity, @d_dev_guys, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;7e314a322283a7bf00.jpg" itemprop="image" />
</div>
<p>Messy cable desk picture for you!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 17 Apr 2021 20:07:01 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-04-17-cnx6b9ygwed/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-04-17-cnx6b9ygwed/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 45</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on April 17, 2021 tagging @worldcode, @comment_sense, @codelogs, @code.community, @codepeople, @programer.life, @coding_deck, @programunity, @_whatthetech, @d_dev_guys, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;3ba919304a2ed5b700.jpg" itemprop="image" />
</div>
<p>U sure ’bout line 42?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 07 Apr 2021 14:25:43 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-04-07-cnxjbd8aoei/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-04-07-cnxjbd8aoei/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 53</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on April 07, 2021 tagging @coding, @worldofprogrammers, @worldcode, @comment_sense, @code.community, @lovecoders, @programer.life, @coding_deck, @programunity, @d_dev_guys, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;d3ef88454a77f46900.jpg" itemprop="image" />
</div>
<p>So much to do, so little time…</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 20 Mar 2021 13:16:01 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-03-20-cmpfjojddz1/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-03-20-cmpfjojddz1/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 79</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 20, 2021 tagging @comment_sense, @code.community, @coderlifes, @codepeople, @programer.life, @programunity, @codeclique, @d_dev_guys, and @_devcommunity. May be an image of indoor." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;c27c3e042deff21d00.jpg" itemprop="image" />
</div>
<p>Chrome!? What are you doing?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 16 Mar 2021 20:08:17 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-03-16-cmfhjqcjbrn/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-03-16-cmfhjqcjbrn/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 85</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 6</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 16, 2021 tagging @worldofprogrammers, @worldcode, @comment_sense, @code.community, @lovecoders, @programunity, @codeworldofficial, @d_dev_guys, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;ab37c8b14854718a00.jpg" itemprop="image" />
</div>
<p>Yes, I’m that kind of person…</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 14 Mar 2021 00:52:43 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-03-14-cmytt6xamst/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-03-14-cmytt6xamst/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 86</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 13, 2021 tagging @fussel, @worldofprogrammers, @comment_sense, @code.community, @lovecoders, @codepeople, @coding_deck, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;4cc740e0de1cf06e00.jpg" itemprop="image" />
</div>
<p>Is she judging me?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 11 Mar 2021 13:46:05 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-03-11-cmr9bm3gv5f/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-03-11-cmr9bm3gv5f/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 91</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 6</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 11, 2021 tagging @worldcode, @comment_sense, @code.community, @lovecoders, @codepeople, @coding_deck, @_devcommunity, and @comicalcoder. May be an image of screen and laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;746f66e6a65d11cd00.jpg" itemprop="image" />
</div>
<p>Some sun after the rain.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 01 Mar 2021 21:59:01 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-03-01-cl5f5jhgpda/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-03-01-cl5f5jhgpda/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 81</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 01, 2021 tagging @fussel, @worldofprogrammers, @worldcode, @comment_sense, @code.community, @lovecoders, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;30bb3d7150df125b00.jpg" itemprop="image" />
</div>
<p>Working from home? Working from bed!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 25 Feb 2021 22:55:31 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-02-25-clu5lkega98/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-02-25-clu5lkega98/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 136</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on February 25, 2021 tagging @comment_sense, @code.community, @lovecoders, @coding_deck, @programunity, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;fea9c501f87fe9c100.jpg" itemprop="image" />
</div>
<p>Tests tests tests!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 23 Feb 2021 21:22:47 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-02-23-clpk-huachz/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-02-23-clpk-huachz/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 116</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 9</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on February 23, 2021 tagging @worldcode, @comment_sense, @codergallery, @code.community, @lovecoders, @coding_deck, @programunity, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;08af57a96458783500.jpg" itemprop="image" />
</div>
<p>I’m back with a viee from my new flat!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 11 Feb 2021 12:47:37 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-02-11-cljwe1bgme6/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-02-11-cljwe1bgme6/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 76</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on February 11, 2021 tagging @fussel, @worldofprogrammers, @worldcode, @comment_sense, @code.community, @coderlifes, @lovecoders, @coding_deck, @programunity, and @_devcommunity. May be an image of indoor." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;5428ae619b5ea6e100.jpg" itemprop="image" />
</div>
<p>#blocker</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 05 Feb 2021 12:31:05 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-02-05-ck6r0hlaavm/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-02-05-ck6r0hlaavm/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 87</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 5</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on February 05, 2021 tagging @worldcode, @comment_sense, @code.community, @coderlifes, @lovecoders, @programer.life, @programunity, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;f121fa27a060b19a00.jpg" itemprop="image" />
</div>
<p>Enough of this. I’m going to code now.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 31 Jan 2021 09:49:59 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-31-ckthao-g0-p/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-31-ckthao-g0-p/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 79</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 31, 2021 tagging @coding, @comment_sense, @code.community, @_programmers.life, @coderlifes, @lovecoders, @codingdays, @programunity, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;3d8397634ec5d1da00.jpg" itemprop="image" />
</div>
<p>I heard certain laptops out there can heat the house!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 28 Jan 2021 23:49:53 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-29-ckm5jnsa9sr/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-29-ckm5jnsa9sr/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 81</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 28, 2021 tagging @worldofprogrammers, @worldcode, @comment_sense, @code.community, @lovecoders, @coding_deck, @programunity, @codeclique, and @_devcommunity. May be an image of laptop and screen." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;369608c7ace1637d00.jpg" itemprop="image" />
</div>
<p>Shell scripting, yeah…?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 27 Jan 2021 22:53:12 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-27-ckkn3jba-p5/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-27-ckkn3jba-p5/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 60</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 27, 2021 tagging @coding, @worldofprogrammers, @worldcode, @comment_sense, @thepracticaldev, @code.community, @lovecoders, @codingdays, @programunity, @codeclique, and @_devcommunity. May be an image of food." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;261b45a51400d23400.jpg" itemprop="image" />
</div>
<p>Only one last change…</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 26 Jan 2021 22:25:59 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-26-ckhl897gcez/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-26-ckhl897gcez/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 51</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 26, 2021 tagging @fussel, @coding, @worldofprogrammers, @worldcode, @comment_sense, @thepracticaldev, @code.community, @lovecoders, @programunity, and @_devcommunity. May be an image of dog, laptop and food." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;374e23a9e732fbd600.jpg" itemprop="image" />
</div>
<p>Worked a lot these days!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 23 Jan 2021 19:54:02 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-23-ckzmla3acox/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-23-ckzmla3acox/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 104</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 11</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 23, 2021 tagging @coding, @worldofprogrammers, @worldcode, @comment_sense, @code.community, @_programmers.life, @lovecoders, @programunity, @codeclique, @coding.vibes, @_devcommunity, and @coding.log. May be an image of food and laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;da70be07fb71d5fd00.jpg" itemprop="image" />
</div>
<p>Databases are odd folks.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 21 Jan 2021 12:21:52 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-21-ckto17-amc3/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-21-ckto17-amc3/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 76</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 21, 2021 tagging @cats_of_instagram, @worldcode, @comment_sense, @falba.tech, @code.community, @coderlifes, @lovecoders, @codepeople, @programunity, @codeclique, and @_devcommunity. May be an image of food and laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;8508377daa03351500.jpg" itemprop="image" />
</div>
<p>Psst! You should watch those request times!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 19 Jan 2021 17:01:44 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-19-cko-r-fawff/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-19-cko-r-fawff/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 60</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 19, 2021 tagging @cats_of_instagram, @worldcode, @comment_sense, @code.community, @codingcommunity, @lovecoders, @coding_deck, @programunity, @codeclique, and @_devcommunity. May be an image of sitting and laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;72300c3a6154df4e00.jpg" itemprop="image" />
</div>
<p>Starring for no reason. But what’s up with that side project of yours?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 15 Jan 2021 00:21:09 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-15-ckc5l8pg8vb/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-15-ckc5l8pg8vb/</guid>
<description>
<p>You should mirror that repo. Now let me sleep!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 13 Jan 2021 22:39:15 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-13-ckajittapcx/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-13-ckajittapcx/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 77</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 13, 2021 tagging @worldcode, @comment_sense, @code.community, @lovecoders, @coding_deck, @programunity, @codeclique, @_whatthetech, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;8d38d0ba5af594a600.jpg" itemprop="image" />
</div>
<p>I’m surrr that line is wrong! </p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 13 Jan 2021 00:58:22 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-13-cj90q0zgppx/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-13-cj90q0zgppx/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 42</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 12, 2021 tagging @fussel, @worldcode, @comment_sense, @code.community, @lovecoders, @programunity, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;944a3508ab8d571a00.jpg" itemprop="image" />
</div>
<p>Widescreen.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 12 Jan 2021 00:23:25 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-12-cj7ld5-g6yh/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-12-cj7ld5-g6yh/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 57</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 9</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 11, 2021 tagging @fussel, @worldcode, @comment_sense, @code.community, @webdeveloper.io, @lovecoders, @programunity, @itsetup, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;93223693092ad84f00.jpg" itemprop="image" />
</div>
<p>You do your stuff, I’ll contemplate…</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 10 Jan 2021 21:11:35 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-10-cj4qubng7nd/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-10-cj4qubng7nd/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 71</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 10, 2021 tagging @fussel, @worldcode, @comment_sense, @code.community, @_programmers.life, @lovecoders, @coding_deck, @programunity, @codeclique, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;bc7d0971edcc6a5600.jpg" itemprop="image" />
</div>
<p>Thread safe programming is hard! Let’s nap instead!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 09 Jan 2021 00:13:08 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-09-cjzb5-hg7fc/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-09-cjzb5-hg7fc/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 55</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 08, 2021 tagging @fussel, @worldcode, @comment_sense, @code.community, @lovecoders, @coding_deck, @programunity, @codeclique, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;a655e8e0f033e0d800.jpg" itemprop="image" />
</div>
<p>She must be bored…</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 06 Jan 2021 18:40:01 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-06-cjtsmzcgj7y/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-06-cjtsmzcgj7y/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 54</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 7</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 06, 2021 tagging @worldcode, @comment_sense, @code.community, @lovecoders, @coding_deck, @programunity, @codeclique, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;530c0c7c9aa3715100.jpg" itemprop="image" />
</div>
<p>Hard times</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 05 Jan 2021 10:59:27 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-05-cjqssungopw/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-05-cjqssungopw/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 48</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 05, 2021 tagging @fussel, @worldcode, @comment_sense, @thepracticaldev, @code.community, @coderlifes, @lovecoders, @coding_deck, @codeclique, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;2751ceb838966f2b00.jpg" itemprop="image" />
</div>
<p>A penny for her thoughts!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 04 Jan 2021 13:02:17 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2021-01-04-cjn79g8abz2/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2021-01-04-cjn79g8abz2/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 70</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 04, 2021 tagging @worldcode, @comment_sense, @thepracticaldev, @code.community, @_programmers.life, @lovecoders, @programunity, @codeclique, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;cdd6b4b6c4797ffd00.jpg" itemprop="image" />
</div>
<p>Back to #Rust!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 23 Dec 2020 14:56:02 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-12-23-cjjpbq1gc7i/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-12-23-cjjpbq1gc7i/</guid>
<description>
<p>Are you Matrix yet?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 22 Dec 2020 14:33:50 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-12-22-cjgogmfaiql/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-12-22-cjgogmfaiql/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 66</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 22, 2020 tagging @cats_of_instagram, @clubmate_germany, @worldcode, @comment_sense, @code.community, @_programmers.life, @lovecoders, @programer.life, @coding_deck, @programunity, @codeclique, @_whatthetech, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;6170c0eb781c782100.jpg" itemprop="image" />
</div>
<p>U surrr about that?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 19 Dec 2020 20:35:55 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-12-19-ci-jjjpgsc2/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-12-19-ci-jjjpgsc2/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 68</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 19, 2020 tagging @worldcode, @comment_sense, @falba.tech, @code.community, @lovecoders, @coding_deck, @programunity, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;18578c6018fab27c00.jpg" itemprop="image" />
</div>
<p>Holidays!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 17 Dec 2020 00:07:40 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-12-17-ci4m-1kaipl/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-12-17-ci4m-1kaipl/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 81</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 16, 2020 tagging @manualbrewonly, @comment_sense, @thepracticaldev, @code.community, @coderlifes, @lovecoders, @programunity, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;5c7856f2726e7bb600.jpg" itemprop="image" />
</div>
<p>Y u touch this thing all the time? It’s not even soft!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 14 Dec 2020 14:08:45 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-12-14-cix-3f2aold/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-12-14-cix-3f2aold/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 105</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 13</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 14, 2020 tagging @worldcode, @comment_sense, @falba.tech, @code.community, @lovecoders, @codepeople, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;cd7dece1ad9124e800.jpg" itemprop="image" />
</div>
<p>Back to #ergonomics!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 13 Dec 2020 19:42:04 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-12-13-ciwan5bg-on/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-12-13-ciwan5bg-on/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 36</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 13, 2020 tagging @comment_sense, @codelogs, @code.community, @lovecoders, @code_base, @codeclique, @_whatthetech, and @_devcommunity. May be an image of animal." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;70fda5052443ff3b00.jpg" itemprop="image" />
</div>
<p>No idea where your laptop is, human.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 10 Dec 2020 15:08:29 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-12-10-cinyhh3azz6/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-12-10-cinyhh3azz6/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 47</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 10, 2020 tagging @fussel, @comment_sense, @programmer.me, @thepracticaldev, @lovecoders, @coding_deck, @programunity, @code_base, @codeclique, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;40c18f3ac1d3dcc200.jpg" itemprop="image" />
</div>
<p>I’m not sleeping, I’m compiling!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 07 Dec 2020 11:33:35 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-12-07-cifri2bgtq6/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-12-07-cifri2bgtq6/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 90</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 7</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 07, 2020 tagging @comment_sense, @thepracticaldev, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;a6842671aa0bbd5600.jpg" itemprop="image" />
</div>
<p>I’ll review that later…</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 05 Dec 2020 00:24:43 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-12-05-cizvanoag-i/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-12-05-cizvanoag-i/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 52</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 04, 2020 tagging @comment_sense, @code.community, @lovecoders, @coding_deck, @code_base, @codeclique, @_whatthetech, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;3959c6cb2ea588b600.jpg" itemprop="image" />
</div>
<p>Let’s rather sleep then code!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 30 Nov 2020 22:50:40 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-11-30-cio3d5mgrnz/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-11-30-cio3d5mgrnz/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 49</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 30, 2020 tagging @comment_sense, @thepracticaldev, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;7889d00425db26c900.jpg" itemprop="image" />
</div>
<p>You sure with that?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 29 Nov 2020 23:15:00 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-11-30-cimvdlfg3tl/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-11-30-cimvdlfg3tl/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 66</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 29, 2020 tagging @comment_sense, @thepracticaldev, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity. May be an image of one or more people, cat and laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;2fe6d4078091734a00.jpg" itemprop="image" />
</div>
<p>Pair programming?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 27 Nov 2020 12:28:06 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-11-27-cigb1emgkfe/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-11-27-cigb1emgkfe/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 69</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 27, 2020 tagging @fussel, @comment_sense, @code.community, @lovecoders, @codepeople, @coding_deck, @codeclique, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;33c99e3daf7b1c4100.jpg" itemprop="image" />
</div>
<p>Now this is some delicious… Code?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 23 Nov 2020 11:48:48 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-11-23-ch7qkf2gteq/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-11-23-ch7qkf2gteq/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 56</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 23, 2020 tagging @comment_sense, @thepracticaldev, @code.community, @webdeveloper.io, @lovecoders, @programer.life, @codeclique, @_whatthetech, and @_devcommunity. May be an image of cat." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;3e6c758013a5c77800.jpg" itemprop="image" />
</div>
<p>How am I supposed to concentrate if you keep using that laptop, human?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 19 Nov 2020 00:08:35 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-11-19-chwg2awapfs/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-11-19-chwg2awapfs/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 54</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 18, 2020 tagging @cats_of_instagram, @comment_sense, @thepracticaldev, @codelogs, @code.community, @lovecoders, @codeclique, @_whatthetech, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;54aebcb385dc017f00.jpg" itemprop="image" />
</div>
<p>The boss sleeps.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 17 Nov 2020 13:09:30 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-11-17-chswn4cgag9/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-11-17-chswn4cgag9/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 59</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 17, 2020 tagging @fussel, @comment_sense, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;54aef1690c80552400.jpg" itemprop="image" />
</div>
<p>Boring humanz! Always work!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 13 Nov 2020 11:34:18 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-11-13-chh4jgtalwh/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-11-13-chh4jgtalwh/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 75</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 13, 2020 tagging @comment_sense, @code.community, @lovecoders, @fluffy__kittens, @programer.life, @coding_deck, @programunity, @codeclique, @_whatthetech, and @_devcommunity. May be an image of animal." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;3321b5f08242f65d00.jpg" itemprop="image" />
</div>
<p>All work and no play…?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 12 Nov 2020 15:37:24 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-11-12-chfvkypgoh0/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-11-12-chfvkypgoh0/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 113</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 7</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 12, 2020 tagging @c3coffeenerds, @comment_sense, @falba.tech, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;c643bc34ac6f70e000.jpg" itemprop="image" />
</div>
<p>My #Homeoffice is now a bit nicer to look at!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 10 Nov 2020 23:40:31 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-11-11-chbdrgnah8l/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-11-11-chbdrgnah8l/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 50</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 10, 2020 tagging @malt_community, @comment_sense, @thepracticaldev, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity. May be an image of 3 people and cat." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;aa505e76900930e800.jpg" itemprop="image" />
</div>
<p>Yet another backstage view from the @vuejs_berlin #aftertalk!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 06 Nov 2020 12:27:34 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-11-06-chp9fiwauwy/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-11-06-chp9fiwauwy/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 68</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 06, 2020 tagging @comment_sense, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;4369ca5107f40cd500.jpg" itemprop="image" />
</div>
<p>Holidays!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 31 Oct 2020 10:47:22 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-31-chau2ebg6rb/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-31-chau2ebg6rb/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 49</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 31, 2020 tagging @dell, @comment_sense, @code.community, @lovecoders, @coding_deck, @code_base, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;79f5bb3cd1a4fe9d00.jpg" itemprop="image" />
</div>
<p>Weekend!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 29 Oct 2020 13:06:42 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-29-cg7bmw1gzi9/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-29-cg7bmw1gzi9/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 70</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 29, 2020 tagging @comment_sense, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;56eced6c0ae0ce4b00.jpg" itemprop="image" />
</div>
<p>Gloomy day.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 26 Oct 2020 19:52:16 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-26-cg0bopxgzqs/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-26-cg0bopxgzqs/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 73</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 26, 2020 tagging @comment_sense, @codelogs, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;80b6b3cb7aa007ed00.jpg" itemprop="image" />
</div>
<p>Wonder what he thinks…</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 25 Oct 2020 23:11:35 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-26-cgynpjkgvab/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-26-cgynpjkgvab/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 78</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 5</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 25, 2020 tagging @comment_sense, @codelogs, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;f7a1bc9136e5e46600.jpg" itemprop="image" />
</div>
<p>Feeling watched?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 21 Oct 2020 11:31:06 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-21-cgmp5kqgyhj/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-21-cgmp5kqgyhj/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 60</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 21, 2020 tagging @cats_of_instagram, @comment_sense, @falba.tech, @code.community, @lovecoders, @programunity, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;aefd86cf5e1abc5d00.jpg" itemprop="image" />
</div>
<p>She tried to protect the coffee but it wasn’t enough :(</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 20 Oct 2020 14:55:46 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-20-cgkchwsa8si/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-20-cgkchwsa8si/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 39</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 5</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 20, 2020 tagging @comment_sense, @codelogs, @code.community, @lovecoders, @codeclique, @_whatthetech, and @_devcommunity. May be a cartoon." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;a334e21e7d445d4b00.jpg" itemprop="image" />
</div>
<p>New profile picture?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 19 Oct 2020 11:22:06 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-19-cghfr6jaslh/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-19-cghfr6jaslh/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 74</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 6</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 19, 2020 tagging @coding, @comment_sense, @codelogs, @code.community, @lovecoders, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;20c18c48501f92cc00.jpg" itemprop="image" />
</div>
<p>Quick fix on the #Ergodox with fluffy assistance.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 16 Oct 2020 14:32:00 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-16-cgagonlabqv/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-16-cgagonlabqv/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 44</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 16, 2020 tagging @fussel, @comment_sense, @kaffeekirscheberlin, @code.community, @webdeveloper.io, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;467740b7f12f6a7d00.jpg" itemprop="image" />
</div>
<p>Got new coffee and used the chance to work a bit at the Café.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 14 Oct 2020 22:41:17 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-15-cgv1ce2aoe3/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-15-cgv1ce2aoe3/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 40</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 14, 2020 tagging @coding, @comment_sense, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity. May be an image of 1 person." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;9eaf729b9fc7fa2400.jpg" itemprop="image" />
</div>
<p>Backstage view from the last @vuejs_berlin meetup. I had a secret guest smuggled it as you can see.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 13 Oct 2020 13:54:26 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-13-cgst8a9gpqd/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-13-cgst8a9gpqd/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 53</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 13, 2020 tagging @deathwishcoffee, @comment_sense, @falba.tech, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;fbfbd1aa573db20300.jpg" itemprop="image" />
</div>
<p>Yes, yes. It’s all meant for your convenience my fluffy queen!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 12 Oct 2020 19:17:08 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-12-cgque-pa-u1/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-12-cgque-pa-u1/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 85</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 6</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 12, 2020 tagging @comment_sense, @falba.tech, @code.community, @lovecoders, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;3cc18a14a04be50900.jpg" itemprop="image" />
</div>
<p>I missed my #Ergodox!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 10 Oct 2020 13:59:10 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-10-cgkmgcoaof2/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-10-cgkmgcoaof2/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 53</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 5</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 10, 2020 tagging @comment_sense, @thepracticaldev, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity. May be an image of text that says &#x27;NEEWER&#x27;." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;66deb0086ec719fe00.jpg" itemprop="image" />
</div>
<p>Did you know, that there’s a @vuejs_berlin podcast? Every meetup is followed by the aftertalk that we record and publish on YouTube, Spotify and other places. So if you ever feel like listening to our ramblings, that’s your chance!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 09 Oct 2020 16:44:36 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-09-cgiuprlacpn/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-09-cgiuprlacpn/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 64</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 09, 2020 tagging @cats_of_instagram, @comment_sense, @code.community, @coderlifes, @lovecoders, @coding_deck, @codeclique, and @_devcommunity. May be an image of cat." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;b549705edf6b1ddc00.jpg" itemprop="image" />
</div>
<p>My peer is not interested in my code 😒</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 08 Oct 2020 08:53:50 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-08-cge5kt1gdn/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-08-cge5kt1gdn/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 68</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 08, 2020 tagging @comment_sense, @code.community, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;fe345c37d7a2237f00.jpg" itemprop="image" />
</div>
<p>New desk!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 06 Oct 2020 10:09:04 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-10-06-cf-4lnsg34m/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-10-06-cf-4lnsg34m/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 42</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 06, 2020 tagging @comment_sense, @code.community, @webdeveloper.io, @lovecoders, @coding_deck, @codeclique, @_whatthetech, and @_devcommunity. May be an image of cat and laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;e353bad62389932b00.jpg" itemprop="image" />
</div>
<p>Hardship Tuesday!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 28 Sep 2020 12:15:42 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-09-28-cfrgud3anen/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-09-28-cfrgud3anen/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 43</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 28, 2020 tagging @comment_sense, @code.community, @lovecoders, @coding_deck, @programunity, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;111415734ef6fa8200.jpg" itemprop="image" />
</div>
<p>I love the sun. I hate the sun 😅</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 25 Sep 2020 15:06:25 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-09-25-cfkf3z7a4zb/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-09-25-cfkf3z7a4zb/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 47</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 25, 2020 tagging @comment_sense, @code.community, @coderlifes, @lovecoders, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;1a8e3d9f3d24a73b00.jpg" itemprop="image" />
</div>
<p>Quick bug hunt in a café on my way back home.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 21 Sep 2020 16:00:38 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-09-21-cfz45z5gzlb/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-09-21-cfz45z5gzlb/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 45</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 21, 2020 tagging @fussel, @coding, @comment_sense, @_programmers.life, @webdeveloper.io, @codingdays, @programunity, and @_devcommunity. May be an image of text that says &#x27;DELL&#x27;." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;a7c4c03380707f1a00.jpg" itemprop="image" />
</div>
<p>Pair programming!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 12 Sep 2020 14:08:21 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-09-12-cfcg5mtaes0/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-09-12-cfcg5mtaes0/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 55</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 12, 2020 tagging @comment_sense, @code.community, @coderlifes, @lovecoders, @zukunftostkreuz, @codeclique, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;103fba59ac1afa9800.jpg" itemprop="image" />
</div>
<p>Some last bits of summer! Enjoying them in the beer garden while coding on my Rust project. Good times!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 10 Sep 2020 12:41:49 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-09-10-ce9nzo3afk2/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-09-10-ce9nzo3afk2/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 60</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 10, 2020 tagging @coding, @comment_sense, @thepracticaldev, @webdeveloper.io, @codingdays, @programunity, @codeclique, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;527ca514a7593aaf00.jpg" itemprop="image" />
</div>
<p>Feeling like I’m back in school!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 07 Sep 2020 15:26:34 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-09-07-ce1x3qqadvp/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-09-07-ce1x3qqadvp/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 43</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 07, 2020 tagging @fussel, @comment_sense, @code.community, @_programmers.life, @coding_deck, @programunity, @codeclique, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;77b7ef6cc8c1580600.jpg" itemprop="image" />
</div>
<p>All work and no play?!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 04 Sep 2020 15:38:07 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-09-04-ceueztbgorl/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-09-04-ceueztbgorl/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 51</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo by Coffee&#x27;n&#x27;Code on September 04, 2020." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;be5e5c32149baddb00.jpg" itemprop="image" />
</div>
<p>Couldn’t stop myself from going back to @happybaristas today. 🤷♂️</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 03 Sep 2020 13:07:08 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-09-03-cerou80a0db/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-09-03-cerou80a0db/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 70</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 7</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 03, 2020 tagging @happybaristas, @workhardanywhere, @coding, @workhardeverywhere, @happycodingclub, @coding_deck, @programunity, @codeclique, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;b4974899e550969000.jpg" itemprop="image" />
</div>
<p>Another nice and warm day in Berlin. Hopefully not the last one this year.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 01 Sep 2020 10:17:49 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-09-01-celxxhpgqls/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-09-01-celxxhpgqls/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 50</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 01, 2020 tagging @the_chemex, @goriffee, @comment_sense, @coffeegator, @code.community, @lovecoders, @codeclique, and @_devcommunity. May be an image of 1 person." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;2d8b0485b064f1b100.jpg" itemprop="image" />
</div>
<p>My #coffeeoftheday with some code review in the background.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 31 Aug 2020 12:41:34 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-31-cejdbhnai3u/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-31-cejdbhnai3u/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 73</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 31, 2020 tagging @dell, @happybaristas, @comment_sense, @code.community, @coderlifes, @programunity, @codeclique, @_whatthetech, and @_devcommunity. May be an image of text that says &#x27;DELL&#x27;." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;a87a77d4f3d09e3800.jpg" itemprop="image" />
</div>
<p>Starting the week in my favorite working place.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 29 Aug 2020 14:26:08 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-29-ceefzoigm4z/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-29-ceefzoigm4z/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 69</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo by Coffee&#x27;n&#x27;Code on August 29, 2020." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;c33f1ca1d54b01d600.jpg" itemprop="image" />
</div>
<p>A day or two ago I heard of twtxt for the first time. If you never heard of it, that’s not surprising.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 27 Aug 2020 13:22:31 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-27-cezo7gsg5-k/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-27-cezo7gsg5-k/</guid>
<description>
<p>Sitting in a crane house today.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 26 Aug 2020 10:42:30 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-26-cewx0lyaybv/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-26-cewx0lyaybv/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 65</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 5</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 26, 2020 tagging @cats_of_instagram, @dailyfluff, @programunity, @codeclique, @_whatthetech, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;dec2721c7cd5af4700.jpg" itemprop="image" />
</div>
<p>Seriously, what are you even doing there?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 25 Aug 2020 10:39:26 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-25-cetyruiakoc/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-25-cetyruiakoc/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 35</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 25, 2020 tagging @fussel, @comment_sense, @coding_deck, @codeclique, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;5e4419f00024af1600.jpg" itemprop="image" />
</div>
<p>Everybody is really hard at work at the moment!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 24 Aug 2020 10:01:01 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-24-cerje-dgkcf/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-24-cerje-dgkcf/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 62</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 8</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 24, 2020 tagging @c3coffeenerds, @comment_sense, @dripster_gram, @codeclique, @_whatthetech, @_devcommunity, and @kalita.wave." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;050890952c1439f200.jpg" itemprop="image" />
</div>
<p>I’m a fan of @coffeesock filters since a while and finally decided to try their @kalita.wave filter. Unfortunately I cannot give a got review yet because the postman rang right in the worst moment.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 23 Aug 2020 16:40:19 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-23-cepsyv9g-yy/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-23-cepsyv9g-yy/</guid>
<description>
<p>As long as the team lead is sleepy I can secretly work on my own projects (swipe to see the team lead).</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 21 Aug 2020 13:04:24 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-21-cejwfmkgdk1/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-21-cejwfmkgdk1/</guid>
<description>
<p>Feeling watched?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 17 Aug 2020 11:20:19 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-17-cd-q-uxagqr/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-17-cd-q-uxagqr/</guid>
<description>
<p>It’s sometimes hard to work with the boss staring at you all the time… And from time to time trying to catch your fingers… 🙀 </p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 11 Aug 2020 14:05:50 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-11-cdwhkyja2lc/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-11-cdwhkyja2lc/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 50</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 11, 2020 tagging @specialtycoffeeassociation, @thevisitcoffeeroastery, @programunity, @codeclique, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;743f9d0a886d2a4700.jpg" itemprop="image" />
</div>
<p>The sun forces me to use a bright theme.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 06 Aug 2020 09:39:33 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-06-cdiwuazglky/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-06-cdiwuazglky/</guid>
<description>
<p>A sunny Thursday for you all!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 04 Aug 2020 13:12:38 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-04-cdd-hc3axob/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-04-cdd-hc3axob/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 41</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 04, 2020 tagging @fussel, @_programmers.life, @coderlifes, @programunity, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;119f3bc1d12b5bf200.jpg" itemprop="image" />
</div>
<p>Hey! I just got me a glass of water!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 03 Aug 2020 11:43:06 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-08-03-cdbqez1g9zz/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-08-03-cdbqez1g9zz/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 30</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 03, 2020 tagging @makers_moment, @coding_deck, @programunity, @codeclique, and @_devcommunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;d760c13899a43abf00.jpg" itemprop="image" />
</div>
<p>Did you know the Hello Inc. Sleep Sense? In 2014 or so a company created a small computer to help people analyzing and eventually improve their sleeping. Unfortunately after a few years the company gave up and stopped its services. The good thing though: they also open sourced everything from the PCB plans to all the web services. </p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 28 Jul 2020 15:23:31 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-07-28-cdmm7bzazbc/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-07-28-cdmm7bzazbc/</guid>
<description>
<p>Working in a cafe is finally no hassle anymore thanks to my new work laptop. The old ones battery was so broken that it barely survived half an hour. This new cutie here lasts the whole day (12-15h depending on usage). Good times.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 19 Jul 2020 23:37:06 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-07-20-cc16qxzg8kb/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-07-20-cc16qxzg8kb/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 41</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on July 19, 2020 tagging @coding, @codingdays, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;ad03f725bce2ffaa00.jpg" itemprop="image" />
</div>
<p>Installing Voidlinux on my new laptop, a @dell XPS 13 developer edition.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 14 Jul 2020 21:00:05 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-07-14-ccowuqmdamd/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-07-14-ccowuqmdamd/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 50</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on July 14, 2020 tagging @webdeveloper.io, @programunity, @codeclique, and @_whatthetech." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;3daa0a7c8cdcf1d800.jpg" itemprop="image" />
</div>
<p>Started working for a new client yesterday and it was all setup and warmup and reading docs. But today I started implementing something already and it feels good to be productive.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 06 Jul 2020 21:37:06 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-07-06-ccuomyeb5gm/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-07-06-ccuomyeb5gm/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 50</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on July 06, 2020 tagging @developerstuff, @programunity, @codeclique, and @_whatthetech." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;cc5a66fabc50d97300.jpg" itemprop="image" />
</div>
<p>Is that the interface of the future? Looks like straight out of a movie, doesn’t it?</p>
</description>
</item>
<item>
<title>A store implementation from scratch using Vue3's Composition API</title>
<pubDate>Mon, 29 Jun 2020 00:00:00 +0000</pubDate>
<link>https://koehr.in/blog/a-store-implementation-for-vue3-composition-api/</link>
<guid>https://koehr.in/blog/a-store-implementation-for-vue3-composition-api/</guid>
<description><p>I’ve built a store implementation that allows name-spaced actions and helps with the separation of concerns. The new Composition API in Vue3 also allows completely new, convenient ways of using it.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 27 Jun 2020 18:16:12 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-06-27-cb8sdiegesc/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-06-27-cb8sdiegesc/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 39</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on June 27, 2020 tagging @coding, @coderlifes, @codingcommunity, @webdeveloper.io, @programunity, @zukunftostkreuz, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;374d19c43d16a58000.jpg" itemprop="image" />
</div>
<p>I moved from the balcony to a lovely place called @zukunftostkreuz! Having live music, beer made in house and working on my side project. It’s just a perfect day!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 27 Jun 2020 11:37:31 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-06-27-cb7-bdggfxs/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-06-27-cb7-bdggfxs/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 34</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on June 27, 2020 tagging @webdeveloper.io, @coding_deck, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;84065e8c047eef6800.jpg" itemprop="image" />
</div>
<p>#coffeetime</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 17 Jun 2020 11:30:56 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-06-17-cbinudwgfcc/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-06-17-cbinudwgfcc/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 43</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on June 17, 2020 tagging @coderlifes, @webdeveloper.io, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;f2e672baf930ccf000.jpg" itemprop="image" />
</div>
<p>#peekprogramming</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 16 Jun 2020 11:55:16 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-06-16-cbfrtdcghed/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-06-16-cbfrtdcghed/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 34</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on June 16, 2020 tagging @fussel, @coderlifes, @thedevlife, @programer.life, and @programunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;0d645ac3ba0b3ae000.jpg" itemprop="image" />
</div>
<p>Relax a bit from time to time.
Some people plan their relaxation as much as their work. I don’t think that’s a good idea. Just take time off and see what happens. Walk through the city, a park, a lake. Don’t feel guilty. Your body and mind will be thankful.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 11 Jun 2020 10:17:24 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-06-11-cbsoiqpa5ed/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-06-11-cbsoiqpa5ed/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 63</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on June 11, 2020 tagging @coderlifes, @lovecoders, @thedevlife, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;3fae9d43fc303a8100.jpg" itemprop="image" />
</div>
<p>Letting the boss take over. #bosscat</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 08 Jun 2020 13:43:10 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-06-08-cblrsukamx1/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-06-08-cblrsukamx1/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 41</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on June 08, 2020 tagging @webdeveloper.io, @developerstuff, @coding_deck, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;75dc8676137cd31400.jpg" itemprop="image" />
</div>
<p>#pairprogramming</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 02 Jun 2020 12:55:29 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-06-02-ca7vetpamm6/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-06-02-ca7vetpamm6/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 23</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo by Coffee&#x27;n&#x27;Code on June 02, 2020." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;5288697ad40d91ca00.jpg" itemprop="image" />
</div>
<p>Black lives matter.
▪️✊🏻✊🏼✊🏽✊🏾✊🏿▪️
#blackouttuesday</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 25 May 2020 18:49:54 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-05-25-canxrbvazvr/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-05-25-canxrbvazvr/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 47</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on May 25, 2020 tagging @comment_sense, @lovecoders, @code_base, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;ad290ce7c6aae4f500.jpg" itemprop="image" />
</div>
<p>It’s a new week and I achieved something big last weekend!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 18 May 2020 11:01:50 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-05-18-cau6ivtahgo/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-05-18-cau6ivtahgo/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 46</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on May 18, 2020 tagging @the_chemex, @coding, @comment_sense, @codingdays, and @terminalworld." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;7ffd650b552c74af00.jpg" itemprop="image" />
</div>
<p>Work work work!
Actually my next project didn’t start yet so I’m working on a personal project, but I try to keep up with the same working pace, otherwise I screw up my day cycle even more. It’s a tough life as a night owl 🦉. It’s a new week so… What’s your personal goal for this week?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 07 May 2020 10:05:27 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-05-07-b-4fwl1astk/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-05-07-b-4fwl1astk/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 54</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on May 07, 2020 tagging @coding, @_programmers.life, @programming_bits, @programunity, @codeclique, @coding.vibes, and @talent.labs." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;f1322ea69c2752eb00.jpg" itemprop="image" />
</div>
<p>Today I’m finishing up my current project. Actually that was planned to happen yesterday but as usual that is not how it went. I also worked long enough to not see that I just missed one simple CSS rule to fix my problem before I finally decided to call it a day.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 24 Apr 2020 10:36:19 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-04-24-b-xei3jdhum/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-04-24-b-xei3jdhum/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 59</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on April 24, 2020 tagging @_programmers.life, @coding_deck, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;950d2bc864909ada00.jpg" itemprop="image" />
</div>
<p>Just saved over 3GB by deleting unused docker images. I hope I didn’t destroy anything but <code>docker image prune</code> should do well as long as you know what you’re doing. Let’s see what else I can throw out. I saw a lot of images that I really already forgot about. I’m sure I don’t need those anymore either.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 20 Apr 2020 14:55:05 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-04-20-b-no-oravjx/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-04-20-b-no-oravjx/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 51</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 5</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on April 20, 2020 tagging @webdeveloper.io, @usernameu___, @coding_deck, @programunity, @codeclique, @_whatthetech, and @thecoderslaboratory. May be an image of 1 person." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;14a83cd4e9f32b7800.jpg" itemprop="image" />
</div>
<p>It’s tough to work from home. Sometimes. But most of the times it’s also very soft.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 18 Apr 2020 21:08:33 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-04-18-b-iwioravzt/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-04-18-b-iwioravzt/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 54</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on April 18, 2020 tagging @_programmers.life, @programunity, @codeclique, and @_whatthetech." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;6b655cbe5e2cc21600.jpg" itemprop="image" />
</div>
<p>Back at working at my side project. But it’s hard to concentrate while being in such critical supurrrvision.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 15 Apr 2020 22:40:30 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-04-16-b-bmrfuaitf/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-04-16-b-bmrfuaitf/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 42</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on April 15, 2020 tagging @coderlifes, @webdeveloper.io, @coding_deck, @programunity, and @_whatthetech." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;a15d5c25258d677d00.jpg" itemprop="image" />
</div>
<p>This week I started a new client project. I’m building a web application that’s sitting on top of an #opensource headless CMS (Directus if you’re interested). And because I wanted to try it, I built in a small light / dark mode switch in after working hours. It’s actually pretty easy to build this using only a hidden checkbox, some CSS and CSS variables.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 13 Apr 2020 21:50:09 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-04-13-b-786g7aahl/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-04-13-b-786g7aahl/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 50</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on April 13, 2020 tagging @thepracticaldev, @_programmers.life, @webdeveloper.io, @developerstuff, @usernameu___, @programunity, @codeclique, and @_whatthetech." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;6235b0d8319c4f8500.jpg" itemprop="image" />
</div>
<p>In case you’re wondering if I do things other than programming. Yes! Sometimes for example I try to rescue data from old hard disks.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 11 Apr 2020 13:46:31 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-04-11-b-17-ljgfe2/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-04-11-b-17-ljgfe2/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 55</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 8</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on April 11, 2020 tagging @thepracticaldev, @usernameu___, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;ecebe4ec2fab152c00.jpg" itemprop="image" />
</div>
<p>Moved my home office to the balcony again. Just important is of course the special chair for my co-worker!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 07 Apr 2020 12:41:12 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-04-07-b-rhusfgrfv/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-04-07-b-rhusfgrfv/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 43</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on April 07, 2020 tagging @programm.r, @_programmers.life, @programunity, @_whatthetech, @programmer.mp4, and @thecoderslaboratory." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;ab54cd31bd480b9f00.jpg" itemprop="image" />
</div>
<p>I think I can handle #homeoffice a bit longer this way.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 06 Apr 2020 17:50:35 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-04-06-b-pf7ziglhq/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-04-06-b-pf7ziglhq/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 54</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on April 06, 2020 tagging @programm.r, @_programmers.life, @webdeveloper.io, @developerstuff, @usernameu___, @devbrewcoffee, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;842b80e3529188db00.jpg" itemprop="image" />
</div>
<p>Thanks to the nice weather I moved the home office to the balcony today. But I’m not alone in my new office of course.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 30 Mar 2020 11:36:21 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-03-30-b-wzipjawms/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-03-30-b-wzipjawms/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 46</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 30, 2020 tagging @_programmers.life, @coding_deck, @programunity, @codeclique, and @_whatthetech." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;66a24259366ba52200.jpg" itemprop="image" />
</div>
<p>Got a new @chemex after the old one shattered on the floor. Seems like they got a redesign in the meantime. The resulting coffee is if course as usual : excellent!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 26 Mar 2020 16:04:05 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-03-26-b-m-acbaszc/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-03-26-b-m-acbaszc/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 55</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 26, 2020 tagging @codelogs, @coderlifes, @usernameu___, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;3a9c31caf25e12c300.jpg" itemprop="image" />
</div>
<p>#homeoffice situation today</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 24 Mar 2020 14:41:54 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-03-24-b-hsabpghgg/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-03-24-b-hsabpghgg/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 63</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 24, 2020 tagging @stayhomeclubofficial, @c3coffeenerds, @populus.coffee, @coderlifes, @usernameu___, @codingdays, @programunity, @stayhomeforhumanity, and @stayhomeandchill." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;641ff6a5022bc4fb00.jpg" itemprop="image" />
</div>
<p>My current #homeoffice setup includes a nice view, great coffee from @populus.coffee and an old, unfortunately broken wall picture radio.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 21 Mar 2020 19:05:32 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-03-21-b-abyvpghp6/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-03-21-b-abyvpghp6/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 56</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 5</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 21, 2020 tagging @coderlifes, @programunity, @codeclique, and @astralvtt." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;a05dca3a1ebb9eec00.jpg" itemprop="image" />
</div>
<p>Today we tried to play #dungeonsanddragons #remote using @astralvtt. It took a while to get really used to it but I think after that little hurdle it’s a really good tool! I love the dynamic visibility and I’m looking forward to dynamic lights.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 19 Mar 2020 00:18:48 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-03-19-b95rqjwctjz/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-03-19-b95rqjwctjz/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 52</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 18, 2020 tagging @coderlifes, @programunity, @codeclique, and @talent.labs." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;850acb35743d36a300.jpg" itemprop="image" />
</div>
<p>Still working on the card editor component. I started by defining a set of elements similar to what the original rpg-cards app supports. But I realised that it is extremely tricky to build a graphical editor around this.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 16 Mar 2020 22:56:57 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-03-16-b9z-tvpi4rl/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-03-16-b9z-tvpi4rl/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 50</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 16, 2020 tagging @github, @_programmers.life, @coding_deck, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;0732fc7d8c17a92a00.jpg" itemprop="image" />
</div>
<p>I btw really think, #github should finally introduce a #darkmode .</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 16 Mar 2020 20:30:44 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-03-16-b9ztkzto-6t/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-03-16-b9ztkzto-6t/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 14</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 16, 2020 tagging @codelogs, @_programmers.life, @coding_deck, @programunity, @codeclique, and @_whatthetech." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;8f5b81a860ab4c9100.jpg" itemprop="image" />
</div>
<p>The card generator obviously needs a way to put content into the cards. That’s a bit tricky if you want it in a #wysiwyg way.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 14 Mar 2020 15:38:20 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-03-14-b9ucg-ai3mu/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-03-14-b9ucg-ai3mu/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 37</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 14, 2020 tagging @mario_galvan_dev, @_programmers.life, @webdeveloper.io, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;84cad2d1f680323c00.jpg" itemprop="image" />
</div>
<p>Do you play tabletop rolr playing games like #dungeonsanddragons? I started to build a card creation tool as a side project that allows you to create item, spell and creature cards. It’s not yet done but I’ll keep you all posted.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 11 Mar 2020 21:04:23 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-03-11-b9m5ceniynz/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-03-11-b9m5ceniynz/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 45</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 11, 2020 tagging @mario_galvan_dev, @programunity, @code_base, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;d31bce23e4c2a99a00.jpg" itemprop="image" />
</div>
<p>Enjoying home office with my best cat buddy!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 09 Mar 2020 17:32:46 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-03-09-b9hxox2gy3l/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-03-09-b9hxox2gy3l/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 48</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on March 09, 2020 tagging @thepracticaldev, @coderlifes, @webdeveloper.io, @usernameu___, @programunity, and @_whatthetech." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;03a53d38aad4d0e400.jpg" itemprop="image" />
</div>
<p>I’m currently working on a little example app for my talk about the new Composition API coming in Vue3! I think it’s best shown by example!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 26 Feb 2020 23:59:23 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-02-27-b9dkv6lcqrv/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-02-27-b9dkv6lcqrv/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 61</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on February 26, 2020 tagging @codingblog, @mario_galvan_dev, @webdeveloper.io, @developerstuff, @usernameu___, @coding_deck, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;7a84abc938bb2a5d00.jpg" itemprop="image" />
</div>
<p>Yet another night shift. I’m currently writing an article about how to write a virtual DOM yourself. It’s super interesting and I’m getting stuck in all those juicy details, that I need to figure out to make sure I’m not writing nonsense. Last juice: Tree Traversal algorithms. Let’s see what’s next!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 22 Feb 2020 02:00:23 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-02-22-b82gn0oozzy/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-02-22-b82gn0oozzy/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 53</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on February 21, 2020 tagging @programm.r, @coding, @_programmers.life, @coderlifes, @usernameu___, @programunity, @codeclique, @_whatthetech, and @coding.vibes." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;d3f05b4d7383ed3b00.jpg" itemprop="image" />
</div>
<p>It’s 3am but there was that thing that came to my mind so I started jotting. After @vuejsamsterdam I got inspired to try to implement a vDOM from scratch and write about it.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 04 Feb 2020 11:42:31 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-02-04-b8jmhtfc0ts/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-02-04-b8jmhtfc0ts/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 54</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on February 04, 2020 tagging @fortitudecoffee, @coffeegator, @coderlifes, @lovecoders, @codingdays, @programer.life, and @programunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;1f5689d4dcbee37c00.jpg" itemprop="image" />
</div>
<p>Reading about the screen orientation api while brewing some coffee. My day started a bit crazy, coffee hopefully makes it better.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 30 Jan 2020 11:52:25 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-01-30-b78vrycij1j/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-01-30-b78vrycij1j/</guid>
<description>
<p>Today I tried another new way to prepare coffee. This is clearly not sustainable as the @coffeesock but it’s perfect for travel or just to simply try a coffee before you spend money on a whole bag.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 28 Jan 2020 11:05:08 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-01-28-b73gr08ccon/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-01-28-b73gr08ccon/</guid>
<description>
<p>Today I tried the @coffeesock for the first time and I have to say I’m impressed! Although the water ran through much faster than with the paper filter the coffee became very rich in taste. Tomorrow I’ll try to grind finer coffee and wait for the taste explosion. #coffee #coffeelover #coffeebreak #coffeegram #coffeelove #coffeebrewing #coffeebeans #coffeeoftheday #manualbrewonly #manmakecoffee #thirdwavecoffee #geek #programmerslife #coderlife @coffee @thefuckingbestcoffee
@coffee.in.black @coffeetized @coffee.jpg @worldofcoffee @coffeeprops</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 26 Jan 2020 13:06:14 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-01-26-b7yk8-uimmk/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-01-26-b7yk8-uimmk/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 46</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 26, 2020 tagging @manualbrewonly, @comment_sense, @programmer.me, @developerstuff, @codingdays, @coding_deck, @programunity, @brewingathome, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;2f6866b69da93f0700.jpg" itemprop="image" />
</div>
<p>#sundayvibes</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 23 Jan 2020 13:40:05 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-01-23-b7qgcpxijjs/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-01-23-b7qgcpxijjs/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 51</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 23, 2020 tagging @19grams.coffee, @coding, @comment_sense, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;b6bdbdf048e5a06d00.jpg" itemprop="image" />
</div>
<p>Doing #typescript and #vuejs development while have bloody good coffee at @19grams.coffee!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 21 Jan 2020 16:26:22 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-01-21-b7lp4elcxwj/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-01-21-b7lp4elcxwj/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 48</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 21, 2020 tagging @coding, @comment_sense, @designingforscale, @coderlifes, @webdeveloper.io, @programunity, @codeclique, and @purriors." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;622fc232640b718d00.jpg" itemprop="image" />
</div>
<p>It’s getting dark early these days. Good that cats have excellent night vision!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 17 Jan 2020 01:36:35 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-01-17-b7zw36zckzj/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-01-17-b7zw36zckzj/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 74</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 16, 2020 tagging @comment_sense, @coderlifes, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;7a81cfec02941d2500.jpg" itemprop="image" />
</div>
<p>Sometimes things are black and white. Yin and Yang. Cloud Management interface and console.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 12 Jan 2020 12:14:58 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-01-12-b7ob9nbcnrd/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-01-12-b7ob9nbcnrd/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 64</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 12, 2020 tagging @comment_sense, @coffee, @coderlifes, @programming_bits, @programunity, @code_base, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;24dcf6030036c8d500.jpg" itemprop="image" />
</div>
<p>Sunday fun: analysing log data and comparing the logs of an #IoT device with the backend service’s.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 08 Jan 2020 19:41:38 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2020-01-08-b7eh5mjidjq/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2020-01-08-b7eh5mjidjq/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 53</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on January 08, 2020 tagging @fussel, @comment_sense, @coderlifes, @developerstuff, @programunity, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;2714b53cd8872a1100.jpg" itemprop="image" />
</div>
<p>Sorry for the lack of activity these days. I needed some time off after the end of the year and the #36C3.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 29 Dec 2019 12:13:10 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-29-b6p-n3pi398/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-29-b6p-n3pi398/</guid>
<description>
<p>More impressions from #36c3 day 2! Don’t forget to #swipeleft.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 27 Dec 2019 23:45:12 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-28-b6meormizm6/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-28-b6meormizm6/</guid>
<description>
<p>Day one of the #36c3 is over for me. A bit earlier than usual but I need to make sure that the deployment I did earlier works tomorrow morning 😢</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 27 Dec 2019 20:22:32 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-27-b6ltcpui-ga/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-27-b6ltcpui-ga/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 57</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 27, 2019 tagging @comment_sense, @coderlifes, @programunity, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;ab59f9054e66aa5700.jpg" itemprop="image" />
</div>
<p>Last minute deployment in the middle of #36C3. I actually tried to deploy this five times already but it simply didn’t work. Now I did everything manually step by step instead of using the deployment script and it eventually worked. Now I can work on my own stuff finally… It’s about time.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 26 Dec 2019 20:12:59 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-26-b6jhjcdixjl/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-26-b6jhjcdixjl/</guid>
<description>
<p>Greetings from the #36c3! Sitting here in the Berlin area (36c3.c3nav.de/l/berlin/) trying to fix a memory leak in a node service. Welcome to my world.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 24 Dec 2019 13:10:43 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-24-b6dno8tcrcg/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-24-b6dno8tcrcg/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 72</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 24, 2019 tagging @comment_sense, @coderlifes, @developerstuff, @codingdays, @programunity, @codeclique, @linaxtube, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;49a66823b04d179700.jpg" itemprop="image" />
</div>
<p>Christmas time! And as you can see, I’m full force christmasing already… not.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 17 Dec 2019 12:11:51 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-17-b6le7ouiild/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-17-b6le7ouiild/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 30</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 17, 2019 tagging @fortitudecoffee, @third_wave_coffee, @manualbrewonly, and @thirdwavecoffeeindia. May be an image of text that says &#x27;FORTITUDE SHYIRA FORTITUDE FOPRT TUDE COFFEE FORT OASTER ITUDE SHYIRA SHYIRA SOLD OUT SHYIRA WASHED RWANDA&#x27;." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;b5243a1ba97259e300.jpg" itemprop="image" />
</div>
<p>Sorry people, in case you wanted that coffee. But yes, it looks like it was me who bought everything that was left 🤷♂️ Thank you @fortitudecoffeeroasters for this fantastic coffee!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 10 Dec 2019 18:41:41 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-10-b55v-uvisaq/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-10-b55v-uvisaq/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 53</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 10, 2019 tagging @fussel, @universalmusicgroup, @comment_sense, @coderlifes, @developerstuff, and @programunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;d61a0042b77de2c000.jpg" itemprop="image" />
</div>
<p>Greetings from the @vuejs_berlin #meetup! Today we’re hosted by Universal Music and currently Alexander from Universal is telling us how they use #vuejs for internal tools to make their life easier.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 10 Dec 2019 15:30:37 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-10-b55ahziccmp/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-10-b55ahziccmp/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 53</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 10, 2019 tagging @comment_sense, @thepracticaldev, @coderlifes, @developerstuff, @programunity, @codeclique, @linaxtube, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;cc6a09e420060e0000.jpg" itemprop="image" />
</div>
<p>Did you ever write an indexer or search engine? It can be pretty easy as long as you have small amounts of data. That is a few hundreds of megabytes is no big deal to search naively on todays hardware.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 09 Dec 2019 12:07:36 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-09-b52efibclhv/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-09-b52efibclhv/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 52</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 09, 2019 tagging @comment_sense, @coderlifes, @developerstuff, @programunity, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;878c1e8fed64142a00.jpg" itemprop="image" />
</div>
<p>Somebody is really hungry here. And it’s not even a browser this time.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 04 Dec 2019 16:01:18 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-04-b5qa2x9c1pe/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-04-b5qa2x9c1pe/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 49</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 04, 2019 tagging @comment_sense, @coderlifes, @programunity, and @linaxtube." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;5a88e883c988c8d800.jpg" itemprop="image" />
</div>
<p>Another night with a warm lap.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 03 Dec 2019 01:57:47 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-03-b5l7h3xcjm5/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-03-b5l7h3xcjm5/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 71</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 02, 2019 tagging @comment_sense, @coderlifes, @webdeveloper.io, @webentrepreneurship, @programunity, @codeclique, @linaxtube, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;b8017953494192ec00.jpg" itemprop="image" />
</div>
<p>I really need to stop those nocturnal coding sessions. It’s almost 3am now and although I had a lot of fun, I don’t want to think about the alarm in a few hours. 😅</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 01 Dec 2019 17:00:06 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-12-01-b5izm1iiwfn/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-12-01-b5izm1iiwfn/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 71</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on December 01, 2019 tagging @comment_sense, @thepracticaldev, @coderlifes, @programunity, @codeclique, @linaxtube, @talent.labs, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;f67c5c4ae4b88d4d00.jpg" itemprop="image" />
</div>
<p>Making good use of the time till the flight back to #Berlin. Still 90 minutes before he boarding starts.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 26 Nov 2019 00:46:11 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-11-26-b5txxv0iegt/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-11-26-b5txxv0iegt/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 62</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 25, 2019 tagging @comment_sense, @coderlifes, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;2f1be775496382db00.jpg" itemprop="image" />
</div>
<p>Soon to be finished: Yet another snake clone!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 25 Nov 2019 16:49:32 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-11-25-b5s7ospi7vo/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-11-25-b5s7ospi7vo/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 63</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 25, 2019 tagging @bose, @comment_sense, @kaffeekirscheberlin, @coderlifes, @codeclique, @linaxtube, @javascriptmastery, and @papillonformen.al. May be an image of laptop." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;9c95518e2413ef7100.jpg" itemprop="image" />
</div>
<p>Had another short but productive day. I started to introduce a new colleague to my current project. It is a lot to digest but I’m positive I’ll get another productive hand soon.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 16 Nov 2019 13:59:47 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-11-16-b47cpiic2nb/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-11-16-b47cpiic2nb/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 56</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 16, 2019 tagging @comment_sense, @thevisitcoffeeroastery, @coderlifes, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;497958878b0f622500.jpg" itemprop="image" />
</div>
<p>Enjoying my weekend with #coffee_n_code at @thevisitcoffeeroastery.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 07 Nov 2019 13:40:11 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-11-07-b4kppsjith2/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-11-07-b4kppsjith2/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 47</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 07, 2019 tagging @19grams.coffee, @comment_sense, @coderlifes, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;55f6ebce1f8a844a00.jpg" itemprop="image" />
</div>
<p>After trying two new full text search engines and (actually one, because both are based on a library called Tantivy(1)) I thought about building something like notmuch(2), an email management program.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 05 Nov 2019 16:20:50 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-11-05-b4fyckgi2wo/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-11-05-b4fyckgi2wo/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 59</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 05, 2019 tagging @coderlifes, @thedevlife, @programunity, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;868307db422bb2e000.jpg" itemprop="image" />
</div>
<p>Looks like I just built a dynamic, fully configurable #vuejs table component for the client project. Maybe I should make an open source project from that. I think it might be pretty useful and still lightweight. It doesn’t yet support infinite scrolling or pagination though 🤔</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 04 Nov 2019 00:30:20 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-11-04-b4bgd-pc9lk/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-11-04-b4bgd-pc9lk/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 64</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on November 03, 2019 tagging @comment_sense, @coderlifes, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;d233d6ef7ff4aa1000.jpg" itemprop="image" />
</div>
<p>Can’t sleep. So I try something instead: Bayard is a full-text search and indexing server with replication using The Raft Consensus algorithm.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 29 Oct 2019 18:11:46 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-10-29-b4njk7piuh/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-10-29-b4njk7piuh/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 49</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 29, 2019 tagging @comment_sense, @thevisitcoffeeroastery, @coderlifes, @theprogrammers.ig, @developerstuff, @codingdays, @programunity, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;e5d2ca2a00d0f36b00.jpg" itemprop="image" />
</div>
<h2 id="projects-for-big-companies-can-be-two-things-exciting-and-frustrating-often-even-both-at-the-same-time-my-current-project-is-exactly-like-this-very-exciting-in-many-ways-lots-of-remote-work-greenfield-means-it-s-an-all-new-project-working-together-colleagues-from-wunderdogsw-but-it-s-also-very-frustrating-lots-of-always-changing-requirements-everything-needs-a-long-time-communication-is-slow-misinterpretion-or-misinformation-all-the-way-down">Projects for big companies can be two things: Exciting and Frustrating. Often even both at the same time. My current project is exactly like this. Very exciting in many ways. Lots of remote work, greenfield (means, it’s an all new project), working together colleagues from @wunderdogsw. But it’s also very frustrating. Lots of always changing requirements. Everything needs a long time. Communication is slow. Misinterpretion or misinformation all the way down.</h2>
<h2 id="that-s-how-we-grow-i-guess">That’s how we grow, I guess.</h2>
<p>#coffee #thirdwavecoffee #code #coder #coding #codinglife #creativecoding #programming #programmer #programminglife #programmerrepublic #dvlpr #geek #programmerslife #programmers #art #artwork #instagood #instadaily #engineering #engineeringlife #softwaredeveloper #softwareengineer #webstagram #webdevelopment #webdeveloper #webdev @codeclique @techngneer @comment_sense @lovecoders @coding @worldcode @coderlifes @programmerrepublic @thedevlife @peoplewhocode @developerstuff @webprogramist</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 26 Oct 2019 11:00:22 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-10-26-b4fdaj1cyne/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-10-26-b4fdaj1cyne/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 67</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 26, 2019 tagging @comment_sense, @coderlifes, @dev.lyf, @programunity, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;4099044184ac72f300.jpg" itemprop="image" />
</div>
<p>Chilly weekend with some maintenance of open source projects and #cats. Next step is to have a #coffee tough. I got the marvellous Colombia El Paraiso from @beanbrosco. What an amazing coffee it is!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 22 Oct 2019 11:40:48 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-10-22-b3603t7im76/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-10-22-b3603t7im76/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 52</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 22, 2019 tagging @fussel, @comment_sense, @coderlifes, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;2410d179acbbe61400.jpg" itemprop="image" />
</div>
<p>#cutenessoverload #Tuesday!
.
.
.
Yes, I made that up. So what?
.
.
.
#code #coder #coding #codinglife #creativecoding #programming #programmer #programminglife #programmerrepublic #dvlpr #geek #programmerslife #programmers #art #artwork #instagood #instadaily #engineering #engineeringlife #softwaredeveloper #softwareengineer #webstagram #webdevelopment #webdeveloper #webdev @codeclique @techngneer @comment_sense @lovecoders @coding @worldcode @coderlifes @programmerrepublic @thedevlife @peoplewhocode @developerstuff @webprogramist</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 19 Oct 2019 12:03:28 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-10-19-b3zjem1i8t4/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-10-19-b3zjem1i8t4/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 74</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 19, 2019 tagging @bose_professional, @comment_sense, @clubmatede, @falba.tech, @coderlifes, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;d31713048b927f9100.jpg" itemprop="image" />
</div>
<p>Yesterday at the office.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 15 Oct 2019 12:53:59 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-10-15-b3o7rlzc1sr/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-10-15-b3o7rlzc1sr/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 50</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 15, 2019 tagging @comment_sense, @coderlifes, @codingdays, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;e55358feb1ee0b0e00.jpg" itemprop="image" />
</div>
<p>Another nice thing about home office time is that you can use it outside in a cafe as well!
Tomorrow is the big day! The hardware that is a important key part to the software we’re currently working will be ready. Over one month delay. But I’m excited to see how good my emulator really emulates the real world.
#code #coder #coding #codinglife #creativecoding #programming #programmer #programminglife #programmerrepublic #dvlpr #geek #programmerslife #programmers #art #artwork #instagood #instadaily #engineering #engineeringlife #softwaredeveloper #softwareengineer #webstagram #webdevelopment #webdeveloper #webdev @codeclique @techngneer @comment_sense @lovecoders @coding @worldcode @coderlifes @programmerrepublic @thedevlife @peoplewhocode @developerstuff @webprogramist</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 14 Oct 2019 10:26:20 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-10-14-b3mf-0-itzv/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-10-14-b3mf-0-itzv/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 49</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 14, 2019 tagging @comment_sense, @coderlifes, @codingdays, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;7dd2f098b8d002f100.jpg" itemprop="image" />
</div>
<p>Home office time!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 10 Oct 2019 12:24:36 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-10-10-b3cavkxafw7/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-10-10-b3cavkxafw7/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 63</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 10, 2019 tagging @coding, @system76_com, @comment_sense, @coffeegator, @falba.tech, @coderlifes, @codingdays, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;49e2d6290d47d4c100.jpg" itemprop="image" />
</div>
<p>Looked into rot.js the other day. Rot.js is a library that helps with development of rogue like games with JavaScript and supports browser and nodejs as environment. It’s really fun and I’ll see maybe I create some hard-core rogue like one day 🤯</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 03 Oct 2019 14:25:38 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-10-03-b3kmn2jclrz/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-10-03-b3kmn2jclrz/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 40</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on October 03, 2019 tagging @baristadaily, @manualbrewonly, @thecoffeenerds, and @beansmith.s." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;e1317015edb1d8a400.jpg" itemprop="image" />
</div>
<p>Coffee of the (public holi-)day!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 29 Sep 2019 11:01:47 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-09-29-b2-ihw6ik-o/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-09-29-b2-ihw6ik-o/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 55</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 29, 2019 tagging @third_wave_coffee, @coffeepirates_vienna, @manualbrewonly, and @thecoffeenerds." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;d3d1502f7392839400.jpg" itemprop="image" />
</div>
<p>Dear @coffeepirates_vienna.
Thank you for producing such an amazing coffee. And thank you for your fantastic service.
I’m writing this in memory of the Colombia Tropical Castillo. A beautiful experience like a freshly opened glas of strawberry jam. I will grind the last few beans left now and have the last sip soon. #coffee #coffeelover #coffeebreak #coffeegram #coffeelove #coffeebrewing #coffeebeans #coffeeoftheday #manualbrewonly #manmakecoffee #thirdwavecoffee #geek #programmerslife #coderlife @coffee @thefuckingbestcoffee
@coffee.in.black @coffeetized @coffee.jpg @worldofcoffee @coffeeprops #anaerobic</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 26 Sep 2019 18:49:12 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-09-26-b24pondapn/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-09-26-b24pondapn/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 61</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 26, 2019 tagging @comment_sense, @wildcatliving, @coderlifes, @codingdays, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;be344d0d9fc88e3e00.jpg" itemprop="image" />
</div>
<p>Typical situation when working from home and the landlord is sitting on the table next to your laptop… #cat #catsofinsta #code #coder #coding #codinglife #creativecoding #programming #programmer #programminglife #programmerrepublic #dvlpr #geek #programmerslife #programmers #art #artwork #instagood #instadaily #engineering #engineeringlife #softwaredeveloper #softwareengineer #webstagram #webdevelopment #webdeveloper #webdev @codeclique @techngneer @comment_sense @lovecoders @coding @worldcode @coderlifes @programmerrepublic @thedevlife @peoplewhocode @developerstuff @webprogramist</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 25 Sep 2019 16:51:32 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-09-25-b2129hpcgdh/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-09-25-b2129hpcgdh/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 45</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 25, 2019 tagging @system76_com, @comment_sense, @falba.tech, @codinganddecoding, @coderlifes, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;c6a6a8bdd684d54e00.jpg" itemprop="image" />
</div>
<p>Today’s #hustling setup. Working on a little emulator program that helps us testing an RFID scanner without having the actual scanner available. This involves some low level networking code which is quite a refreshment after all the front-end web application stuff.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 20 Sep 2019 16:21:39 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-09-20-b2o7kuhcihy/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-09-20-b2o7kuhcihy/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 57</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 20, 2019 tagging @codinganddecoding, @programunity, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;f3faaea09bb9a21900.jpg" itemprop="image" />
</div>
<p>Working from the hotel in Prague isn’t the worst thing I ever did. Especially in the upper floor.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 19 Sep 2019 11:58:20 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-09-19-b2l4owida8f/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-09-19-b2l4owida8f/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 38</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 19, 2019 tagging @comment_sense, @coderlifes, @codingdays, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;a682bf4c079b9ed600.jpg" itemprop="image" />
</div>
<p>Train ride to Prague. Four hours without standing desk 🙄</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 15 Sep 2019 11:18:25 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-09-15-b2bg4-ei8iq/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-09-15-b2bg4-ei8iq/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 29</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 15, 2019 tagging @comment_sense, @coderlifes, @theprogrammers.ig, @developerstuff, @programunity, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;0cb8cc41680f953e00.jpg" itemprop="image" />
</div>
<p>About last night.
I had an operation on my mouth last Thursday. I got a rather problematic wisdom tooth extracted. Took over 40 minutes to get out and 4 stitches to close the wound.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 10 Sep 2019 15:25:14 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-09-10-b2pfkt0ipnj/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-09-10-b2pfkt0ipnj/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 52</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 10, 2019 tagging @refinery.coffee, @codingdays, @programunity, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;645b0ab51f3e604900.jpg" itemprop="image" />
</div>
<p>Do you remember that day when you went to the dentist and nothing painful happened? No? It was a new experience for me as well.
But it is great because it means I can work a bit more before the @vuejs_berlin #meetup starts.
Are you going to meetups? Or even organising them?</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 05 Sep 2019 10:23:30 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-09-05-b2bqp-6cypc/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-09-05-b2bqp-6cypc/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 65</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 05, 2019 tagging @workhardanywhere, @workhardeverywhere, @coderlifes, @codingdays, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;cf61d7a2f031701500.jpg" itemprop="image" />
</div>
<p>Starting your day slowly on your couch with a good coffee is the best thing you can do as a #nightowl. Success is not about getting up early. It’s about dedication. Don’t let people tell you otherwise.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 01 Sep 2019 19:00:22 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-09-01-b14sog2i5qv/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-09-01-b14sog2i5qv/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 55</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on September 01, 2019 tagging @coderlifes, @codingdays, @programunity, @codeclique, and @papillonformen.al." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;1b13a126cdfee10400.jpg" itemprop="image" />
</div>
<p>What did you do on your #Vienna #trip?
Waited at the #airport 😐</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 27 Aug 2019 12:54:19 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-27-b1qwwp9ibjt/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-27-b1qwwp9ibjt/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 42</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 27, 2019 tagging @c3coffeenerds, @thecoffeenerds, @wildcatliving, @coderlifes, @codingdays, and @programunity." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;c4c28c250aefb82c00.jpg" itemprop="image" />
</div>
<p>Home office is best office. Part two of a series of two:</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 27 Aug 2019 12:49:40 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-27-b1qwosrisvc/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-27-b1qwosrisvc/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 47</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 27, 2019 tagging @19grams.coffee, @manualbrewonly, @coffee, @coderlifes, @codingdays, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;a868052a53d2833500.jpg" itemprop="image" />
</div>
<p>Home office is best office. Part one of a series of two:</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 26 Aug 2019 00:38:06 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-26-b1m3trkitz8/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-26-b1m3trkitz8/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 47</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 2</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 25, 2019 tagging @miss.molerat, @worldcode, @comment_sense, @coderlifes, @lovecoders, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;31c2876ebb1a358e00.jpg" itemprop="image" />
</div>
<p>Wanna look like a movie hacker? Try WOPR! You’ll find it on github.com/yaronn/wopr or by searching for blessed-contrib.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sat, 24 Aug 2019 06:29:13 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-24-b1iwthviikn/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-24-b1iwthviikn/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 44</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 1</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 23, 2019 tagging @wunderdogofficial, @comment_sense, @lovecoders, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;47d3836ea3cfe49c00.jpg" itemprop="image" />
</div>
<p>Did I mention our awesome anniversary stickers? @wunderdogsw #5years</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 22 Aug 2019 11:57:02 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-22-b1dyot3ignq/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-22-b1dyot3ignq/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 46</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 22, 2019 tagging @19grams.coffee, @specialtycoffeeassociation, @third_wave_coffee, @manualbrewcommunity, and @manualbrewonly." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;531aeb5bb5960fa600.jpg" itemprop="image" />
</div>
<p>Coffee exclusively roasted for beautiful people. But when nobody looked I tried it anyway and it’s really good! Thanks to @19grams.coffee for this splendid roast!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 21 Aug 2019 19:52:50 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-21-b1cd4vyimtw/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-21-b1cd4vyimtw/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 47</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 21, 2019 tagging @coderlifes, @codingdays, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;b0b46200d35b4e2e00.jpg" itemprop="image" />
</div>
<p>Time for updates! That’s the laptop of my wife running Antergos, an Arch based #Linux distribution.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 20 Aug 2019 21:46:55 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-20-b1zsjdcijor/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-20-b1zsjdcijor/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 46</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 20, 2019 tagging @wildcatliving, @coderlifes, @lovecoders, @codingdays, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;3c9db32faa0603ea00.jpg" itemprop="image" />
</div>
<p>Still pretty annoying toothache. My concentration is low but I try to do at least a bit.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Mon, 19 Aug 2019 08:56:23 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-19-b1vvlehcqnr/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-19-b1vvlehcqnr/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 60</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 19, 2019 tagging @coderlifes, @codingdays, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;530dfd365ab4544f00.jpg" itemprop="image" />
</div>
<p>About last night… I’m currently writing my first #penandpaper adventure for the #cthulhu dark system. I’m honestly a bit nervous about it. It’s all new and it’s a lot of work.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 18 Aug 2019 18:26:20 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-18-b1ulmmsifn6/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-18-b1ulmmsifn6/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 62</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 18, 2019 tagging @wildcatliving, @coderlifes, @codingdays, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;94f293182d1fbc9000.jpg" itemprop="image" />
</div>
<p>Hey! I saw that copy and paste!</p>
</description>
</item>
<item>
<title></title>
<pubDate>Fri, 16 Aug 2019 22:01:30 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-17-b1paoywisyd/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-17-b1paoywisyd/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 51</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 3</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 16, 2019 tagging @kbwarriors, @falba.tech, @theprogrammers.ig, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;551429a3ac09b66e00.jpg" itemprop="image" />
</div>
<p>I just managed to type my password and restart my computer via the terminal with this keyboard! #Ergodox over level 9000 😂</p>
</description>
</item>
<item>
<title></title>
<pubDate>Thu, 15 Aug 2019 17:17:54 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-15-b1mvyusi1kt/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-15-b1mvyusi1kt/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 63</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 15, 2019 tagging @falba.tech, @lovecoders, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;c65f5aa900df3adf00.jpg" itemprop="image" />
</div>
<p>Creating a new #vuejs project is always a joy thanks to the incredible tooling that is provided nowadays. Vue-Cli is just so much more than just simple scaffolding. It gives you project management, plugin management and a web interface all out of the box!
If you haven’t tried it yet, I really suggest you to.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Wed, 14 Aug 2019 15:30:41 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-14-b1jkul5aqcw/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-14-b1jkul5aqcw/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 67</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 12</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 14, 2019 tagging @wildcatliving, @developerstuff, @codingdays, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;b71c56a43bdbf4e600.jpg" itemprop="image" />
</div>
<p>Busted! 🙀</p>
</description>
</item>
<item>
<title></title>
<pubDate>Tue, 13 Aug 2019 15:37:26 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-13-b1hati3gi51/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-13-b1hati3gi51/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 43</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 0</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 13, 2019 tagging @falba.tech, @coderlifes, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;93e0d93387b2beea00.jpg" itemprop="image" />
</div>
<p>Thinking about looking into the Google Developer Expert program. What do you think about it? Did you know that technically everyone can become Google Developer Expert? You need to give regular talks or do other valuable things for the development community. So it pushes you to learn and give something to the community and gives you something that looks very good on your CV.</p>
</description>
</item>
<item>
<title></title>
<pubDate>Sun, 11 Aug 2019 19:34:43 +0000</pubDate>
<link>https://koehr.in/µblog/coffee-n-code-2019-08-11-b1cr3wuclm1/</link>
<guid>https://koehr.in/µblog/coffee-n-code-2019-08-11-b1cr3wuclm1/</guid>
<description><div class="social-media" itemscope itemtype="http://schema.org/Photograph"><div class="attention">
<div class="likes">♡ 67</div>
<div class="comments">
<a alt="comments" href="#comments" itemprop="discussionUrl">
<span itemprop="commentCount">🗪 4</span>
</a>
</div>
</div>
<img alt="Photo shared by Coffee&#x27;n&#x27;Code on August 11, 2019 tagging @coderlifes, @coding_deck, @programunity, and @codeclique." src="https:&#x2F;&#x2F;koehr.in&#x2F;processed_images&#x2F;8479119a3f65999e00.jpg" itemprop="image" />
</div>
<p>Sunday evening coding! Working more on dungeon generation with SimplexNoise. I now know where to put floor and wall tiles and got a list of potential entrances and exits. Next step is to bring that together and find a path between them.</p>
</description>
</item>
<item>
<title>Running writefreely 0.7 on Arm</title>
<pubDate>Thu, 10 Jan 2019 00:00:00 +0000</pubDate>
<link>https://koehr.in/blog/running-write-freely-on-arm/</link>
<guid>https://koehr.in/blog/running-write-freely-on-arm/</guid>
<description><p>This is a follow-up on
<a rel="noopener nofollow" target="_blank" href="https://write.as/buttpicker/the-expected-tutorial-how-to-install-writefreely-on-a-raspberry-pi-3-in-10">The expected tutorial: How to install WriteFreely on a Raspberry pi 3 in 10 steps</a>. I will explain what was necessary to make cross-compiling work for newer WriteFreely versions with SQLite support.</p>
</description>
</item>
<item>
<title>Vuejs Reactivity From Scratch</title>
<pubDate>Thu, 17 Aug 2017 00:00:00 +0000</pubDate>
<link>https://koehr.in/blog/vuejs-reactivity-from-scratch/</link>
<guid>https://koehr.in/blog/vuejs-reactivity-from-scratch/</guid>
<description><p>Vuejs is the star newcomer in the Javascript Framework world. People love how it makes complicated things very simple yet performant. One of the more exciting features is its seemingly magic reactivity. Plain data objects in components magically invoke a rerender when a property changes.</p>
</description>
</item>
<item>
<title>The Magic 0xC2</title>
<pubDate>Sun, 09 Apr 2017 00:00:00 +0000</pubDate>
<link>https://koehr.in/blog/the-magic-0xc2/</link>
<guid>https://koehr.in/blog/the-magic-0xc2/</guid>
<description><p>I built a web application with file upload functionality. Some Vue.js in the front and a CouchDB in the back. Everything should be pretty simple and straigt forward.</p>
<p>But…</p>
</description>
</item>
<item>
<title>The price to crack your password</title>
<pubDate>Sun, 04 Dec 2016 00:00:00 +0000</pubDate>
<link>https://koehr.in/blog/the-price-to-crack-your-password/</link>
<guid>https://koehr.in/blog/the-price-to-crack-your-password/</guid>
<description><p>Nearly six years ago, I wrote about password complexity and showed how long it takes to crack passwords per length. You can find that <a rel="noopener nofollow" target="_blank" href="https://github.com/nkoehring/hexo-blog/blob/master/source/_posts/spas-mit-passwortern.md">article on github</a> (in German).</p>
</description>
</item>
</channel>
</rss>