<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Blog on Kterla</title><link>https://kterla.com/blog/</link><description>Recent content in Blog on Kterla</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><copyright>© 2026</copyright><lastBuildDate>Mon, 25 May 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://kterla.com/blog/index.xml" rel="self" type="application/rss+xml"/><item><title>The Pragmatist's Guide To 3NF.</title><link>https://kterla.com/blog/the-pragmatists-guide-to-3nf/</link><pubDate>Mon, 25 May 2026 00:00:00 +0000</pubDate><guid>https://kterla.com/blog/the-pragmatists-guide-to-3nf/</guid><description>&lt;style&gt;
 /* Forces the article text to use Consolas */
 p, li, h1, h2, h3, h4, span, div {
 font-family: Consolas, "Monaco", "Courier New", Courier, monospace !important;
 }
&lt;/style&gt;
&lt;p&gt;If you ask a database professor to explain Third Normal Form (3NF), he will give you a quote from 1971: &lt;em&gt;&amp;ldquo;Every non-key attribute must provide a fact about the key,
the whole key, and nothing but the key, so help me Codd&amp;rdquo;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I just nodded profoundly at this absolute gibberish, hoping my face said: &lt;em&gt;&amp;lsquo;Ah yes, the architecture&amp;rsquo;&lt;/em&gt; instead of &lt;em&gt;&amp;lsquo;Please don&amp;rsquo;t ask me a follow-up question&amp;rsquo;&lt;/em&gt;. But in
real world of data engineering, that cryptic definition boils down to one very simple rule: &lt;strong&gt;Fire the Middleman&lt;/strong&gt;.&lt;/p&gt;</description></item><item><title>The Hidden Compute Taxes in Python's Pathlib</title><link>https://kterla.com/blog/python-path-3-ways-to-create-paths/</link><pubDate>Fri, 08 May 2026 00:00:00 +0000</pubDate><guid>https://kterla.com/blog/python-path-3-ways-to-create-paths/</guid><description>&lt;p&gt;When combining base paths with relative directories in data ingestion pipelines, pathlib is the go-to standard for readability. But building these paths inside a massive loop quietly eats your CPU.&lt;/p&gt;

&lt;h3 class="relative group"&gt;The Telemetry
 &lt;div id="the-telemetry" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-telemetry" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;p&gt;Here is the telemetry from a 10-million iteration stress test comparing the three ways we, engineers, write path joins.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;The Chained String (The Baseline)&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"&gt;&lt;code class="language-python" data-lang="python"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#75715e"&gt;# Creates 4 temporary objects per iteration via operator overloading&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#66d9ef"&gt;return&lt;/span&gt; ds_root &lt;span style="color:#f92672"&gt;/&lt;/span&gt; &lt;span style="color:#e6db74"&gt;&amp;#34;data&amp;#34;&lt;/span&gt; &lt;span style="color:#f92672"&gt;/&lt;/span&gt; &lt;span style="color:#e6db74"&gt;&amp;#34;files&amp;#34;&lt;/span&gt; &lt;span style="color:#f92672"&gt;/&lt;/span&gt; &lt;span style="color:#e6db74"&gt;&amp;#34;silver&amp;#34;&lt;/span&gt; &lt;span style="color:#f92672"&gt;/&lt;/span&gt; &lt;span style="color:#e6db74"&gt;&amp;#34;tables&amp;#34;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;em&gt;Time:&lt;/em&gt; &lt;strong&gt;31.0196 seconds&lt;/strong&gt;&lt;/p&gt;</description></item></channel></rss>