<?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: Paul Owuor</title>
    <description>The latest articles on DEV Community by Paul Owuor (@paowuor).</description>
    <link>https://dev.to/paowuor</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%2F3929995%2Fa9c24a67-6e9d-4a9e-9223-69f821353db9.png</url>
      <title>DEV Community: Paul Owuor</title>
      <link>https://dev.to/paowuor</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/paowuor"/>
    <language>en</language>
    <item>
      <title>What I Learned at the Backend Frameworks Mini-Conference</title>
      <dc:creator>Paul Owuor</dc:creator>
      <pubDate>Mon, 06 Jul 2026 22:32:00 +0000</pubDate>
      <link>https://dev.to/paowuor/what-i-learned-at-the-backend-frameworks-mini-conference-5gik</link>
      <guid>https://dev.to/paowuor/what-i-learned-at-the-backend-frameworks-mini-conference-5gik</guid>
      <description>&lt;p&gt;As a software engineering apprentice at Zone01 Kisumu, I'm constantly looking for opportunities to learn beyond the projects and challenges I work on every day.&lt;/p&gt;

&lt;p&gt;Recently, I attended the &lt;strong&gt;Backend Frameworks Mini-Conference&lt;/strong&gt;, an event focused on backend development, modern frameworks, APIs, databases, deployment, and career opportunities in backend engineering.&lt;/p&gt;

&lt;p&gt;The experience reinforced several lessons that every aspiring backend developer should understand.&lt;/p&gt;

&lt;h2&gt;
  
  
  Backend Development Is More Than Writing APIs
&lt;/h2&gt;

&lt;p&gt;When many beginners think about backend development, they often imagine creating endpoints and connecting databases.&lt;/p&gt;

&lt;p&gt;While those are important skills, the conference highlighted a broader picture.&lt;/p&gt;

&lt;p&gt;Backend engineers are responsible for building systems that are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reliable&lt;/li&gt;
&lt;li&gt;Scalable&lt;/li&gt;
&lt;li&gt;Secure&lt;/li&gt;
&lt;li&gt;Maintainable&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A backend application isn't just code that works today. It's code that can continue serving users as traffic grows, requirements change, and new features are added.&lt;/p&gt;

&lt;p&gt;This perspective changed how I think about the projects I build.&lt;/p&gt;

&lt;h2&gt;
  
  
  Frameworks Are Tools, Not Solutions
&lt;/h2&gt;

&lt;p&gt;One of the biggest takeaways for me was understanding that frameworks are simply tools.&lt;/p&gt;

&lt;p&gt;Whether you're working with Go, Node.js, Java, Python, or another ecosystem, the framework itself won't solve architectural problems.&lt;/p&gt;

&lt;p&gt;Good software engineering comes from understanding:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;System design&lt;/li&gt;
&lt;li&gt;Data flow&lt;/li&gt;
&lt;li&gt;Security principles&lt;/li&gt;
&lt;li&gt;Performance considerations&lt;/li&gt;
&lt;li&gt;Maintainability&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Choosing a framework should be based on project requirements rather than popularity.&lt;/p&gt;

&lt;p&gt;This was a valuable reminder because developers often spend too much time debating technologies instead of focusing on solving real problems.&lt;/p&gt;

&lt;h2&gt;
  
  
  APIs Are the Language of Modern Applications
&lt;/h2&gt;

&lt;p&gt;Nearly every modern application relies on APIs.&lt;/p&gt;

&lt;p&gt;The conference discussions emphasized how APIs allow different systems to communicate and work together seamlessly.&lt;/p&gt;

&lt;p&gt;As someone interested in backend engineering, this reinforced the importance of understanding:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;REST principles&lt;/li&gt;
&lt;li&gt;Request and response handling&lt;/li&gt;
&lt;li&gt;Authentication and authorization&lt;/li&gt;
&lt;li&gt;Error handling&lt;/li&gt;
&lt;li&gt;Documentation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Building a good API isn't just about functionality; it's about creating a reliable experience for other developers who will use it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Security Must Be Considered Early
&lt;/h2&gt;

