<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: HamChops</title>
    <description>The latest articles on DEV Community by HamChops (@hamchops).</description>
    <link>https://dev.to/hamchops</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3960645%2Fd04f558f-0337-4ac3-b080-b5efe0ea0255.png</url>
      <title>DEV Community: HamChops</title>
      <link>https://dev.to/hamchops</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hamchops"/>
    <language>en</language>
    <item>
      <title>You don't know kubectl — you know how to Google kubectl. The first-principles fix.</title>
      <dc:creator>HamChops</dc:creator>
      <pubDate>Sun, 31 May 2026 02:38:24 +0000</pubDate>
      <link>https://dev.to/hamchops/you-dont-know-kubectl-you-know-how-to-google-kubectl-the-first-principles-fix-lhb</link>
      <guid>https://dev.to/hamchops/you-dont-know-kubectl-you-know-how-to-google-kubectl-the-first-principles-fix-lhb</guid>
      <description>&lt;p&gt;I've been writing software for ten years. Last week I needed to extract a &lt;code&gt;.tar.gz&lt;/code&gt;, sat there with my cursor blinking, and could not for the life of me remember the flag order. Is it &lt;code&gt;-xzf&lt;/code&gt;? &lt;code&gt;-xvf&lt;/code&gt;? So I Googled "extract tar gz" — for what felt like the thousandth time in my career.&lt;/p&gt;

&lt;p&gt;If you've done this — with &lt;code&gt;tar&lt;/code&gt;, with &lt;code&gt;kubectl get pods -o&lt;/code&gt;, with &lt;code&gt;awk&lt;/code&gt;, with &lt;code&gt;find&lt;/code&gt;'s argument order, with the exact flag to make &lt;code&gt;curl&lt;/code&gt; follow redirects — I want to tell you something that took me a decade to accept:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;That is not a knowledge problem. It's a memory-systems problem. And it's fixable from first principles.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  First principle #1: your brain is &lt;em&gt;supposed&lt;/em&gt; to forget
&lt;/h2&gt;

&lt;p&gt;In the 1880s Hermann Ebbinghaus memorized nonsense syllables and tracked how fast he forgot them. The result is the &lt;strong&gt;forgetting curve&lt;/strong&gt;, and it's brutal: without reinforcement, you lose the majority of new information within days. Not because you're tired or old or "bad at memorizing." Because forgetting is a &lt;em&gt;feature&lt;/em&gt;. A brain that retained every command flag with equal priority would be a brain drowning in noise.&lt;/p&gt;

&lt;p&gt;So the default state of any fact you learned once and didn't revisit is: &lt;strong&gt;gone.&lt;/strong&gt; The &lt;code&gt;kubectl&lt;/code&gt; flag you looked up during an incident at 2am in March is not in your head in May. The system worked exactly as designed.&lt;/p&gt;

&lt;p&gt;The mistake is thinking the fix is "try harder" or "have more experience." Ten years of experience did not stop me Googling &lt;code&gt;tar&lt;/code&gt;. Experience doesn't beat the forgetting curve. Nothing beats it except &lt;em&gt;deliberately fighting it.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  First principle #2: recognition is not recall
&lt;/h2&gt;

&lt;p&gt;Here's the distinction that reorganized how I think about my own competence.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Recognition&lt;/strong&gt; is "oh, &lt;em&gt;that&lt;/em&gt; one" when you see the answer. It's passive. It feels like knowing.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Recall&lt;/strong&gt; is producing the answer from an empty prompt. It's active. It &lt;em&gt;is&lt;/em&gt; knowing.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When you Google a flag and go "ah yes, &lt;code&gt;-o wide&lt;/code&gt;, of course," that warm feeling of familiarity is recognition. It is not recall. And the gap between them is the entire difference between someone who &lt;em&gt;can run the system&lt;/em&gt; and someone who &lt;em&gt;can run the system as long as the internet is up and the page still exists.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This matters more now than it ever has, and here's the uncomfortable part:&lt;/p&gt;

&lt;h2&gt;
  
  
  First principle #3: your tools are quietly atrophying the muscle
&lt;/h2&gt;

&lt;p&gt;Autocomplete, Copilot, ChatGPT, Stack Overflow — they're recognition machines. They hand you the answer the instant you feel the itch of not-quite-knowing. Every time they do, you get the task done &lt;strong&gt;and&lt;/strong&gt; you skip the one act that would have moved the fact from recognition into recall: retrieving it yourself, from nothing, and being right.&lt;/p&gt;

