<?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: Ekong Jemimah</title>
    <description>The latest articles on DEV Community by Ekong Jemimah (@j3mmy).</description>
    <link>https://dev.to/j3mmy</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3547330%2F13e750d6-c3d2-42b3-812b-b5052692031b.jpg</url>
      <title>DEV Community: Ekong Jemimah</title>
      <link>https://dev.to/j3mmy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/j3mmy"/>
    <language>en</language>
    <item>
      <title>Building a Bitcoin Education Platform, Contributing to Open Source, and Surviving a Hackathon</title>
      <dc:creator>Ekong Jemimah</dc:creator>
      <pubDate>Sat, 13 Jun 2026 18:46:16 +0000</pubDate>
      <link>https://dev.to/j3mmy/building-a-bitcoin-education-platform-contributing-to-open-source-and-surviving-a-hackathon-4b48</link>
      <guid>https://dev.to/j3mmy/building-a-bitcoin-education-platform-contributing-to-open-source-and-surviving-a-hackathon-4b48</guid>
      <description>&lt;p&gt;A few months ago, I didn't expect that I'd be spending my days debugging authentication flows, opening pull requests, analyzing backend architectures, and building a Bitcoin education platform during a hackathon.&lt;/p&gt;

&lt;p&gt;Yet here we are.&lt;/p&gt;

&lt;p&gt;What started as curiosity about Bitcoin turned into one of the most intense learning experiences I've had as a builder, and honestly, I wouldn't trade it for anything.&lt;/p&gt;

&lt;p&gt;This is the story of how I joined Hack4Freedom Lagos 2026, helped build BitPath, contributed to open source, discovered OpenCode, and learned that software engineering is often just solving one problem after another until things somehow start working.&lt;/p&gt;

&lt;h2&gt;
  
  
  How I Ended Up Building in Bitcoin
&lt;/h2&gt;

&lt;p&gt;My interest in Bitcoin didn't start from price charts or trading.&lt;/p&gt;

&lt;p&gt;What attracted me was the builder ecosystem around it.&lt;/p&gt;

&lt;p&gt;I've contributed to open source before, so I already appreciated the value of collaborative software development. But what stood out about Bitcoin was how deeply open source is woven into the culture.&lt;/p&gt;

&lt;p&gt;In many ecosystems, open source feels like an option.&lt;/p&gt;

&lt;p&gt;In Bitcoin, it feels like a foundation.&lt;/p&gt;

&lt;p&gt;Everywhere I looked, people were building in public, contributing to projects, improving documentation, reviewing code, and helping newcomers find their footing.&lt;/p&gt;

&lt;p&gt;That environment made me want to participate more deeply.&lt;/p&gt;

&lt;p&gt;When the opportunity came to join the Hack4Freedom Lagos 2026 hackathon, I said yes.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Project: BitPath
&lt;/h2&gt;

&lt;p&gt;Our team worked on BitPath, an AI-powered learn-and-earn platform designed to make Bitcoin education more accessible.&lt;/p&gt;

&lt;p&gt;The idea was simple:&lt;/p&gt;

&lt;p&gt;Instead of overwhelming learners with technical concepts, BitPath uses conversational learning experiences, AI tutoring, quizzes, progress tracking, and rewards to help users learn Bitcoin and financial literacy in a more engaging way.&lt;/p&gt;

&lt;p&gt;Our stack looked something like this:&lt;/p&gt;

&lt;h3&gt;
  
  
  Frontend
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Next.js&lt;/li&gt;
&lt;li&gt;TypeScript&lt;/li&gt;
&lt;li&gt;Tailwind CSS&lt;/li&gt;
&lt;li&gt;Zustand&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Backend
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;NestJS&lt;/li&gt;
&lt;li&gt;PostgreSQL&lt;/li&gt;
&lt;li&gt;Redis&lt;/li&gt;
&lt;li&gt;Queue processing&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Additional Services
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Google OAuth&lt;/li&gt;
&lt;li&gt;OpenAI APIs&lt;/li&gt;
&lt;li&gt;Lightning Network integrations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;At least that's what it looked like on paper.&lt;/p&gt;

&lt;p&gt;In reality, there was a lot more chaos involved. 😅&lt;/p&gt;

&lt;h2&gt;
  
  
  Frontend Meets Backend (And Everything Breaks)
&lt;/h2&gt;

&lt;p&gt;One of the biggest learning experiences during the hackathon was frontend-backend integration.&lt;/p&gt;