&lt;p&gt;Security was another topic that stood out.&lt;/p&gt;

&lt;p&gt;Many beginner developers focus on getting applications working before thinking about security.&lt;/p&gt;

&lt;p&gt;However, the conference emphasized that security should be built into applications from the start.&lt;/p&gt;

&lt;p&gt;Some key areas discussed included:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Input validation&lt;/li&gt;
&lt;li&gt;Authentication&lt;/li&gt;
&lt;li&gt;Authorization&lt;/li&gt;
&lt;li&gt;Secure data handling&lt;/li&gt;
&lt;li&gt;Protecting sensitive information&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A secure application is not an optional feature—it's a requirement.&lt;/p&gt;

&lt;h2&gt;
  
  
  Learning From the Community Matters
&lt;/h2&gt;

&lt;p&gt;Perhaps the most valuable part of the conference wasn't the technical presentations.&lt;/p&gt;

&lt;p&gt;It was the opportunity to interact with other developers, learners, and industry professionals.&lt;/p&gt;

&lt;p&gt;Software engineering can sometimes feel like a solitary activity, especially when you're spending hours debugging code.&lt;/p&gt;

&lt;p&gt;Events like this remind us that there is an entire community of people facing similar challenges, learning similar concepts, and growing together.&lt;/p&gt;

&lt;p&gt;Conversations with other developers often provide insights that cannot be found in documentation alone.&lt;/p&gt;

&lt;h2&gt;
  
  
  How This Connects to My Journey
&lt;/h2&gt;

&lt;p&gt;At Zone01 Kisumu, much of the learning process is project-based.&lt;/p&gt;

&lt;p&gt;We're encouraged to solve problems independently, collaborate with peers, and continuously improve our technical skills.&lt;/p&gt;

&lt;p&gt;The Backend Frameworks Mini-Conference complemented this learning approach perfectly.&lt;/p&gt;

&lt;p&gt;Many of the concepts discussed during the event connected directly to challenges I've encountered while building backend projects, working with APIs, debugging applications, and learning Go.&lt;/p&gt;

&lt;p&gt;It reminded me that becoming a backend engineer is not about mastering a single language or framework.&lt;/p&gt;

&lt;p&gt;It's about developing the mindset required to build reliable systems and solve real-world problems.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;The conference left me with a renewed appreciation for backend engineering.&lt;/p&gt;

&lt;p&gt;Technology will continue to evolve, and new frameworks will emerge. But the fundamental principles of software engineering remain the same:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Understand the problem.&lt;/li&gt;
&lt;li&gt;Choose the right tools.&lt;/li&gt;
&lt;li&gt;Build secure and reliable systems.&lt;/li&gt;
&lt;li&gt;Never stop learning.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'm grateful to Zone01 Kisumu and the event organizers for creating opportunities like this for aspiring developers.&lt;/p&gt;

&lt;p&gt;The journey continues, and I'm excited to keep learning, building, and growing as a backend engineer.&lt;/p&gt;

&lt;p&gt;Have you attended a tech conference or meetup that changed the way you think about software development? I'd love to hear about your experience in the comments.&lt;/p&gt;

&lt;h1&gt;
  
  
  backend #golang #webdev #softwareengineering #career #beginners #api #programming #zone01 #learninginpublic
&lt;/h1&gt;

</description>
      <category>backend</category>
      <category>beginners</category>
      <category>career</category>
      <category>learning</category>
    </item>
    <item>
      <title>Why Learning to Debug Made Me a Better Developer Than Writing Code</title>
      <dc:creator>Paul Owuor</dc:creator>
      <pubDate>Mon, 15 Jun 2026 02:26:20 +0000</pubDate>
      <link>https://dev.to/paowuor/why-learning-to-debug-made-me-a-better-developer-than-writing-code-fe4</link>
      <guid>https://dev.to/paowuor/why-learning-to-debug-made-me-a-better-developer-than-writing-code-fe4</guid>
      <description>&lt;h1&gt;
  
  
  Why Learning to Debug Made Me a Better Developer Than Writing Code
