<?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: Caleb Wodi</title>
    <description>The latest articles on DEV Community by Caleb Wodi (@calchiwo).</description>
    <link>https://dev.to/calchiwo</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%2F3373202%2F69b82b95-1f57-40d5-8709-3aeb78aeb63b.jpg</url>
      <title>DEV Community: Caleb Wodi</title>
      <link>https://dev.to/calchiwo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/calchiwo"/>
    <language>en</language>
    <item>
      <title>I Removed An Entire Implementation Of My System To Fix An Architectural Duplication That Was Painful To Maintain Alone (Deleted ~1300 lines)</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Thu, 30 Apr 2026 12:41:28 +0000</pubDate>
      <link>https://dev.to/calchiwo/i-removed-an-entire-implementation-of-my-system-to-fix-an-architectural-duplication-that-was-jci</link>
      <guid>https://dev.to/calchiwo/i-removed-an-entire-implementation-of-my-system-to-fix-an-architectural-duplication-that-was-jci</guid>
      <description>&lt;p&gt;&lt;strong&gt;The real problem with duplication&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Having two implementations of one system didn’t look like a problem to me at first, I built it once and it worked, then I re-implemented the same system again in another language, keeping feature parity and that also still worked.&lt;/p&gt;

&lt;p&gt;I'm building ExplainThisRepo, a CLI tool for understanding unfamiliar codebases that shows you where to start, what matters and what to ignore using real signals; entrypoints, configs, dependencies, manifests, not blind AI guessing&lt;/p&gt;

&lt;p&gt;Before now every time I ship a feature I’m not building it once, I’m actually building it twice, same with bugs, I’m not fixing them once, I’m fixing them twice&lt;/p&gt;

&lt;p&gt;Initially it seemed manageable, but what I had actually created was two sources of truth.&lt;/p&gt;

&lt;p&gt;And now I also have to make sure both implementations behave the same way in different languages: Python and TypeScript&lt;/p&gt;

&lt;p&gt;They were not wrappers of each other, they were just two independent systems with the same features, behavior, outputs and edge cases, implemented differently in each language, and I had to keep aligning them and maintaining ecosystem feature parity.&lt;/p&gt;

&lt;p&gt;That slowed everything down and was very painful to maintain alone&lt;/p&gt;

&lt;p&gt;At some point, I stopped moving fast not because the system was complex, but because I was maintaining two of everything.&lt;/p&gt;

&lt;p&gt;So I removed the duplicate TypeScript implementation, deleted ~1300 lines and made Python the only core implementation and source of truth, Node now only bundles into npm distribution and launches the Python binary, it no longer runs any logic, all the logic lives in Python.&lt;/p&gt;

&lt;p&gt;All the CLI behavior, repo analysis, providers, output, everything, runs inside the prebuilt Python binary. It runs without requiring Python installed on the user's machine. No duplication, one system&lt;/p&gt;

&lt;p&gt;Link to PR: &lt;a href="https://github.com/calchiwo/ExplainThisRepo/pull/208" rel="noopener noreferrer"&gt;https://github.com/calchiwo/ExplainThisRepo/pull/208&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkymq7zgrd2mba269ishf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkymq7zgrd2mba269ishf.png" alt=" " width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Python became the core implementation&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The decision was not about “which language is better”, it was:&lt;/p&gt;

&lt;p&gt;Which implementation should remain as the single source of truth?&lt;/p&gt;

&lt;p&gt;One system should have one source of truth, everything else is distribution.&lt;/p&gt;

&lt;p&gt;I chose Python because it’s the correct long-term place for the system to live. It was already the implementation I was building on most actively, new features were landing there first and that’s where the system was already evolving.&lt;/p&gt;

&lt;p&gt;In short Python was where the core logic was stable and iteration was fastest&lt;/p&gt;

&lt;p&gt;Keeping TypeScript as the core would mean either shifting development entirely to it or continuing to duplicate work, both increase long-term cost.&lt;/p&gt;

&lt;p&gt;So instead of moving the system, I kept it where it was already being developed, removed the TypeScript implementation, and made Python the only core implementation, Node now just acts as a launcher for the Python binary and distribution.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why maintaining both breaks down over time&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;At that point, it was tempting to say:&lt;/p&gt;

&lt;p&gt;“I’ll just keep both implementations and manage them”&lt;/p&gt;

&lt;p&gt;and yeah that works early but it doesn’t scale.&lt;/p&gt;