&lt;p&gt;If you've never experienced it before, imagine spending hours building a beautiful UI only to discover that the API contract changed while you were working.&lt;/p&gt;

&lt;p&gt;Now multiply that by several days.&lt;/p&gt;

&lt;p&gt;There were moments when authentication worked perfectly.&lt;/p&gt;

&lt;p&gt;Then suddenly it didn't.&lt;/p&gt;

&lt;p&gt;There were API responses that looked correct until they weren't.&lt;/p&gt;

&lt;p&gt;There were environment variables that seemed fine until they quietly caused issues.&lt;/p&gt;

&lt;p&gt;And there were enough network errors to make me question my entire setup.&lt;/p&gt;

&lt;p&gt;One of the most memorable moments involved Google OAuth.&lt;/p&gt;

&lt;p&gt;Everything appeared configured correctly.&lt;/p&gt;

&lt;p&gt;Then I started getting:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Error 401: invalid_client
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;At that point, I learned a valuable lesson:&lt;/p&gt;

&lt;p&gt;When authentication breaks, the error message is rarely as helpful as you want it to be.&lt;/p&gt;

&lt;p&gt;Eventually, after digging through environment variables, OAuth settings, callback URLs, and backend configurations, we figured it out.&lt;/p&gt;

&lt;p&gt;But the journey there was definitely educational.&lt;/p&gt;

&lt;h2&gt;
  
  
  Discovering OpenCode
&lt;/h2&gt;

&lt;p&gt;One unexpected highlight of this experience was OpenCode.&lt;/p&gt;

&lt;p&gt;I started using it as a coding assistant, but quickly realized it could be much more than that.&lt;/p&gt;

&lt;p&gt;Whenever I encountered unfamiliar repositories, backend services, API contracts, or open-source issues, I'd use OpenCode to help analyze the codebase and break down the problem.&lt;/p&gt;

&lt;p&gt;Some examples included:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Understanding backend API structures&lt;/li&gt;
&lt;li&gt;Analyzing repository architectures&lt;/li&gt;
&lt;li&gt;Generating implementation plans&lt;/li&gt;
&lt;li&gt;Reviewing issue descriptions&lt;/li&gt;
&lt;li&gt;Preparing pull requests&lt;/li&gt;
&lt;li&gt;Understanding integration requirements&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The most valuable part wasn't that it wrote code.&lt;/p&gt;

&lt;p&gt;It was that it accelerated understanding.&lt;/p&gt;

&lt;p&gt;I could move from confusion to clarity much faster.&lt;/p&gt;

&lt;p&gt;And as any developer knows, understanding the problem is usually half the battle.&lt;/p&gt;

&lt;h2&gt;
  
  
  Contributing to Open Source Along the Way
&lt;/h2&gt;

&lt;p&gt;The hackathon wasn't the only thing I worked on.&lt;/p&gt;

&lt;p&gt;During the same period, I continued contributing to open-source projects.&lt;/p&gt;

&lt;p&gt;One thing I love about open source is that every contribution teaches you something different.&lt;/p&gt;

&lt;p&gt;Sometimes you're fixing a bug.&lt;/p&gt;

&lt;p&gt;Sometimes you're cleaning up technical debt.&lt;/p&gt;

&lt;p&gt;Sometimes you're improving performance.&lt;/p&gt;

&lt;p&gt;And sometimes you're simply helping reduce confusion for future contributors.&lt;/p&gt;

&lt;p&gt;One issue involved removing incomplete database migration artifacts that suggested a migration was underway when the application still relied on JSON storage.&lt;/p&gt;

&lt;p&gt;Another involved implementing in-memory caching to reduce redundant disk reads.&lt;/p&gt;

&lt;p&gt;Each contribution required reading unfamiliar code, understanding existing architecture, and making changes without breaking functionality.&lt;/p&gt;

&lt;p&gt;That process never gets old.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Reality of Building
&lt;/h2&gt;

&lt;p&gt;One thing I've learned is that software engineering rarely looks like the polished screenshots people share online.&lt;/p&gt;

&lt;p&gt;Most of the time it looks more like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reading documentation&lt;/li&gt;
&lt;li&gt;Debugging errors&lt;/li&gt;
&lt;li&gt;Testing assumptions&lt;/li&gt;
&lt;li&gt;Asking questions&lt;/li&gt;
&lt;li&gt;Breaking things accidentally&lt;/li&gt;
&lt;li&gt;Fixing what you broke&lt;/li&gt;
&lt;li&gt;Repeating the cycle&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And honestly?&lt;/p&gt;

