<?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: Desigan Tharmen</title>
    <description>The latest articles on DEV Community by Desigan Tharmen (@desigan_tharmen_3c4cd6566).</description>
    <link>https://dev.to/desigan_tharmen_3c4cd6566</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%2F3227450%2F078c5d30-3e4c-44cd-8264-152b4356c184.png</url>
      <title>DEV Community: Desigan Tharmen</title>
      <link>https://dev.to/desigan_tharmen_3c4cd6566</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/desigan_tharmen_3c4cd6566"/>
    <language>en</language>
    <item>
      <title>Quick milestone: Finally got my multi-model build process running smoothly #BuildWithGoogle</title>
      <dc:creator>Desigan Tharmen</dc:creator>
      <pubDate>Mon, 25 May 2026 21:35:11 +0000</pubDate>
      <link>https://dev.to/desigan_tharmen_3c4cd6566/title-working-from-bed-do-you-even-take-stretch-breaks-or-are-you-waiting-for-the-injury-to-36a0</link>
      <guid>https://dev.to/desigan_tharmen_3c4cd6566/title-working-from-bed-do-you-even-take-stretch-breaks-or-are-you-waiting-for-the-injury-to-36a0</guid>
      <description>&lt;p&gt;Building real-world dev tools. Creator of ErgoSafe Reborn—moving workplace safety from paper files into smooth, multi-language web apps built around everyday remote-work and home-office risks.&lt;/p&gt;

&lt;h1&gt;
  
  
  SafetyTech #AIArchitecture #WebDev #ISO45001 #OHSAct #HumanFactors #RemoteWork #GoogleGemini
&lt;/h1&gt;

</description>
    </item>
    <item>
      <title>ErgoSafe Reborn: Scaling an Abandoned Frontend into an Enterprise OHS Engine</title>
      <dc:creator>Desigan Tharmen</dc:creator>
      <pubDate>Mon, 25 May 2026 01:44:48 +0000</pubDate>
      <link>https://dev.to/desigan_tharmen_3c4cd6566/ergosafe-reborn-scaling-an-abandoned-frontend-into-an-enterprise-ohs-engine-21ga</link>
      <guid>https://dev.to/desigan_tharmen_3c4cd6566/ergosafe-reborn-scaling-an-abandoned-frontend-into-an-enterprise-ohs-engine-21ga</guid>
      <description>&lt;p&gt;*This is a submission for the [GitHub Finish-Up-A-Thon Challenge]&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;ErgoSafe Reborn is a modern, high-performance Occupational Health and Safety (OHS) Compliance and Interactive Training platform. Built with Vite, React, and TypeScript, the application features an interactive, real-time 3D canvas environment alongside a comprehensive administrative dashboard.&lt;br&gt;
For me, this project represents the intersection of my domain expertise as an OHS Compliance Training Specialist and my work as an AI Architect. The goal was to build a tool that moves beyond passive PDF safety files, providing interactive, multi-lingual behavioral training and real-world legal accountability frameworks for enterprise businesses.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;Live Web Deployment: &lt;a href="https://ergosafe-reborn.vercel.app" rel="noopener noreferrer"&gt;https://ergosafe-reborn.vercel.app&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Active GitHub Repository: &lt;a href="https://www.google.com/search?q=https://github.com/tharmen666/ErgoSafe_Project" rel="noopener noreferrer"&gt;https://www.google.com/search?q=https://github.com/tharmen666/ErgoSafe_Project&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Local Workspace Verification: Running seamlessly on &lt;a href="http://localhost:5173" rel="noopener noreferrer"&gt;http://localhost:5173&lt;/a&gt; with full dependency alignment.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Comeback Story
&lt;/h2&gt;

&lt;p&gt;The Comeback Story&lt;br&gt;
Before reviving this workspace, the repository was a broken, incomplete frontend layer gathering code debt. It was plagued by system path script blocks, severely unstable mobile viewports, unmapped legacy configuration mjs cache dumps, and a completely empty localization module.&lt;/p&gt;

&lt;p&gt;To bring it across the production finish line, I executed a series of critical code cleanup sprints:&lt;/p&gt;

&lt;p&gt;Dynamic Viewport Standardisation: Replaced hardcoded viewport structures in the mobile menu system with dynamic viewport units (h-[100dvh]) to entirely eliminate layout shifting and resolution jumping caused by mobile browser address bars.&lt;/p&gt;

