<?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: Aman Chitransh</title>
    <description>The latest articles on DEV Community by Aman Chitransh (@amanchitransh).</description>
    <link>https://dev.to/amanchitransh</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%2F3687369%2F78bed62d-b3d1-499e-8dc4-d615803e0c42.png</url>
      <title>DEV Community: Aman Chitransh</title>
      <link>https://dev.to/amanchitransh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/amanchitransh"/>
    <language>en</language>
    <item>
      <title>Stop Building Side Projects Like Tutorials</title>
      <dc:creator>Aman Chitransh</dc:creator>
      <pubDate>Wed, 31 Dec 2025 11:39:01 +0000</pubDate>
      <link>https://dev.to/amanchitransh/stop-building-side-projects-like-tutorials-33fo</link>
      <guid>https://dev.to/amanchitransh/stop-building-side-projects-like-tutorials-33fo</guid>
      <description>&lt;p&gt;Every developer hears the same advice: "Build side projects."&lt;/p&gt;

&lt;p&gt;So we follow tutorials. Clone popular apps. Deploy to Vercel. Add another line to the resume.&lt;/p&gt;

&lt;p&gt;It looks productive. It rarely makes you a better engineer.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Problem
&lt;/h2&gt;

&lt;p&gt;Most side projects:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Solve already-solved problems&lt;/li&gt;
&lt;li&gt;Avoid hard decisions&lt;/li&gt;
&lt;li&gt;Ignore failures and scale&lt;/li&gt;
&lt;li&gt;End at "v1 is done"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Real engineering doesn't work like that.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real Projects Have Constraints
&lt;/h2&gt;

&lt;p&gt;Instead of asking "What app should I build?"&lt;/p&gt;

&lt;p&gt;Ask: "What problem should this system survive?"&lt;/p&gt;

&lt;p&gt;Add constraints:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What if traffic spikes?&lt;/li&gt;
&lt;li&gt;What if a service goes down?&lt;/li&gt;
&lt;li&gt;What if data becomes inconsistent?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The moment constraints appear, architecture matters.&lt;/p&gt;

&lt;h2&gt;
  
  
  Think in Systems, Not Screens
&lt;/h2&gt;

&lt;p&gt;Start with data flow, not UI.&lt;/p&gt;

&lt;p&gt;Ask:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Where can this break?&lt;/li&gt;
&lt;li&gt;What must be async?&lt;/li&gt;
&lt;li&gt;What needs retries?&lt;/li&gt;
&lt;li&gt;What must be idempotent?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Even a simple backend becomes interesting when failure is allowed.&lt;/p&gt;

&lt;h3&gt;
  
  
  Example: URL Shortener
&lt;/h3&gt;

&lt;p&gt;Tutorial version:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Store URL in database&lt;/li&gt;
&lt;li&gt;Generate short code&lt;/li&gt;
&lt;li&gt;Redirect on GET&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Systems version:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What if two users get the same short code?&lt;/li&gt;
&lt;li&gt;How do you handle 10k redirects/second?&lt;/li&gt;
&lt;li&gt;How do you track analytics without blocking redirects?&lt;/li&gt;
&lt;li&gt;What if your database is in a different region?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;See the difference?&lt;/p&gt;

&lt;h2&gt;
  
  
  Trade-offs &amp;gt; Features
&lt;/h2&gt;

&lt;p&gt;Good engineers make trade-offs and explain them.&lt;/p&gt;

&lt;p&gt;Write things like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## Why Redis for caching&lt;/span&gt;

Improves latency by ~200ms.
Risk: stale data if URL is updated.
Mitigation: 5 minute TTL.

&lt;span class="gu"&gt;## Why async analytics&lt;/span&gt;

Slower than sync writes.
But won't block redirects if analytics DB is down.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Put this in your README. It matters more than screenshots.&lt;/p&gt;

&lt;h2&gt;
  
  
  If You Can't Observe It, You Don't Own It
&lt;/h2&gt;

&lt;p&gt;Add basics:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;logger&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;info&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;URL created&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;shortCode&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;userId&lt;/span&gt; &lt;span class="p"&gt;});&lt;/span&gt;
&lt;span class="nx"&gt;metrics&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;increment&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;url.created&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nx"&gt;metrics&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;timing&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;url.lookup&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;duration&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you can't answer "what broke and why," the project isn't finished.&lt;/p&gt;

&lt;h2&gt;
  
  
  Let It Break. Then Fix It.
&lt;/h2&gt;

&lt;p&gt;Real systems are never done.&lt;/p&gt;

&lt;p&gt;Break your own project:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Simulate database downtime&lt;/li&gt;
&lt;li&gt;Send 1000 concurrent requests&lt;/li&gt;
&lt;li&gt;Fill database with 1M records&lt;/li&gt;
&lt;li&gt;Deploy on 512MB RAM&lt;/li&gt;
&lt;li&gt;Make your API dependency timeout&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then fix it. Refactor it. Scale it. Repeat.&lt;/p&gt;

&lt;p&gt;That loop is where engineers are made.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Resume Is a Side Effect
&lt;/h2&gt;

&lt;p&gt;Stop building projects for your resume.&lt;/p&gt;

&lt;p&gt;Build systems that survive failure.&lt;/p&gt;

&lt;p&gt;The resume will take care of itself.&lt;/p&gt;

&lt;h3&gt;
  
  
  What constraint will you add to your next project?
&lt;/h3&gt;

&lt;h3&gt;
  
  
  Comment below. Let's learn from each other's failures.
&lt;/h3&gt;

</description>
      <category>programming</category>
      <category>beginners</category>
      <category>opensource</category>
      <category>discuss</category>
    </item>
  </channel>
</rss>