&lt;p&gt;Because the real cost isn’t just duplication, it’s coordination, you now have to keep both implementations aligned, every change now means doing the same work twice, making sure behavior matches, remembering what changed where, and that turns simple changes into tracking problems, so you hesitate to ship, small differences start creeping in, edge cases multiply and over time the system becomes harder to trust, harder to maintain and slower to evolve.&lt;/p&gt;

&lt;p&gt;This gets worse when you’re maintaining it alone, there’s no distribution of effort, you’re the one building, reviewing and maintaining consistency, and at some point it slows everything down not because the system is complex, but because you’re maintaining two of everything.&lt;/p&gt;

&lt;p&gt;The hidden trap is this: duplication creates the illusion that things are fine, but in reality it removes clarity, you no longer have one system (or single source of truth) you can reason about, you now have two systems that must stay consistent, and that is a fundamentally harder problem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What this actually is&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This isn’t just a refactor, it’s a correction, I moved from a multi-runtime tool to a single-engine product with a distribution wrapper, the mistake was letting the same system exist in multiple places, so I changed how it’s distributed, Node no longer re-implements anything, it just detects your OS, picks the right binary and executes it as a separate process.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;When to use this approach&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This pattern works when:&lt;/p&gt;

&lt;p&gt;• you need to distribute across multiple ecosystems without rewriting the system&lt;br&gt;
• the interface is clear and bounded (clear inputs, a defined process and predictable outputs)&lt;br&gt;
• cross-runtime execution is acceptable&lt;/p&gt;

&lt;p&gt;Common cases:&lt;/p&gt;

&lt;p&gt;• CLI tools&lt;br&gt;
• automation tools&lt;br&gt;
• backend services with well-defined boundaries&lt;br&gt;
• internal tools shared across environments&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;When not to use it&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This pattern does not fit when:&lt;/p&gt;

&lt;p&gt;• you’re building libraries that must run inside a specific runtime&lt;br&gt;
• tight, in-process integration is required&lt;br&gt;
• performance is sensitive to process startup or cross-runtime latency&lt;br&gt;
• the system relies heavily on features tied to a specific runtime&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The test&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Before you build the same system twice, ask:&lt;br&gt;
If I change this tomorrow, do I have to update it in more than one place?&lt;br&gt;
If the answer is yes, you don’t have one system, you have duplication.&lt;br&gt;
And if you keep going, you’re choosing coordination over progress.&lt;br&gt;
You don’t fix duplication by maintaining it better, you fix it by removing the second place it exists&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tradeoffs&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This change simplifies the system, but it isn’t free, bundling Python into the npm package increases the binary size so install size goes up compared to a pure Node tool, startup also has a cost because the Node launcher starts a separate Python process which adds extra startup time before execution, cross-platform support becomes more complex since you now need to build and maintain binaries for different operating systems and architectures, and debugging is less direct because issues can sit across the boundary between Node and Python, so you end up tracing problems across two environments.&lt;/p&gt;

&lt;p&gt;These are real costs, but they are contained costs, not duplicated logic, and I chose to pay them because they scale better long-term than maintaining two implementations of the same system.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The conclusion&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Maintaining both is not something you can sustain, the cost keeps increasing over time until it forces a decision, you either accept the growing cost or enforce a single source of truth, I chose the second.&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>cli</category>
      <category>softwareengineering</category>
      <category>tooling</category>
    </item>
    <item>
      <title>Day 3 of building ExplainThisRepo, a CLI tool that explains GitHub repos in plain English</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Thu, 08 Jan 2026 13:38:42 +0000</pubDate>
      <link>https://dev.to/calchiwo/day-3-of-building-explainthis-a-cli-tool-that-explains-github-repos-in-plain-english-2959</link>
      <guid>https://dev.to/calchiwo/day-3-of-building-explainthis-a-cli-tool-that-explains-github-repos-in-plain-english-2959</guid>
      <description>&lt;p&gt;Ollama needs 1.2gb to install. I just ran away 🏃😂&lt;/p&gt;

&lt;p&gt;Too heavy&lt;/p&gt;

&lt;p&gt;Switching to Gemini next&lt;/p&gt;

&lt;p&gt;Ship 🔱&lt;br&gt;
&lt;a href="https://x.com/i/status/2007549156160872870" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Day 2 of building ExplainThisRepo, a CLI tool that explains GitHub repos in plain English</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Thu, 08 Jan 2026 13:34:24 +0000</pubDate>
      <link>https://dev.to/calchiwo/day-2-of-building-explainthis-a-cli-tool-that-explains-github-repos-in-plain-english-48jc</link>
      <guid>https://dev.to/calchiwo/day-2-of-building-explainthis-a-cli-tool-that-explains-github-repos-in-plain-english-48jc</guid>
      <description>&lt;p&gt;I integrated OpenAI into the CLI to generate explanations&lt;/p&gt;