&lt;p&gt;Scroll Lock Mechanics: Integrated robust React useEffect hooks across layout drawers (Sidebar.tsx and TrainingModule.tsx) to implement background scroll locks (document.body.style.overflow = 'hidden'), keeping interactions smooth during complex canvas states.&lt;/p&gt;

&lt;p&gt;Repository Sanitation: Conducted a recursive cleanup sweep, purging unmapped script fragments (refactor-script.js), removing dynamic cache files (vite.config.ts.timestamp-*), and optimizing assets to lock in a flawless 60 FPS render path.&lt;/p&gt;

&lt;p&gt;Enterprise Legal Engine Integration: Developed a brand-new compliance module (financePitches.ts) mapping the strict 2026 "Reasonably Practicable" home-office statutory provisions (OHS Act Section 8) and the "Right to Disconnect" CCMA liability shields tailored directly for premium financial and retail franchise networks (Standard Bank, FNB, Discovery, Sanlam, Steers, Wimpy). Operation 100% Ready: The Transformation Walkthrough&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Code Cleanup &amp;amp; Drawer Optimization
src/components/layout/Sidebar.tsx: Added a React useEffect scroll lock to toggle document.body.style.overflow = 'hidden' when the drawer is open. Standardized height using h-[100dvh] to prevent dynamic viewport shifting on mobile address bar resizing.
src/features/training/TrainingModule.tsx: Integrated React useEffect on-mount and on-unmount scroll lock to freeze background scroll, securing smooth mobile interactive dynamics during 3D avatar exercises.&lt;/li&gt;
&lt;li&gt;Finance Pitch &amp;amp; Statutory Anchor Integration
src/logic/financePitches.ts (New Module): Developed standard-compliant legal summaries for OHS Act Section 8 (Reasonably Practicable home-office extension) and the 2026 Right to Disconnect framework (against constructive dismissal CCMA tethering claims). Drafted comprehensive cold email pitches and target breakdowns for Standard Bank, FNB, Discovery, and Sanlam.
src/features/dashboard/ExecutiveBriefing.tsx: Integrated the Financial Pitch Sentinel section displaying legal standards and the targeted bank pitch profiles with interactive expandable email drafts.
src/features/admin/AdminPortal.tsx: Added a dedicated administrative control block allowing supervisors and HR admins to review, monitor, and export the financial pitches directly to Gmail drafts.&lt;/li&gt;
&lt;li&gt;Repository Reconciliation &amp;amp; Purge
Purged unmapped legacy config files vite.config.ts.timestamp-1770284278728-c7ed4b32044da.mjs and vite.config.ts.timestamp-1770972931544-b9c4578194e09.mjs.
Purged redundant utility script refactor-script.js.
Purged temporary video workspace folder ffmpeg_temp/.
## My Experience with GitHub Copilot
GitHub Copilot acted as my elite infrastructure advisor and secondary pair programmer throughout this recovery sprint. It was an invaluable forcing function to bridge the gap between abstract design goals and clean, production-ready code.
Fixing System Infrastructure: When local compilation threw deep environmental script path block errors (npm : The term 'npm' is not recognized and PowerShell execution policy roadblocks), Copilot systematically diagnosed the underlying machine requirements, guiding the installation tracking for Node.js LTS environments cleanly.
Writing State Hooks: Copilot handled the inline syntax formatting for the component mounting/unmounting lifecycle states, generating clean, bug-free React hooks to enforce the useEffect body scroll restrictions without manual trial and error.
Refactoring File Imports: Copilot mapped the complex module dependencies, ensuring the freshly created multi-lingual translation bundles (English, isiZulu, isiXhosa, Sesotho) linked to our interactive modules smoothly without triggering path alignment drop-offs.
By combining GitHub Copilot's contextual autocomplete capabilities in VS Code with autonomous multi-agent task orchestration (Google Antigravity / Agent 007), I was able to transform a broken repository into an enterprise-ready commercial asset in a fraction of the standard development time. This challenge proved that with the right AI scaffolding, no side project is ever truly dead!
&amp;lt;!-- Team Submissions: Please pick one member to publish the submission and credit teammates by listing their DEV usernames directly in the body of the post. --&amp;gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>devchallenge</category>
      <category>githubchallenge</category>
    </item>
    <item>
      <title>Beyond the Bed: Engineering an AI "Steward" for the Remote Work RSI Crisis</title>
      <dc:creator>Desigan Tharmen</dc:creator>
      <pubDate>Wed, 04 Mar 2026 00:57:24 +0000</pubDate>
      <link>https://dev.to/desigan_tharmen_3c4cd6566/beyond-the-bed-engineering-an-ai-steward-for-the-remote-work-rsi-crisis-ff</link>
      <guid>https://dev.to/desigan_tharmen_3c4cd6566/beyond-the-bed-engineering-an-ai-steward-for-the-remote-work-rsi-crisis-ff</guid>
      <description>&lt;h2&gt;
  
  
  What I Built with Google Gemini
