<?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: Tanmaya Naik</title>
    <description>The latest articles on DEV Community by Tanmaya Naik (@tancannon2003).</description>
    <link>https://dev.to/tancannon2003</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%2F3680912%2F4f325f07-4abd-4864-80a5-86919c29cab7.png</url>
      <title>DEV Community: Tanmaya Naik</title>
      <link>https://dev.to/tancannon2003</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tancannon2003"/>
    <language>en</language>
    <item>
      <title>Turning ASCII folder trees into real project structures (built this while experimenting)</title>
      <dc:creator>Tanmaya Naik</dc:creator>
      <pubDate>Sat, 17 Jan 2026 11:41:28 +0000</pubDate>
      <link>https://dev.to/tancannon2003/turning-ascii-folder-trees-into-real-project-structures-built-this-while-experimenting-4c8g</link>
      <guid>https://dev.to/tancannon2003/turning-ascii-folder-trees-into-real-project-structures-built-this-while-experimenting-4c8g</guid>
      <description>&lt;p&gt;When I’m experimenting with ideas or teaching myself through notes and small demos, I often sketch out folder structures as ASCII trees in my journal or docs.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;project/
├── src/
│   ├── app.py
│   └── utils.py
├── README.md
└── requirements.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The structure itself usually comes first, before any framework or CLI. What I kept running into was the repetitive part — manually recreating that exact structure every time just to start experimenting.&lt;/p&gt;

&lt;p&gt;So I built a small utility for myself that takes an ASCII folder tree and materializes it into an actual folder structure you can download as a ZIP.&lt;/p&gt;

&lt;p&gt;I’m curious how others handle this when they’re:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;experimenting with ideas&lt;/li&gt;
&lt;li&gt;writing docs or notes for themselves&lt;/li&gt;
&lt;li&gt;creating small demo or repro projects&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Do you usually rely on framework CLIs, scripts, or just create things manually as you go?&lt;/p&gt;

&lt;p&gt;Link (for context):&lt;/p&gt;

&lt;p&gt;&lt;a href="https://tancannon2003.pythonanywhere.com/tools/ascii-tree-to-zip" rel="noopener noreferrer"&gt;https://tancannon2003.pythonanywhere.com/tools/ascii-tree-to-zip&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Would love honest feedback on whether this fits into anyone else’s workflow.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>tooling</category>
      <category>buildinpublic</category>
      <category>developer</category>
    </item>
    <item>
      <title>Why “Busywork” Kills Creativity When I’m Just Trying to Experiment</title>
      <dc:creator>Tanmaya Naik</dc:creator>
      <pubDate>Fri, 09 Jan 2026 14:05:59 +0000</pubDate>
      <link>https://dev.to/tancannon2003/why-busywork-kills-creativity-when-im-just-trying-to-experiment-bkn</link>
      <guid>https://dev.to/tancannon2003/why-busywork-kills-creativity-when-im-just-trying-to-experiment-bkn</guid>
      <description>&lt;p&gt;When I’m experimenting with a new idea or building something small for myself, the thing that kills momentum fastest isn’t bugs or missing features — it’s busywork.&lt;/p&gt;

&lt;p&gt;Stuff like:&lt;/p&gt;

&lt;p&gt;Recreating the same folder structure again and again&lt;/p&gt;

&lt;p&gt;Renaming files just to “feel organized”&lt;/p&gt;

&lt;p&gt;Spending 20 minutes on setup before writing a single line of logic&lt;/p&gt;

&lt;p&gt;Frameworks like Flask or Django solve this pretty well with CLI scaffolding. You run one command and you’re ready to think about the actual problem.&lt;/p&gt;

&lt;p&gt;But the moment I step outside a framework — building a small script, a side tool, or just exploring an idea — that safety net disappears. Suddenly I’m doing setup instead of experimenting.&lt;/p&gt;

&lt;p&gt;What helped me was treating folder structure as supporting infrastructure, not part of the creative work itself. I still care about maintainability, but I don’t want structure decisions to block curiosity.&lt;/p&gt;

&lt;p&gt;So now, when I’m experimenting, I try to:&lt;/p&gt;

