<?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: Ethan</title>
    <description>The latest articles on DEV Community by Ethan (@ethantsaitsai).</description>
    <link>https://dev.to/ethantsaitsai</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%2F3891588%2Ff2026ee9-602e-465d-a28a-4ffbd0e39711.png</url>
      <title>DEV Community: Ethan</title>
      <link>https://dev.to/ethantsaitsai</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ethantsaitsai"/>
    <language>en</language>
    <item>
      <title>I kept forgetting to delete my venvs, so I built a GUI for it</title>
      <dc:creator>Ethan</dc:creator>
      <pubDate>Wed, 22 Apr 2026 02:45:44 +0000</pubDate>
      <link>https://dev.to/ethantsaitsai/i-kept-forgetting-to-delete-my-venvs-so-i-built-a-gui-for-it-3ck7</link>
      <guid>https://dev.to/ethantsaitsai/i-kept-forgetting-to-delete-my-venvs-so-i-built-a-gui-for-it-3ck7</guid>
      <description>&lt;p&gt;Finished projects have this thing where they just... sit there. The code's done, the repo's pushed, and you've moved on. But somewhere on your disk, there's still a &lt;code&gt;.venv&lt;/code&gt; quietly taking up space. Maybe you remembered to delete it. Probably you didn't.&lt;/p&gt;

&lt;p&gt;I started noticing this when I was running low on disk space and had no idea where it all went. Turned out I had a bunch of old Python projects I'd wrapped up months ago, and most of them still had their virtual environments intact. A few node_modules too, from side projects that never made it past "proof of concept."&lt;/p&gt;

&lt;p&gt;The annoying part wasn't that it happened — it's that cleaning it up meant going folder by folder, checking what's still active, and manually deleting things. There are CLI tools for this (&lt;code&gt;npkill&lt;/code&gt; is great for node_modules) but nothing that handles both ecosystems in one place.&lt;/p&gt;

&lt;p&gt;So I built DevTidy.&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%2Flc8gxf159nv0d3s6xqwk.png" 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%2Flc8gxf159nv0d3s6xqwk.png" alt="screenshot" width="800" height="526"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It scans your machine, shows you every Python virtual environment and &lt;code&gt;node_modules&lt;/code&gt; it finds, sorted by size. You can see at a glance which ones belong to active projects and which ones are orphaned — the parent project folder is gone but the env is still sitting there.&lt;/p&gt;

&lt;p&gt;A few things I cared about when building it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;It moves things to trash, not permanent delete.&lt;/strong&gt; I didn't want to accidentally nuke something I still needed.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;It covers all the Python env types&lt;/strong&gt; — venv, virtualenv, conda, uv, Poetry, Pipenv, pyenv. They all look slightly different on disk and it was annoying to handle them all.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;It shows you the size before you delete.&lt;/strong&gt; Sounds obvious but it's motivating to see "this project I finished in 2023 is using 2.4GB."&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Built with Tauri (Rust backend, React frontend), so it's a native desktop app. Available for macOS right now, Windows and Linux builds are coming.&lt;/p&gt;

&lt;p&gt;It's open source: &lt;strong&gt;&lt;a href="https://github.com/ethan-tsai-tsai/devtidy" rel="noopener noreferrer"&gt;github.com/ethan-tsai-tsai/devtidy&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you've ever looked at your disk usage and thought "where did all of this come from" — give it a try.&lt;/p&gt;

</description>
      <category>python</category>
      <category>node</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