&lt;p&gt;This is a genuinely good trade for things you'll do once. It is a genuinely &lt;em&gt;terrible&lt;/em&gt; trade for the 50 commands and 30 concepts that are the actual core of your job — the ones you'll need at 3am during an incident when you do not have the patience to prompt your way to an answer and the cost of being slow is measured in downtime.&lt;/p&gt;

&lt;p&gt;AI didn't make us dumber. It made us &lt;em&gt;outsource recall&lt;/em&gt;, and recall that isn't practiced decays on schedule. The forgetting curve doesn't care that you have a very good autocomplete.&lt;/p&gt;

&lt;h2&gt;
  
  
  First principle #4: the fix is mechanical, not motivational
&lt;/h2&gt;

&lt;p&gt;This is the part I love, because it means you don't need discipline or talent. You need a schedule.&lt;/p&gt;

&lt;p&gt;Two mechanisms, both boring, both proven:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Active recall.&lt;/strong&gt; Don't re-read the &lt;code&gt;kubectl&lt;/code&gt; cheat sheet. &lt;em&gt;Test yourself.&lt;/em&gt; "What flag shows the node a pod is scheduled on?" — produce it from memory, &lt;em&gt;then&lt;/em&gt; check. The retrieval attempt itself is what builds the memory. Re-reading builds recognition (the fake kind). Testing builds recall (the real kind).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Spaced repetition.&lt;/strong&gt; Review each fact right before you're about to forget it, and stretch the interval each time you get it right. This is the SM-2 algorithm, and the logic is almost insultingly simple:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;You recall it correctly  → push the next review further out (1d → 6d → 16d → 40d → …)
You blank on it          → reset the interval, see it again tomorrow
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You're surfing the forgetting curve on purpose — catching each fact at the last useful moment instead of letting it fall off or wastefully drilling stuff you already own. A few minutes a day, and the 50 commands that actually matter move into permanent recall while the long tail you genuinely &lt;em&gt;should&lt;/em&gt; Google stays Googleable. That's the whole trick. There's no willpower in it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Apply it to the stuff you can't afford to Google
&lt;/h2&gt;

&lt;p&gt;The move isn't "memorize the man pages." It's to pick the &lt;strong&gt;load-bearing&lt;/strong&gt; knowledge and put &lt;em&gt;that&lt;/em&gt; on a spaced-repetition schedule:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The flags you reach for during incidents (&lt;code&gt;kubectl&lt;/code&gt;, &lt;code&gt;journalctl&lt;/code&gt;, &lt;code&gt;dig&lt;/code&gt;, &lt;code&gt;ss&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;The failure modes — what a &lt;code&gt;CrashLoopBackOff&lt;/code&gt; actually means and the three things that cause it.&lt;/li&gt;
&lt;li&gt;The decision knowledge — when to use a StatefulSet vs a Deployment, when a retry needs a circuit breaker, why your p99 and your average disagree.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is the knowledge that separates "I can operate this" from "I can recognize this when shown." It's also exactly the knowledge AI is happiest to hand you for free, which is precisely why it's the knowledge quietly rotting in your head right now.&lt;/p&gt;




&lt;p&gt;I got tired enough of re-Googling &lt;code&gt;tar&lt;/code&gt; that I built spaced repetition for DevOps and SRE — the commands, the failure modes, the concepts — on the SM-2 schedule above, so the core stops falling off the curve: &lt;strong&gt;&lt;a href="https://hamchops.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=recall_vs_recognition" rel="noopener noreferrer"&gt;hamchops.com&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;But honestly, the tool is secondary. The idea is the thing I wish someone had told me ten years ago: &lt;strong&gt;you were never bad at this. You were just fighting the forgetting curve with no system, and your tools were quietly taking the one rep that mattered.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Give yourself the rep back.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;What's the one command you've Googled more times than you'd admit out loud? Mine's &lt;code&gt;tar&lt;/code&gt;. Drop yours below — I'd bet the list is shorter and more universal than any of us expect.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>devops</category>
      <category>kubernetes</category>
      <category>learning</category>
      <category>career</category>
    </item>
  </channel>
</rss>
