<?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: Olusegun salako</title>
    <description>The latest articles on DEV Community by Olusegun salako (@radtech21).</description>
    <link>https://dev.to/radtech21</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%2F3733554%2F5cb2e1ea-04c1-4c8f-848e-d7dbbd08ac9d.jpg</url>
      <title>DEV Community: Olusegun salako</title>
      <link>https://dev.to/radtech21</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/radtech21"/>
    <language>en</language>
    <item>
      <title>From Paper to Production: Building Radiimed for Dentists in Botswana</title>
      <dc:creator>Olusegun salako</dc:creator>
      <pubDate>Mon, 26 Jan 2026 19:07:41 +0000</pubDate>
      <link>https://dev.to/radtech21/from-paper-to-production-building-radiimed-for-dentists-in-botswana-1mia</link>
      <guid>https://dev.to/radtech21/from-paper-to-production-building-radiimed-for-dentists-in-botswana-1mia</guid>
      <description>&lt;p&gt;Hey devs &lt;br&gt;
First post here, glad to finally join the dev.to community.&lt;/p&gt;

&lt;p&gt;Over the past period, I worked on Radiimed, a software product used by dental practices in Botswana to transition from paper-based record keeping to a fully digital workflow. The goal wasn’t to “disrupt healthcare” — it was much simpler: reduce friction, errors, and wasted time in day-to-day clinical operations.&lt;/p&gt;

&lt;p&gt;I wanted to share what that journey looked like from an engineering perspective, and a few lessons that might be useful if you’re building software for real-world, non-tech users.&lt;/p&gt;

&lt;p&gt;The starting point: paper everywhere&lt;/p&gt;

&lt;p&gt;Most of the clinics we worked with were managing:&lt;/p&gt;

&lt;p&gt;patient records on paper&lt;/p&gt;

&lt;p&gt;appointment logs in notebooks&lt;/p&gt;

&lt;p&gt;billing handled manually&lt;/p&gt;

&lt;p&gt;imaging results stored separately or printed&lt;/p&gt;

&lt;p&gt;This created predictable problems:&lt;/p&gt;

&lt;p&gt;lost or incomplete records&lt;/p&gt;

&lt;p&gt;duplicated work&lt;/p&gt;

&lt;p&gt;slow patient turnaround&lt;/p&gt;

&lt;p&gt;difficulty tracking history over time&lt;/p&gt;

&lt;p&gt;The challenge wasn’t introducing software — it was changing habits without slowing clinics down.&lt;/p&gt;

&lt;p&gt;Designing for transition, not replacement&lt;/p&gt;

&lt;p&gt;One early lesson:&lt;/p&gt;

&lt;p&gt;You can’t just replace paper overnight.&lt;/p&gt;

&lt;p&gt;We designed Radiimed to mirror familiar workflows first, then gradually improve them:&lt;/p&gt;

&lt;p&gt;forms that felt like existing paper templates&lt;/p&gt;

&lt;p&gt;minimal required fields at the start&lt;/p&gt;

&lt;p&gt;clear “what happens next” steps&lt;/p&gt;

&lt;p&gt;fast load times (clinics can’t wait)&lt;/p&gt;

&lt;p&gt;Adoption improved once staff felt the system was helping, not policing them.&lt;/p&gt;

&lt;p&gt;The tech stack (kept intentionally boring)&lt;/p&gt;

&lt;p&gt;We optimized for clarity and reliability, not novelty.&lt;/p&gt;

&lt;p&gt;TypeScript across the codebase&lt;br&gt;
→ Fewer runtime surprises, clearer contracts, easier collaboration&lt;/p&gt;

&lt;p&gt;AWS for infrastructure&lt;/p&gt;

&lt;p&gt;Managed services over custom ops&lt;/p&gt;

&lt;p&gt;Predictable scaling&lt;/p&gt;

&lt;p&gt;Reduced maintenance overhead&lt;/p&gt;

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

&lt;p&gt;Clinics should never care how it works — only that it works.&lt;/p&gt;

&lt;p&gt;What actually improved for clinics&lt;/p&gt;

&lt;p&gt;Once clinics were fully onboarded, we saw clear operational gains:&lt;/p&gt;

&lt;p&gt;faster patient check-ins&lt;/p&gt;

&lt;p&gt;centralized patient histories&lt;/p&gt;

&lt;p&gt;easier retrieval of imaging and notes&lt;/p&gt;

&lt;p&gt;fewer clerical errors&lt;/p&gt;

&lt;p&gt;better continuity of care&lt;/p&gt;

&lt;p&gt;No flashy dashboards — just less friction.&lt;/p&gt;

&lt;p&gt;Lessons learned (the important part)&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Non-technical users will teach you humility&lt;br&gt;
If a dentist or assistant struggles, it’s not a “user problem” — it’s a design problem.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Reliability beats features&lt;br&gt;
A small, stable system beats a powerful system that fails once during clinic hours.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Type safety pays off long-term&lt;br&gt;
TypeScript caught edge cases early — especially around patient data and workflows that must not break.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Infrastructure should disappear&lt;br&gt;
Using AWS managed services meant fewer “fire drills” and more time improving the product.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Context matters&lt;br&gt;
Software built for clinics in Botswana has different constraints than software built for startups in San Francisco — and that’s okay.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Why I’m sharing this here&lt;/p&gt;

&lt;p&gt;I joined dev.to to:&lt;/p&gt;

&lt;p&gt;share real engineering experiences from production systems&lt;/p&gt;

&lt;p&gt;learn from others building software for real users&lt;/p&gt;

&lt;p&gt;talk about tech beyond hype cycles&lt;/p&gt;

&lt;p&gt;If you’ve worked on:&lt;/p&gt;

&lt;p&gt;healthcare software&lt;/p&gt;

&lt;p&gt;systems replacing manual workflows&lt;/p&gt;

&lt;p&gt;products for emerging markets&lt;/p&gt;

&lt;p&gt;I’d love to hear what you learned too.&lt;/p&gt;

&lt;p&gt;Thanks for reading 🙌&lt;/p&gt;

</description>
      <category>devjournal</category>
      <category>productivity</category>
      <category>showdev</category>
      <category>softwaredevelopment</category>
    </item>
  </channel>
</rss>
