<?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: Amon Ochuka</title>
    <description>The latest articles on DEV Community by Amon Ochuka (@amonoff).</description>
    <link>https://dev.to/amonoff</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%2F3718940%2Fbe2a72ca-7ab5-4417-8f38-6e11befa8321.png</url>
      <title>DEV Community: Amon Ochuka</title>
      <link>https://dev.to/amonoff</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/amonoff"/>
    <language>en</language>
    <item>
      <title>Kiboko to Sherehe(polite): From Strict Go Rules to JavaScript Chaos</title>
      <dc:creator>Amon Ochuka</dc:creator>
      <pubDate>Thu, 07 May 2026 17:53:56 +0000</pubDate>
      <link>https://dev.to/amonoff/kiboko-to-sherehepolite-from-strict-go-rules-to-javascript-chaos-350m</link>
      <guid>https://dev.to/amonoff/kiboko-to-sherehepolite-from-strict-go-rules-to-javascript-chaos-350m</guid>
      <description>&lt;p&gt;Growing up in a typical strict African household always had a very clear structure, well at least for me.&lt;br&gt;
There were rules. Not suggestions. Not “best practices.” Rules. You never really negotiated them, you just executed them.&lt;/p&gt;

&lt;p&gt;You woke up early. You went to school. You came back on time.  You didn’t always get the chance to “try things.” You mostly followed instructions.&lt;/p&gt;

&lt;p&gt;If you messed up, there was usually a very immediate feedback loop.&lt;br&gt;
Let’s just call it… &lt;em&gt;real-time debugging&lt;/em&gt;. ("Kiboko") &lt;/p&gt;

&lt;p&gt;Now fast forward to adulthood (or campus life, which feels like a soft launch into adulthood).&lt;br&gt;
Suddenly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No one is asking where you are
&lt;/li&gt;
&lt;li&gt;You can sleep at 3AM and call it “freedom” &lt;/li&gt;
&lt;li&gt;Food is no longer provided;it’s a budgeting problem
&lt;/li&gt;
&lt;li&gt;And somehow, people are going out on weekdays like it’s normal("sherehe polite")&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It feels like moving from a tightly controlled environment into an open-world sandbox with no manual.&lt;/p&gt;

&lt;p&gt;And that’s exactly how learning JavaScript felt after coming from Go.&lt;/p&gt;


&lt;h2&gt;
  
  
  Go felt like home
&lt;/h2&gt;

&lt;p&gt;Go is structured, strict, and predictable.It feels like that kind of upbringing where:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;There is a correct way to do things
&lt;/li&gt;
&lt;li&gt;Mistakes are immediately pointed out
&lt;/li&gt;
&lt;li&gt;You don’t get “creative freedom” with rules
&lt;/li&gt;
&lt;li&gt;Everything has a clear, disciplined path
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you write something wrong, Go doesn’t argue with you.&lt;br&gt;
It simply refuses to proceed.&lt;br&gt;
Very “strict parent energy.”&lt;/p&gt;


&lt;h2&gt;
  
  
  JavaScript feels like campus life
&lt;/h2&gt;

&lt;p&gt;Suddenly, everything is allowed.&lt;br&gt;
Almost &lt;em&gt;too&lt;/em&gt; allowed.&lt;/p&gt;

&lt;p&gt;You can write things that technically work but feel emotionally wrong:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;5&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="c1"&gt;// "51"&lt;/span&gt;
&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;5&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="c1"&gt;// 4&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And the language just… accepts it.&lt;br&gt;
No questions. No intervention. No moral guidance.(This is where I would have been properly debugged)&lt;/p&gt;

&lt;p&gt;Coming from Go, it feels like moving from mama's hot home-cooked meals, to a hostel where someone is boiling noodles in a sufuria at 2AM, while watching YouTube at full volume.&lt;/p&gt;

&lt;p&gt;It works.But you’re not always sure it should.&lt;/p&gt;




&lt;h2&gt;
  
  
  The adjustment phase
&lt;/h2&gt;

&lt;p&gt;At first, JavaScript feels messy.&lt;br&gt;
Too flexible. Too forgiving. Too many ways to do the same thing.&lt;br&gt;
But slowly, something changes.&lt;br&gt;
You realize the language isn’t enforcing discipline on you, you’re expected to build it yourself.&lt;/p&gt;

&lt;p&gt;That’s the shift.Go gives you structure upfront.&lt;br&gt;
JavaScript forces you to learn structure through experience.&lt;/p&gt;

&lt;p&gt;One is guided discipline.The other is learned discipline&lt;/p&gt;




&lt;h2&gt;
  
  
  Final thoughts
&lt;/h2&gt;

&lt;p&gt;Growing up strict teaches you order.Campus life teaches you independence.&lt;br&gt;
Go gives you rules.&lt;br&gt;
JavaScript gives you freedom, and occasionally lets you suffer for bad decisions.&lt;/p&gt;

&lt;p&gt;And maybe that’s the real lesson:&lt;br&gt;
Structure is important, but so is learning how to create it for yourself when no one is watching.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>software</category>
      <category>go</category>
    </item>
    <item>
      <title>Why AI Is Unlikely To Be A Game-Changer In African Economies</title>
      <dc:creator>Amon Ochuka</dc:creator>
      <pubDate>Tue, 17 Feb 2026 07:34:27 +0000</pubDate>
      <link>https://dev.to/amonoff/why-ai-is-unlikely-to-be-a-game-changer-in-african-economies-4g38</link>
      <guid>https://dev.to/amonoff/why-ai-is-unlikely-to-be-a-game-changer-in-african-economies-4g38</guid>
      <description>&lt;p&gt;Everyone is talking about AI transforming Africa, but the reality on the ground is very different, especially in countries facing electricity shortages and monopolies in key sectors. While AI has enormous potential globally, in many African contexts it is unlikely to become the economic miracle some people hope for, at least in the near term.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Electricity Shortages Are a Major Bottleneck&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AI systems, whether cloud-hosted or on-device, consume a significant amount of electricity. Training even a single large AI model can use as much power as a small town in a month. Many African countries struggle with unreliable grids and frequent load shedding. Even highly skilled developers cannot run AI consistently without stable electricity, and relying on generators or solar power adds both cost and operational complexity, making many AI projects financially unviable.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Infrastructure Needs Go Beyond Power&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AI requires more than electricity. Fast internet, reliable data storage, cloud computing, and ongoing maintenance are essential. Many regions still lack basic connectivity, and data centers are often concentrated in a few major cities. This makes AI adoption uneven and prevents smaller startups from scaling their solutions effectively.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Monopolies Stifle Innovation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Key sectors like telecommunications, banking, and energy are dominated by a few large players. Small AI startups often struggle to access APIs or market opportunities, as monopolies prioritize existing profit models over risky new technologies.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Talent Gaps Limit Scale&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AI requires skilled engineers and data scientists. While Africa has a growing developer community, high-level AI talent remains limited, and access to training and compute resources is uneven, slowing adoption.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Localized Opportunities Exist&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AI can succeed where infrastructure is reliable, such as mobile money in Kenya or agri-tech in parts of Nigeria. These are notable exceptions, not the rule.&lt;/p&gt;

&lt;p&gt;Conclusion&lt;/p&gt;

&lt;p&gt;AI is a powerful tool, but tools don’t operate in a vacuum. Without reliable electricity, fair competition, and solid infrastructure, AI is unlikely to drive broad economic growth. Prioritizing fundamental challenges should come first, before expecting AI to revolutionize economies.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>discuss</category>
      <category>machinelearning</category>
      <category>news</category>
    </item>
  </channel>
</rss>
