<?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: Achim Loobes</title>
    <description>The latest articles on DEV Community by Achim Loobes (@der-vigilant).</description>
    <link>https://dev.to/der-vigilant</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%2F3420388%2Fd9cddeff-0754-42a2-bcd5-ccd0c9701c72.jpg</url>
      <title>DEV Community: Achim Loobes</title>
      <link>https://dev.to/der-vigilant</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/der-vigilant"/>
    <language>en</language>
    <item>
      <title>Why I Built VigiGym: A Solo Dev’s Journey From ’80s Coding to an iOS Fitness App</title>
      <dc:creator>Achim Loobes</dc:creator>
      <pubDate>Tue, 30 Sep 2025 10:00:26 +0000</pubDate>
      <link>https://dev.to/der-vigilant/why-i-built-vigigym-a-solo-devs-journey-from-80s-coding-to-an-ios-fitness-app-4mkj</link>
      <guid>https://dev.to/der-vigilant/why-i-built-vigigym-a-solo-devs-journey-from-80s-coding-to-an-ios-fitness-app-4mkj</guid>
      <description>&lt;h2&gt;
  
  
  From Lifting to Coding
&lt;/h2&gt;

&lt;p&gt;I’ve been lifting weights since the ’80s — around the same time I was coding on beige-box computers with mechanical keyboards. Fitness and tech have always been the two pillars of my life.&lt;/p&gt;

&lt;p&gt;When the iPhone came out, I expected someone would finally build a fitness app that felt as elegant as the device itself. But every app I tried was either bloated with features I didn’t need, or so stripped down it was useless.&lt;/p&gt;

&lt;p&gt;One day in the gym, my son looked at me fumbling with another clunky app and said:&lt;br&gt;
“Dad, why don’t you just build your own?”&lt;br&gt;
That one line started everything.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvy3vxx3bbth5v4a2zb4a.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvy3vxx3bbth5v4a2zb4a.jpg" alt=" " width="800" height="363"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Why VigiGym Had to Be Different
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;I didn’t want another “everything app.”&lt;/em&gt;&lt;br&gt;
• I don’t need AI coaching.&lt;br&gt;
• I don’t need social feeds.&lt;br&gt;
• I don’t need gamification.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;What I do need:&lt;/em&gt;&lt;br&gt;
• Log sets in seconds&lt;br&gt;
• See progress clearly&lt;br&gt;
• Stay focused on lifting&lt;/p&gt;

&lt;p&gt;That became the DNA of VigiGym: a tool that gets out of your way and lets you train.&lt;/p&gt;
&lt;h2&gt;
  
  
  Building as a Solo Developer
&lt;/h2&gt;

&lt;p&gt;I started almost from scratch with SwiftUI. No prior UIKit baggage, no team, no funding. Just me, late nights, and stubbornness.&lt;/p&gt;

&lt;p&gt;I threw away three full versions. Fought Core Data sync issues at 2 a.m. And questioned if I could finish this.&lt;/p&gt;

&lt;p&gt;What saved me was my design background: years of UX/UI work meant I always knew what felt right, even if the code didn’t.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Tech Stack &amp;amp; Snippets&lt;/em&gt;&lt;br&gt;
• SwiftUI for the UI&lt;br&gt;
• Core Data / SwiftData for local storage (no cloud)&lt;br&gt;
• Charts for progress visualization&lt;br&gt;
• WatchOS integration for logging workouts without a phone&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example: My 1RM Calculator (SwiftUI)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A key feature is the One Rep Max calculator. Instead of forcing users to do math mid-workout, the app calculates and adapts weights automatically — especially useful for pyramid and drop sets.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;enum TrainingGoal: String, CaseIterable {
    case hypertrophy = "Hypertrophy"
    case strength = "Strength"
    case endurance = "Endurance"
}

Picker("Training Goal", selection: $selectedTrainingGoal) {
    ForEach(TrainingGoal.allCases, id: \.self) { goal in
        Text(goal.rawValue).tag(goal)
    }
}
.pickerStyle(.segmented)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Simple UI, big impact: it makes advanced set programming effortless.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example: Color-Coded Muscle Mapping&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Each workout card shows which muscles are primary vs. secondary. That meant creating a custom color schema instead of generic stock images.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Image("Dumbbell-Chest-Press")
    .resizable()
    .overlay(
        Rectangle()
            .fill(primaryMuscleColor.opacity(0.5))
    )
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It’s more work (I manually edited 242 exercise images at launch), but the clarity for lifters is unmatched.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example: Apple Watch Integration&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The Watch app was crucial: lifters don’t want to grab their phones between sets.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;NavigationStack {
    List(workouts) { workout in
        Button(workout.name) {
            startWorkout(workout)
        }
    }
    .navigationTitle("VigiGym")
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Minimal interface, designed to track quickly without distractions.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Lessons Learned&lt;/em&gt;&lt;br&gt;
• Throw away code early – sometimes starting over is faster than patching.&lt;br&gt;
• UX is king – lifters don’t care about clever architecture, they care about frictionless flow.&lt;br&gt;
• Solo ≠ alone – docs, forums, and dev communities like dev.to were critical.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;What’s Next&lt;/em&gt;&lt;br&gt;
• Smarter auto-detection of set types (supersets, cluster sets, pyramids)&lt;br&gt;
• Deeper analytics that show training patterns&lt;br&gt;
• Expanded Apple Watch features&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Final Thoughts&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
Building VigiGym was harder than learning to code in the ’80s, and harder than sticking to a training routine. But it’s also been the most rewarding thing I’ve built.&lt;/p&gt;

&lt;p&gt;This isn’t a corporate product — it’s a solo project I needed to exist.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://apps.apple.com/app/6748325582" rel="noopener noreferrer"&gt;VigiGym on the App Store&lt;/a&gt;&lt;br&gt;
Learn more at &lt;a href="https://www.vigigym.com" rel="noopener noreferrer"&gt;vigigym.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Written by a solo dev who still lifts heavy and still codes late into the night.&lt;/p&gt;

</description>
      <category>devjournal</category>
      <category>ios</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