&lt;/h1&gt;

&lt;p&gt;When I first started learning software engineering, I thought success would come from writing lots of code quickly.&lt;/p&gt;

&lt;p&gt;I was wrong.&lt;/p&gt;

&lt;p&gt;The biggest growth in my journey didn’t come from writing code — it came from debugging broken code.&lt;/p&gt;

&lt;p&gt;At first, debugging felt frustrating. I would run my program, get an error, and feel stuck. Sometimes the error message made no sense. Other times, everything looked correct, yet the program still failed.&lt;/p&gt;

&lt;p&gt;I used to think bugs were signs that I wasn’t good enough.&lt;/p&gt;

&lt;p&gt;Over time, that mindset changed.&lt;/p&gt;

&lt;h2&gt;
  
  
  Debugging Changed How I Think
&lt;/h2&gt;

&lt;p&gt;Working on backend and algorithm-heavy projects taught me something important: bugs are not the enemy — they are feedback.&lt;/p&gt;

&lt;p&gt;Every bug tells a story.&lt;/p&gt;

&lt;p&gt;A nil pointer might reveal missing validation.&lt;br&gt;
A failing test might expose flawed logic.&lt;br&gt;
An unexpected output might uncover assumptions you didn’t realize you made.&lt;/p&gt;

&lt;p&gt;Debugging forced me to slow down and think like an engineer.&lt;/p&gt;

&lt;p&gt;Instead of asking:&lt;/p&gt;

&lt;p&gt;“Why isn’t this working?”&lt;/p&gt;

&lt;p&gt;I started asking:&lt;/p&gt;

&lt;p&gt;“What exactly is happening inside my program?”&lt;/p&gt;

&lt;p&gt;That small mindset shift changed everything.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Skill: Problem Decomposition
&lt;/h2&gt;

&lt;p&gt;One of the hardest things about programming is that systems are complex.&lt;/p&gt;

&lt;p&gt;A single bug could come from:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Incorrect input handling&lt;/li&gt;
&lt;li&gt;Broken business logic&lt;/li&gt;
&lt;li&gt;State mutation&lt;/li&gt;
&lt;li&gt;Race conditions&lt;/li&gt;
&lt;li&gt;API failures&lt;/li&gt;
&lt;li&gt;Environment configuration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can’t solve all of that at once.&lt;/p&gt;

&lt;p&gt;I learned to break problems into smaller questions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Is the input correct?&lt;/li&gt;
&lt;li&gt;Is this function returning what I expect?&lt;/li&gt;
&lt;li&gt;Where does the output change?&lt;/li&gt;
&lt;li&gt;What assumptions am I making?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That process made debugging manageable.&lt;/p&gt;

&lt;p&gt;And honestly, it made me a better thinker outside programming too.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tools That Help Me Debug Better
&lt;/h2&gt;

&lt;p&gt;Here are some practices that improved my debugging:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Reading Error Messages Carefully
&lt;/h3&gt;

&lt;p&gt;I used to ignore error messages and panic.&lt;/p&gt;

&lt;p&gt;Now I read them line by line.&lt;/p&gt;

&lt;p&gt;The answer is often already there.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Logging Everything
&lt;/h3&gt;

&lt;p&gt;Print statements still save lives.&lt;/p&gt;

&lt;p&gt;Sometimes you just need visibility into what your code is doing.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Using Git Properly
&lt;/h3&gt;

&lt;p&gt;Version control makes experimentation safer.&lt;/p&gt;

&lt;p&gt;You can try bold fixes without fear.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Taking Breaks
&lt;/h3&gt;

&lt;p&gt;Some bugs disappear after stepping away for 10 minutes.&lt;/p&gt;