&lt;/h2&gt;

&lt;p&gt;As a safety professional with over 20 years of experience managing compliance for major industrial brands, I recognized a silent, modern crisis: Repetitive Stress Injury (RSI) in remote teams. While office environments are strictly regulated, home offices are often "blind spots" where staff work from beds or sofas, creating massive corporate liability and health risks.&lt;/p&gt;

&lt;p&gt;I built Ergo-Safe Reborn, an AI-driven stewardship platform powered by Google Gemini. Unlike a static checklist, Ergo-Safe uses a Multi-Agent Swarm to act as a digital safety officer.&lt;/p&gt;

&lt;p&gt;Melly (AI Copilot): Uses Gemini’s reasoning to provide legally grounded advice by ingesting the OHS Act and ISO 45001.&lt;/p&gt;

&lt;p&gt;Agentic Stewardship: Using crewAI, I orchestrated a workflow where a "Steward Agent" engages the worker while a "Compliance Agent" verifies the setup against regulatory standards.&lt;/p&gt;

&lt;p&gt;Multilingual Escalation: Gemini’s native translation ensures that safety warnings are communicated in the user's native language for zero-error comprehension.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;You can explore the live deployment here: ergo-safe-reborn.vercel.app&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;LLM Grounding is Non-Negotiable: In safety-critical applications, "close enough" isn't good enough. I learned to use the GEAR Framework to ground Gemini in specific legal texts to prevent hallucinations.&lt;/p&gt;

&lt;p&gt;The Shift to AI Orchestration: This project forced me to move from writing line-by-line code to designing "agentic logic." Using Gemini as a pair programmer allowed me to focus on how agents interact rather than syntax.&lt;/p&gt;

&lt;p&gt;Soft Skills in Automation: Building a system that monitors human behavior requires empathy. I learned to tune Gemini’s "voice" to be authoritative yet supportive, ensuring staff felt protected rather than policed.&lt;/p&gt;

&lt;h2&gt;
  
  
  Google Gemini Feedback
&lt;/h2&gt;

&lt;p&gt;The long-context window is Gemini's "superpower." Being able to upload the entire OHS Act as context meant my agents could cite specific regulations with 100% accuracy. The low latency in multilingual processing made real-time safety escalations feel seamless.&lt;/p&gt;

&lt;p&gt;The Friction:&lt;br&gt;
I initially struggled with Gemini being too polite. In safety, if someone is at high risk of injury, the tone needs to be firm. I had to implement strict system_instructions to ensure the "Compliance Agent" maintained a high-stakes, professional persona.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>geminireflections</category>
      <category>ai</category>
    </item>
    <item>
      <title>I built a Multi-Agent "Stewardship" Swarm to prevent RSI in Remote Teams
Remote work is a compliance time-bomb. Employees working from sofas, beds, or non-ergonomic chairs are at high risk for Repetitive Stress Injury (RSI). ergo-safe-reborn.vercel.app</title>
      <dc:creator>Desigan Tharmen</dc:creator>
      <pubDate>Wed, 04 Mar 2026 00:35:51 +0000</pubDate>
      <link>https://dev.to/desigan_tharmen_3c4cd6566/i-built-a-multi-agent-stewardship-swarm-to-prevent-rsi-in-remote-teams-remote-work-is-a-kjo</link>
      <guid>https://dev.to/desigan_tharmen_3c4cd6566/i-built-a-multi-agent-stewardship-swarm-to-prevent-rsi-in-remote-teams-remote-work-is-a-kjo</guid>
      <description></description>
    </item>
  </channel>
</rss>