&lt;p&gt;That's okay.&lt;/p&gt;

&lt;p&gt;Because every bug fixed is knowledge gained.&lt;/p&gt;

&lt;p&gt;Every pull request teaches something.&lt;/p&gt;

&lt;p&gt;Every deployment reveals a new lesson.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Bitcoin Taught Me About Open Source
&lt;/h2&gt;

&lt;p&gt;If there's one thing that stood out throughout this journey, it's how much Bitcoin values contributors.&lt;/p&gt;

&lt;p&gt;Not just experienced developers.&lt;/p&gt;

&lt;p&gt;Contributors.&lt;/p&gt;

&lt;p&gt;People who show up.&lt;/p&gt;

&lt;p&gt;People who learn.&lt;/p&gt;

&lt;p&gt;People who improve documentation.&lt;/p&gt;

&lt;p&gt;People who fix bugs.&lt;/p&gt;

&lt;p&gt;People who help others.&lt;/p&gt;

&lt;p&gt;That culture is powerful.&lt;/p&gt;

&lt;p&gt;It creates an environment where growth feels possible because participation matters more than perfection.&lt;/p&gt;

&lt;p&gt;And that's something I deeply appreciate.&lt;/p&gt;

&lt;h2&gt;
  
  
  Lessons I'll Take Forward
&lt;/h2&gt;

&lt;p&gt;Looking back, this experience taught me several things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You don't need to know everything before you start building.&lt;/li&gt;
&lt;li&gt;Frontend-backend integration is a skill you only learn by doing.&lt;/li&gt;
&lt;li&gt;Open source remains one of the best ways to grow as a developer.&lt;/li&gt;
&lt;li&gt;AI tools are most effective when paired with curiosity.&lt;/li&gt;
&lt;li&gt;Debugging is frustrating until it becomes rewarding.&lt;/li&gt;
&lt;li&gt;Consistency beats confidence.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most importantly, I learned that growth often starts when you're willing to be uncomfortable.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next?
&lt;/h2&gt;

&lt;p&gt;This journey is far from over.&lt;/p&gt;

&lt;p&gt;BitPath is still evolving.&lt;/p&gt;

&lt;p&gt;There are more Bitcoin concepts to learn.&lt;/p&gt;

&lt;p&gt;More repositories to contribute to.&lt;/p&gt;

&lt;p&gt;More pull requests to open.&lt;/p&gt;

&lt;p&gt;More bugs to fix.&lt;/p&gt;

&lt;p&gt;More things to build.&lt;/p&gt;

&lt;p&gt;And that's exactly what makes it exciting.&lt;/p&gt;

&lt;p&gt;For now, I'll keep doing what got me here in the first place:&lt;/p&gt;

&lt;p&gt;Showing up.&lt;/p&gt;

&lt;p&gt;Building.&lt;/p&gt;

&lt;p&gt;Learning.&lt;/p&gt;

&lt;p&gt;Contributing.&lt;/p&gt;

&lt;p&gt;And hopefully helping someone else do the same.&lt;/p&gt;

&lt;p&gt;If you're building in Bitcoin, contributing to open source, or participating in hackathons, I'd love to hear about your experience.&lt;/p&gt;

&lt;p&gt;What has been your biggest lesson so far?&lt;/p&gt;

</description>
      <category>bitcoin</category>
      <category>learning</category>
      <category>opensource</category>
      <category>softwareengineering</category>
    </item>
    <item>
      <title>Understanding Solidity: My Line-by-Line Explanation</title>
      <dc:creator>Ekong Jemimah</dc:creator>
      <pubDate>Sun, 05 Oct 2025 20:32:54 +0000</pubDate>
      <link>https://dev.to/j3mmy/understanding-solidity-my-line-by-line-explanation-1fpe</link>
      <guid>https://dev.to/j3mmy/understanding-solidity-my-line-by-line-explanation-1fpe</guid>
      <description>&lt;p&gt;As part of our blockchain development class, our tutor gave us an assignment through a GitHub Gist. The assignment was to study, understand, and explain a Solidity code.&lt;/p&gt;

&lt;p&gt;This is my personal explanation and breakdown of the code, written based on how I understood each part.&lt;/p&gt;

&lt;p&gt;// SPDX-License-Identifier: MIT&lt;br&gt;
This tells us the license type. It simply means anyone can use or modify this code as long as they keep the license note. The compiler also requires it to avoid warnings.&lt;/p&gt;