&lt;p&gt;But API keys + cost per call failed the idea for something people can just run&lt;/p&gt;

&lt;p&gt;V1 has to work without paid APIs&lt;/p&gt;

&lt;p&gt;So I’m checking out local models like Ollama&lt;/p&gt;

&lt;p&gt;Back to the drawing board&lt;/p&gt;

&lt;p&gt;Ship 🔱&lt;br&gt;
&lt;a href="https://x.com/i/status/2007144919840804906" rel="noopener noreferrer"&gt;Tweet&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5mhfermnqyv2loi00kag.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5mhfermnqyv2loi00kag.jpg" alt=" " width="800" height="831"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Day 1 of building ExplainThisRepo, a CLI tool that can be used to explain GitHub repos in plain English</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Thu, 08 Jan 2026 13:29:27 +0000</pubDate>
      <link>https://dev.to/calchiwo/day-1-of-building-explainthisrepo-a-cli-tool-that-can-be-used-to-explain-github-repos-in-plain-50an</link>
      <guid>https://dev.to/calchiwo/day-1-of-building-explainthisrepo-a-cli-tool-that-can-be-used-to-explain-github-repos-in-plain-50an</guid>
      <description>&lt;p&gt;Day 1 of building ExplainThisRepo, a CLI tool that can be used to explain GitHub repos in plain En&lt;/p&gt;

&lt;p&gt;Built the CLI skeleton and got GitHub fetching working&lt;br&gt;
Imports broke when I ran scripts directly, fixed by understanding module execution&lt;br&gt;
V1 is taking shape&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I'm trying to build a CLI tool that can be used to explain a github repo in plain english

And i will be sharing what works and what doesn't

Let's see how i push this</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Thu, 08 Jan 2026 13:27:06 +0000</pubDate>
      <link>https://dev.to/calchiwo/im-trying-to-build-a-cli-tool-that-can-be-used-to-explain-a-github-repo-in-plain-english-and-i-3iba</link>
      <guid>https://dev.to/calchiwo/im-trying-to-build-a-cli-tool-that-can-be-used-to-explain-a-github-repo-in-plain-english-and-i-3iba</guid>
      <description></description>
    </item>
    <item>
      <title>Successfully made my first pull request today for Rocjet Technologies Ltd</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Thu, 09 Oct 2025 11:13:59 +0000</pubDate>
      <link>https://dev.to/calchiwo/successfully-made-my-first-pull-request-today-for-rocjet-technologies-ltd-35mg</link>
      <guid>https://dev.to/calchiwo/successfully-made-my-first-pull-request-today-for-rocjet-technologies-ltd-35mg</guid>
      <description>&lt;p&gt;Successfully made my first pull request today for Rocjet Technologies Ltd! 🎉&lt;/p&gt;

&lt;p&gt;Added workflow badges to our demo repo&lt;/p&gt;

&lt;p&gt;Check it out here 👇&lt;br&gt;
&lt;em&gt;&lt;a href="https://github.com/RocjetTechnologies/demo-repository/pull/1" rel="noopener noreferrer"&gt;https://github.com/RocjetTechnologies/demo-repository/pull/1&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>github</category>
      <category>showdev</category>
    </item>
    <item>
      <title>Day 32 of me coding games on my phone</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Thu, 09 Oct 2025 11:12:57 +0000</pubDate>
      <link>https://dev.to/calchiwo/day-32-of-me-coding-games-on-my-phone-4jfb</link>
      <guid>https://dev.to/calchiwo/day-32-of-me-coding-games-on-my-phone-4jfb</guid>
      <description>&lt;p&gt;Day 32 of me coding games on my phone&lt;/p&gt;

&lt;p&gt;Small setups, big dreams.&lt;br&gt;
Every line of code counts.&lt;/p&gt;

&lt;p&gt;Took my time to understand this COLLISION thing&lt;/p&gt;

&lt;p&gt;It was tough, but that’s how every game.... from Minecraft to Subway Surfers actually works behind the scenes&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://youtube.com/shorts/myl9n6nbToA?si=l3HBEtoIMTxGU_t" rel="noopener noreferrer"&gt;https://youtube.com/shorts/myl9n6nbToA?si=l3HBEtoIMTxGU_t&lt;/a&gt;&lt;/em&gt;_&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>mobile</category>
      <category>devjournal</category>
      <category>gamedev</category>
    </item>
    <item>
      <title>Day 31 of coding games on my phone: learned collisions and physics today</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Tue, 07 Oct 2025 22:56:36 +0000</pubDate>
      <link>https://dev.to/calchiwo/day-31-of-coding-games-on-my-phone-learned-collisions-and-physics-today-1bii</link>
      <guid>https://dev.to/calchiwo/day-31-of-coding-games-on-my-phone-learned-collisions-and-physics-today-1bii</guid>
      <description>&lt;p&gt;Day 31 of coding games on my phone&lt;/p&gt;