&lt;p&gt;Fresh eyes matter.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Tell New Developers
&lt;/h2&gt;

&lt;p&gt;If you’re learning to code and constantly hitting bugs, that’s normal.&lt;/p&gt;

&lt;p&gt;Debugging isn’t a side skill.&lt;/p&gt;

&lt;p&gt;It &lt;em&gt;is&lt;/em&gt; software engineering.&lt;/p&gt;

&lt;p&gt;The developers who grow fastest aren’t always the ones who write code fastest.&lt;/p&gt;

&lt;p&gt;They’re often the ones who investigate problems patiently and systematically.&lt;/p&gt;

&lt;p&gt;So the next time your code breaks, don’t panic.&lt;/p&gt;

&lt;p&gt;A bug might just be your next lesson.&lt;/p&gt;

&lt;p&gt;And sometimes, fixing one bug teaches more than writing 500 lines of code.&lt;/p&gt;

</description>
      <category>programming</category>
      <category>beginners</category>
      <category>backend</category>
    </item>
    <item>
      <title>From Operations Support to Software Engineering: My Journey Into Tech</title>
      <dc:creator>Paul Owuor</dc:creator>
      <pubDate>Sat, 23 May 2026 18:11:17 +0000</pubDate>
      <link>https://dev.to/paowuor/from-operations-support-to-software-engineering-my-journey-into-tech-2pdn</link>
      <guid>https://dev.to/paowuor/from-operations-support-to-software-engineering-my-journey-into-tech-2pdn</guid>
      <description>&lt;p&gt;A year ago, I was mostly handling support and operational tasks. Today, I’m building backend projects in Go, debugging algorithms, working with Git daily, and learning how real software systems are designed.&lt;/p&gt;

&lt;p&gt;The transition hasn’t been easy.&lt;/p&gt;

&lt;p&gt;There were moments when I spent hours fixing a single bug, struggled to understand stack operations in Push-Swap, or stared at terminal errors that made absolutely no sense at first. But every project taught me something important: consistency matters more than perfection.&lt;/p&gt;

&lt;p&gt;One thing I’ve learned during my journey at Zone01 Kisumu is that software engineering is less about “knowing everything” and more about learning how to solve problems step by step.&lt;/p&gt;

&lt;p&gt;Some lessons that changed my mindset:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Debugging is a skill, not a sign of failure&lt;/li&gt;
&lt;li&gt;Reading documentation is part of being a developer&lt;/li&gt;
&lt;li&gt;Git and terminal skills are just as important as coding&lt;/li&gt;
&lt;li&gt;Small daily improvements compound over time&lt;/li&gt;
&lt;li&gt;Building projects teaches faster than watching tutorials&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Projects I’ve worked on recently:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Push-Swap algorithm project in Go&lt;/li&gt;
&lt;li&gt;ASCII Art Web application&lt;/li&gt;
&lt;li&gt;HTTP servers and web handlers&lt;/li&gt;
&lt;li&gt;Stack operations and sorting logic&lt;/li&gt;
&lt;li&gt;Git workflows and debugging practices&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’m currently focused on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Backend engineering&lt;/li&gt;
&lt;li&gt;Go development&lt;/li&gt;
&lt;li&gt;AI/Data-related opportunities&lt;/li&gt;
&lt;li&gt;Remote software engineering roles&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To anyone transitioning into tech from another field:&lt;br&gt;
Keep building.&lt;br&gt;
Keep breaking things.&lt;br&gt;
Keep learning.&lt;/p&gt;

&lt;p&gt;Your first breakthrough might be one project away.&lt;/p&gt;

&lt;h1&gt;
  
  
  100DaysOfCode #golang #backend #softwareengineering #beginners #webdev #programming #opensource #devops #careerchange
&lt;/h1&gt;

</description>
      <category>beginners</category>
      <category>career</category>
      <category>learning</category>
      <category>softwareengineering</category>
    </item>
  </channel>
</rss>
