<?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: Mahir Gündüz</title>
    <description>The latest articles on DEV Community by Mahir Gündüz (@mahirgunduz).</description>
    <link>https://dev.to/mahirgunduz</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%2F3937864%2Fb21b6a98-82cf-4d8c-8d4a-07296160b981.jpg</url>
      <title>DEV Community: Mahir Gündüz</title>
      <link>https://dev.to/mahirgunduz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mahirgunduz"/>
    <language>en</language>
    <item>
      <title>I Built a Modern Disk Cleaner as a Solo Dev — Here's What I Learned</title>
      <dc:creator>Mahir Gündüz</dc:creator>
      <pubDate>Mon, 18 May 2026 10:52:34 +0000</pubDate>
      <link>https://dev.to/mahirgunduz/i-built-a-modern-disk-cleaner-as-a-solo-dev-heres-what-i-learned-500b</link>
      <guid>https://dev.to/mahirgunduz/i-built-a-modern-disk-cleaner-as-a-solo-dev-heres-what-i-learned-500b</guid>
      <description>&lt;p&gt;## Why I Built Disk Mop&lt;/p&gt;

&lt;p&gt;I've been using CCleaner for years, but after the Avast acquisition it became bloated and lost user trust. CleanMyMac is great but costs $40+/year and only works on Mac.&lt;/p&gt;

&lt;p&gt;I wanted something &lt;strong&gt;modern, fast, cross-platform, and affordable&lt;/strong&gt;. So I built it myself.&lt;/p&gt;

&lt;p&gt;## What is Disk Mop?&lt;/p&gt;

&lt;p&gt;Disk Mop is a desktop app for &lt;strong&gt;Windows and macOS&lt;/strong&gt; that helps you clean, optimize, and analyze your disk space.&lt;/p&gt;

&lt;p&gt;## Features&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🧹 &lt;strong&gt;Browser Cache Cleaner&lt;/strong&gt; — Chrome, Edge, Firefox, Brave, Safari&lt;/li&gt;
&lt;li&gt;🔍 &lt;strong&gt;Duplicate File Finder&lt;/strong&gt; — hash-based exact matching&lt;/li&gt;
&lt;li&gt;🖼️ &lt;strong&gt;Visual Duplicate Finder&lt;/strong&gt; — perceptual hash for similar photos&lt;/li&gt;
&lt;li&gt;📊 &lt;strong&gt;Disk Treemap&lt;/strong&gt; — interactive visualization of disk usage&lt;/li&gt;
&lt;li&gt;📁 &lt;strong&gt;Large File Scanner&lt;/strong&gt; — find space hogs instantly&lt;/li&gt;
&lt;li&gt;📂 &lt;strong&gt;Empty Folder Finder&lt;/strong&gt; — clean up clutter&lt;/li&gt;
&lt;li&gt;🚀 &lt;strong&gt;Startup Manager&lt;/strong&gt; — control what runs at boot&lt;/li&gt;
&lt;li&gt;🔒 &lt;strong&gt;File Shredder&lt;/strong&gt; — secure deletion (DoD 5220.22-M)&lt;/li&gt;
&lt;li&gt;💾 &lt;strong&gt;Disk Health&lt;/strong&gt; — SMART data monitoring&lt;/li&gt;
&lt;li&gt;🧠 &lt;strong&gt;RAM Optimizer&lt;/strong&gt; — free up memory&lt;/li&gt;
&lt;li&gt;⚙️ &lt;strong&gt;Service Manager&lt;/strong&gt; — manage background services&lt;/li&gt;
&lt;li&gt;📋 &lt;strong&gt;Privacy Report&lt;/strong&gt; — see what's tracking you&lt;/li&gt;
&lt;li&gt;🗑️ &lt;strong&gt;Recycle Bin &amp;amp; Downloads Cleaner&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;🌐 &lt;strong&gt;DNS Cache Flush&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;## Tech Stack&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Electron 31&lt;/strong&gt; + &lt;strong&gt;React 18&lt;/strong&gt; + &lt;strong&gt;Vite&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TypeScript&lt;/strong&gt; for type safety&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS v4&lt;/strong&gt; for styling&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Zustand&lt;/strong&gt; for state management&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;electron-updater&lt;/strong&gt; for auto-updates&lt;/li&gt;
&lt;li&gt;Custom IPC streaming for real-time progress events&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;## Architecture&lt;/p&gt;

&lt;p&gt;The app follows a clean IPC pattern:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;ipcMain.handle&lt;/code&gt; for request/response&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;webContents.send&lt;/code&gt; for streaming progress events&lt;/li&gt;
&lt;li&gt;Preload bridge with &lt;code&gt;contextBridge.exposeInMainWorld&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Platform-specific code paths for Windows and macOS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;## Pricing&lt;/p&gt;

&lt;p&gt;Core features are &lt;strong&gt;completely free&lt;/strong&gt;. PRO unlocks 20+ advanced tools for a &lt;strong&gt;one-time $19.90&lt;/strong&gt; — no subscriptions, no recurring fees.&lt;/p&gt;

&lt;p&gt;## What's Next&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Scheduled cleanup with Windows Task Scheduler&lt;/li&gt;
&lt;li&gt;More languages (French, Spanish, Italian, Portuguese, Japanese)&lt;/li&gt;
&lt;li&gt;Yearly pricing option&lt;/li&gt;
&lt;li&gt;Linux support (maybe?)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;## Try It Out&lt;/p&gt;

&lt;p&gt;🔗 &lt;a href="https://diskmop.com" rel="noopener noreferrer"&gt;diskmop.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd love to hear your feedback. What features would you want to see? Drop a comment below!&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>electron</category>
      <category>sideprojects</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