&lt;p&gt;I learned collisions and physics today&lt;/p&gt;

&lt;p&gt;Now the player can jump, fall, and land properly.&lt;/p&gt;

&lt;p&gt;I made the enemies collide, touch one, Game Over.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Day 30/60 Days Game Dev On Android Challenge</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Tue, 07 Oct 2025 22:56:13 +0000</pubDate>
      <link>https://dev.to/calchiwo/day-3060-days-game-dev-on-android-challenge-4nm5</link>
      <guid>https://dev.to/calchiwo/day-3060-days-game-dev-on-android-challenge-4nm5</guid>
      <description>&lt;p&gt;Day 30/60 Days Game Dev On Android Challenge&lt;/p&gt;

&lt;p&gt;30 days down. 30 more to go.&lt;/p&gt;

&lt;p&gt;We’re halfway there, but the fire’s just getting started.&lt;/p&gt;

&lt;p&gt;See you for Day 31 🚀&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Day 29/60 of my game dev on Android challenge</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Sat, 04 Oct 2025 18:47:18 +0000</pubDate>
      <link>https://dev.to/calchiwo/day-2960-of-my-game-dev-on-android-challenge-5175</link>
      <guid>https://dev.to/calchiwo/day-2960-of-my-game-dev-on-android-challenge-5175</guid>
      <description>&lt;p&gt;150+ days solo-founding Rocjet Technologies at 15.&lt;/p&gt;

&lt;p&gt;Some days feel like I’m fighting the code more than I'm writing it, but faith keeps me grounded.&lt;/p&gt;

&lt;p&gt;Day 29/60 of my game dev on Android challenge:&lt;br&gt;
🎨 Leveled up the visuals&lt;br&gt;
🌄 Updated the background color&lt;/p&gt;

&lt;p&gt;Trust the process.&lt;/p&gt;

&lt;p&gt;God’s timing &amp;gt; your timeline.&lt;/p&gt;

</description>
      <category>gamedev</category>
      <category>ai</category>
    </item>
    <item>
      <title>Coding on my phone’s tough, but working with less forces me to be more resourceful.</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Fri, 03 Oct 2025 22:18:35 +0000</pubDate>
      <link>https://dev.to/calchiwo/coding-on-my-phones-tough-but-working-with-less-forces-me-to-be-more-resourceful-3a5p</link>
      <guid>https://dev.to/calchiwo/coding-on-my-phones-tough-but-working-with-less-forces-me-to-be-more-resourceful-3a5p</guid>
      <description>&lt;p&gt;Coding on my phone’s tough, but working with less forces me to be more resourceful.&lt;/p&gt;

&lt;p&gt;Day 28/60 of game dev on Android challenge:&lt;/p&gt;

&lt;p&gt;Added:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;onscreen buttons&lt;/li&gt;
&lt;li&gt;multiple enemies&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To everyone building, guard your time like gold&lt;br&gt;
every hour you waste delays your dream. &lt;/p&gt;

&lt;p&gt;Keep building, keep learning, keep going &lt;/p&gt;

&lt;p&gt;God never fails ✝️&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>showdev</category>
      <category>android</category>
      <category>gamedev</category>
    </item>
    <item>
      <title>Day 28/60 of game dev on Android challenge</title>
      <dc:creator>Caleb Wodi</dc:creator>
      <pubDate>Wed, 01 Oct 2025 01:11:01 +0000</pubDate>
      <link>https://dev.to/calchiwo/day-2860-of-game-dev-on-android-challenge-4bk7</link>
      <guid>https://dev.to/calchiwo/day-2860-of-game-dev-on-android-challenge-4bk7</guid>
      <description>&lt;p&gt;Day 28/60 of game dev on Android challenge: &lt;/p&gt;

&lt;p&gt;Added onscreen buttons and multiple enemies today 🎮.&lt;/p&gt;

&lt;p&gt;Coding on my phone’s tough, but limits breed creativity.&lt;/p&gt;

&lt;p&gt;Founders, guard your time like gold&lt;br&gt;
every hour you waste delays your dream. &lt;/p&gt;

&lt;p&gt;Keep building, keep learning, keep going &lt;/p&gt;

&lt;p&gt;God never fails ✝️&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