&lt;p&gt;Start with a minimal, predictable layout&lt;/p&gt;

&lt;p&gt;Write things down once (in docs or notes) instead of rebuilding from scratch&lt;/p&gt;

&lt;p&gt;Adjust structure after the idea proves useful&lt;/p&gt;

&lt;p&gt;For me, maintainability matters most when something survives beyond the experiment. Until then, reducing friction helps me stay creative instead of burning out on setup.&lt;/p&gt;

&lt;p&gt;Curious if others handle this differently when working outside frameworks.&lt;/p&gt;

</description>
      <category>programming</category>
      <category>productivity</category>
      <category>learning</category>
    </item>
    <item>
      <title>I built a free tool to convert ASCII folder trees into ZIP files</title>
      <dc:creator>Tanmaya Naik</dc:creator>
      <pubDate>Sat, 27 Dec 2025 12:01:09 +0000</pubDate>
      <link>https://dev.to/tancannon2003/i-built-a-free-tool-to-convert-ascii-folder-trees-into-zip-files-5aop</link>
      <guid>https://dev.to/tancannon2003/i-built-a-free-tool-to-convert-ascii-folder-trees-into-zip-files-5aop</guid>
      <description>&lt;p&gt;When writing documentation, tutorials, or READMEs, I often describe folder structures like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;project/
├── src/
│   ├── app.py
│   └── utils.py
├── README.md
└── requirements.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;At some point, I wondered:&lt;/p&gt;

&lt;p&gt;Why can’t I just turn this into a real folder structure instantly?&lt;/p&gt;

&lt;p&gt;Surprisingly, there wasn’t a simple tool that did exactly this — so I built one.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;ASCII folder trees are great for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Documentation&lt;/li&gt;
&lt;li&gt;Tutorials&lt;/li&gt;
&lt;li&gt;Teaching projects&lt;/li&gt;
&lt;li&gt;Explaining structure in chats or blogs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But when you want to actually create those folders and files, you have to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Manually recreate everything&lt;/li&gt;
&lt;li&gt;Or write scripts&lt;/li&gt;
&lt;li&gt;Or install tools that are overkill&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That breaks the flow.&lt;/p&gt;

&lt;h2&gt;
  
  
  The solution
&lt;/h2&gt;

&lt;p&gt;I built a free online tool that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Takes an ASCII folder tree&lt;/li&gt;
&lt;li&gt;Converts it into a real folder structure&lt;/li&gt;
&lt;li&gt;Lets you download it instantly as a ZIP file&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No signup.&lt;br&gt;
No installs.&lt;br&gt;
Just paste → generate → download.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it works (simple)
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Paste your ASCII tree&lt;/li&gt;
&lt;li&gt;Click generate&lt;/li&gt;
&lt;li&gt;Download the ZIP&lt;/li&gt;
&lt;li&gt;Extract → done&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;It preserves:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Folder hierarchy&lt;/li&gt;
&lt;li&gt;File names&lt;/li&gt;
&lt;li&gt;Nesting structure&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Who is this useful for?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Developers writing docs&lt;/li&gt;
&lt;li&gt;Students learning project structures&lt;/li&gt;
&lt;li&gt;Teachers creating examples&lt;/li&gt;
&lt;li&gt;Anyone sharing folder layouts online&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why I kept it simple
&lt;/h2&gt;

&lt;p&gt;I intentionally avoided:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Accounts&lt;/li&gt;
&lt;li&gt;Ads&lt;/li&gt;
&lt;li&gt;Complicated UI&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal was:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;One job. Done fast.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Try it out
&lt;/h2&gt;

&lt;p&gt;You can use the tool here:&lt;br&gt;
👉 &lt;a href="https://tancannon2003.pythonanywhere.com/tools/ascii-tree-to-zip" rel="noopener noreferrer"&gt;ASCII Tree to Folder&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’d genuinely love feedback:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Edge cases&lt;/li&gt;
&lt;li&gt;Missing features&lt;/li&gt;
&lt;li&gt;Improvements&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for reading 🙌&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>tooling</category>
      <category>buildinpublic</category>
      <category>developer</category>
    </item>
  </channel>
</rss>