&lt;p&gt;pragma solidity ^0.8.0;&lt;br&gt;
This sets the Solidity version the code should work with. It means the code will work with version 0.8.0. It helps to prevent errors from version differences.&lt;/p&gt;

&lt;p&gt;contract UserRegistry {&lt;br&gt;
Here we are declaring a new contract called UserRegistry. A contract in Solidity is like a class that contains data and functions that will run on the blockchain.&lt;/p&gt;

&lt;p&gt;struct User {&lt;br&gt;
A struct is like a container that groups related information. Here, we are defining a User structure.&lt;/p&gt;

&lt;p&gt;uint256 id;&lt;br&gt;
This holds the user’s ID number. uint256 means an unsigned integer (a number that cannot be negative).&lt;/p&gt;

&lt;p&gt;string name;&lt;br&gt;
This stores the name of the user as text.&lt;/p&gt;

&lt;p&gt;uint256 age;&lt;br&gt;
This keeps the user’s age as a number.&lt;/p&gt;

&lt;p&gt;bool isActive;&lt;br&gt;
This shows whether the user is active or not. True means active, and false means deleted or inactive.&lt;/p&gt;

&lt;p&gt;mapping(uint256 =&amp;gt; User) private _users;&lt;br&gt;
A mapping works like a dictionary. It connects a user’s ID to their details (the User struct). The keyword private means only this contract can access it directly.&lt;/p&gt;

&lt;p&gt;uint256 private _nextId = 1;&lt;br&gt;
This is a counter that starts from 1. Each time a new user is created, this number goes up by one. That’s how new users get unique IDs.&lt;/p&gt;

&lt;p&gt;mapping(address =&amp;gt; uint256) private _addressToUserId;&lt;br&gt;
This links a wallet address (the person creating a user) to their user ID. It helps to know who owns which user.&lt;/p&gt;

&lt;p&gt;event UserCreated(uint256 id, string name, uint256 age, address indexed owner);&lt;br&gt;
event UserUpdated(uint256 id, string name, uint256 age);&lt;br&gt;
event UserDeleted(uint256 id);&lt;br&gt;
Events are used to log actions on the blockchain. They make it easy for apps to track what happens.&lt;/p&gt;

&lt;p&gt;modifier onlyUserOwner(uint256 userId) { ... }&lt;br&gt;
A modifier is used to control who can use a function. This one checks if the person calling the function is the owner of that user.&lt;br&gt;
Inside it, there’s a require statement that checks two things: if the user exists and if the caller is the supposed owner. If not, the function stops with the error “Not the owner.”&lt;/p&gt;

&lt;p&gt;function createUser(string memory name, uint256 age) external { ... }&lt;br&gt;
This function allows a user to create a new account. It takes in the user’s name and age.&lt;br&gt;
Inside it:&lt;br&gt;
~ It assigns the next available ID to the user.&lt;br&gt;
~ It stores the user’s information in the _users mapping.&lt;br&gt;
~ It links the creator’s address to their user ID.&lt;br&gt;
~ It emits the UserCreated event to announce a new user was created.&lt;/p&gt;

&lt;p&gt;function getUser(uint256 userId) external view returns (User memory) { ... }&lt;br&gt;
This is a read-only function. It doesn’t change anything. It just returns the user’s information for a given ID. The keyword view means it only reads from the blockchain.&lt;/p&gt;

&lt;p&gt;function updateUser(uint256 userId, string memory newName, uint256 newAge) external onlyUserOwner(userId) { ... }&lt;br&gt;
This function allows a user to update their own name and age. The onlyUserOwner modifier ensures only the owner of that user profile can make changes. After updating, it emits the UserUpdated event.&lt;/p&gt;

&lt;p&gt;function deleteUser(uint256 userId) external onlyUserOwner(userId) { ... }&lt;br&gt;
This is used to deactivate a user instead of deleting them completely. It sets isActive to false and emits the UserDeleted event.&lt;/p&gt;

&lt;p&gt;function getMyUserId() external view returns (uint256) { ... }&lt;br&gt;
This is a helper function that returns the user ID linked to the caller’s wallet address. If the address has not created a user, it returns 0.&lt;/p&gt;

&lt;p&gt;My Overall Understanding&lt;br&gt;
This code allows people to create, view, update, and deactivate their user profiles on the blockchain. It uses mappings to store and connect data, events to log actions, and modifiers to control access.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>blockchain</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
