<?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: Abhishek sinha</title>
    <description>The latest articles on DEV Community by Abhishek sinha (@abhishek99).</description>
    <link>https://dev.to/abhishek99</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%2F3845979%2Fa468b48d-8b53-4d29-8858-79eabdc0d55b.jpg</url>
      <title>DEV Community: Abhishek sinha</title>
      <link>https://dev.to/abhishek99</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abhishek99"/>
    <language>en</language>
    <item>
      <title>I Slept Only After Fixing the Bug 😴🐛 — A Developer Story in Memes &amp; Code</title>
      <dc:creator>Abhishek sinha</dc:creator>
      <pubDate>Thu, 23 Apr 2026 15:44:23 +0000</pubDate>
      <link>https://dev.to/abhishek99/i-slept-only-after-fixing-the-bug-a-developer-story-in-memes-code-53ko</link>
      <guid>https://dev.to/abhishek99/i-slept-only-after-fixing-the-bug-a-developer-story-in-memes-code-53ko</guid>
      <description>&lt;p&gt;It started with a comment.&lt;/p&gt;

&lt;p&gt;Not a crash report.&lt;br&gt;
Not a monitoring alert.&lt;br&gt;
Not even a failed deployment.&lt;/p&gt;

&lt;p&gt;Just… a comment.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Hey, I think there’s a bug in your website.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Every developer knows this moment.&lt;br&gt;
Your heart skips. Your brain replays recent commits. Your soul whispers:&lt;br&gt;
&lt;strong&gt;"Please be cache… please be cache…"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;But it wasn’t cache.&lt;br&gt;
The Setup&lt;/p&gt;

&lt;p&gt;I was casually checking feedback when I noticed the comment.&lt;br&gt;
A user had found a bug in the website — something small, but real.&lt;/p&gt;

&lt;p&gt;The kind of bug that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Doesn't break everything&lt;/li&gt;
&lt;li&gt;But breaks trust&lt;/li&gt;
&lt;li&gt;And quietly sits there waiting to embarrass you later&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So naturally, I did what any responsible developer would do:&lt;/p&gt;

&lt;p&gt;I opened the code.&lt;/p&gt;

&lt;p&gt;Phase 1: Denial&lt;/p&gt;

&lt;p&gt;First reaction:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"This can't be happening."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I refreshed the page.&lt;br&gt;
Worked fine.&lt;/p&gt;

&lt;p&gt;I tried again.&lt;br&gt;
Still fine.&lt;/p&gt;

&lt;p&gt;Then I followed the exact steps from the comment.&lt;/p&gt;

&lt;p&gt;Boom.&lt;br&gt;
Bug reproduced.&lt;/p&gt;

&lt;p&gt;At that moment, the night officially began.&lt;/p&gt;

&lt;p&gt;Phase 2: Investigation 🔍&lt;/p&gt;

&lt;p&gt;Console open.&lt;br&gt;
Logs everywhere.&lt;br&gt;
Stack traces flying.&lt;/p&gt;

&lt;p&gt;You start asking the classic questions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Is it frontend?&lt;/li&gt;
&lt;li&gt;Is it backend?&lt;/li&gt;
&lt;li&gt;Is it caching?&lt;/li&gt;
&lt;li&gt;Is it Redis?&lt;/li&gt;
&lt;li&gt;Is it a race condition?&lt;/li&gt;
&lt;li&gt;Is it user input?&lt;/li&gt;
&lt;li&gt;Is it me?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You add logs.&lt;/p&gt;

&lt;p&gt;More logs.&lt;/p&gt;

&lt;p&gt;Even more logs.&lt;/p&gt;

&lt;p&gt;Eventually your console looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="o"&gt;[&lt;/span&gt;INFO] Request received
&lt;span class="o"&gt;[&lt;/span&gt;DEBUG] Processing data
&lt;span class="o"&gt;[&lt;/span&gt;WARN] Something feels wrong
&lt;span class="o"&gt;[&lt;/span&gt;ERROR] Why is this happening
&lt;span class="o"&gt;[&lt;/span&gt;CRITICAL] Send &lt;span class="nb"&gt;help&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Phase 3: The Rabbit Hole 🕳️&lt;/p&gt;

&lt;p&gt;One fix leads to another issue.&lt;/p&gt;

&lt;p&gt;You change one line.&lt;/p&gt;

&lt;p&gt;Now three things break.&lt;/p&gt;

&lt;p&gt;You revert.&lt;/p&gt;

&lt;p&gt;Now something else breaks.&lt;/p&gt;

&lt;p&gt;You check documentation.&lt;/p&gt;

&lt;p&gt;You check Stack Overflow.&lt;/p&gt;

&lt;p&gt;You check your own code from 3 months ago and wonder:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Who wrote this?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And then you realize:&lt;/p&gt;

&lt;p&gt;You did.&lt;/p&gt;

&lt;p&gt;Phase 4: The Breakthrough ⚡&lt;/p&gt;

&lt;p&gt;After hours of debugging, tracing, and questioning your life choices…&lt;/p&gt;

&lt;p&gt;You find it.&lt;/p&gt;

&lt;p&gt;A tiny bug.&lt;/p&gt;

&lt;p&gt;Maybe:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A missing null check&lt;/li&gt;
&lt;li&gt;A wrong condition&lt;/li&gt;
&lt;li&gt;A state mismatch&lt;/li&gt;
&lt;li&gt;A cache inconsistency&lt;/li&gt;
&lt;li&gt;An async timing issue&lt;/li&gt;
&lt;li&gt;A single character typo&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Something like:&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="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;isAdmin&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Instead of:&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="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;isAdmin&lt;/span&gt; &lt;span class="o"&gt;===&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The smallest bugs always hide the best.&lt;/p&gt;




&lt;h2&gt;
  
  
  Phase 5: The Fix
&lt;/h2&gt;

&lt;p&gt;You apply the fix.&lt;/p&gt;

&lt;p&gt;Run tests.&lt;/p&gt;

&lt;p&gt;Reload.&lt;/p&gt;

&lt;p&gt;Try again.&lt;/p&gt;

&lt;p&gt;It works.&lt;/p&gt;

&lt;p&gt;You test edge cases.&lt;/p&gt;

&lt;p&gt;Still works.&lt;/p&gt;

&lt;p&gt;You test like a paranoid engineer.&lt;/p&gt;

&lt;p&gt;Still works.&lt;/p&gt;

&lt;p&gt;You deploy.&lt;/p&gt;

&lt;p&gt;Production is stable.&lt;/p&gt;

&lt;p&gt;No errors.&lt;/p&gt;

&lt;p&gt;No crashes.&lt;/p&gt;

&lt;p&gt;No logs screaming.&lt;/p&gt;

&lt;p&gt;Silence.&lt;/p&gt;

&lt;p&gt;Beautiful silence.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Final Rule
&lt;/h2&gt;

&lt;p&gt;There is an unwritten law in software development:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;You don't sleep while a bug is alive.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Sleep only happens after:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The bug is fixed&lt;/li&gt;
&lt;li&gt;The fix is deployed&lt;/li&gt;
&lt;li&gt;The logs are quiet&lt;/li&gt;
&lt;li&gt;The users are safe&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Only then…&lt;/p&gt;

&lt;p&gt;You close the laptop.&lt;/p&gt;

&lt;p&gt;And finally sleep.&lt;/p&gt;




&lt;h2&gt;
  
  
  What This Video Shows 🎬
&lt;/h2&gt;

&lt;p&gt;This video is a cinematic developer journey featuring:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Real debugging workflow&lt;/li&gt;
&lt;li&gt;Coding montage&lt;/li&gt;
&lt;li&gt;Error messages&lt;/li&gt;
&lt;li&gt;Memes every developer understands&lt;/li&gt;
&lt;li&gt;The emotional rollercoaster of fixing bugs&lt;/li&gt;
&lt;li&gt;The satisfaction of a successful fix&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And one simple truth:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Behind every stable system is a developer who refused to sleep.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Lessons From This Night
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;User feedback is gold&lt;/li&gt;
&lt;li&gt;Small bugs matter&lt;/li&gt;
&lt;li&gt;Logs save lives&lt;/li&gt;
&lt;li&gt;Reproducing the issue is half the solution&lt;/li&gt;
&lt;li&gt;Persistence beats frustration&lt;/li&gt;
&lt;li&gt;Shipping the fix feels better than sleeping&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  For Developers Watching This
&lt;/h2&gt;

&lt;p&gt;Have you ever:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Stayed up late fixing a production bug?&lt;/li&gt;
&lt;li&gt;Said “just one more test” at 2 AM?&lt;/li&gt;
&lt;li&gt;Promised to sleep after deployment?&lt;/li&gt;
&lt;li&gt;Debugged something that turned out to be a one-line fix?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You're not alone.&lt;/p&gt;

&lt;p&gt;You're a developer.&lt;/p&gt;




&lt;h2&gt;
  
  
  Watch the Video
&lt;/h2&gt;

&lt;p&gt;If you've ever chased a bug into the night,&lt;br&gt;
this video will feel very familiar.&lt;/p&gt;

&lt;p&gt;Memes included.&lt;/p&gt;

&lt;p&gt;Sleep not guaranteed.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Fix the bug.&lt;br&gt;
Then sleep.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>saas</category>
      <category>testing</category>
    </item>
    <item>
      <title>Just Launched My Game Dev Platform!</title>
      <dc:creator>Abhishek sinha</dc:creator>
      <pubDate>Fri, 03 Apr 2026 14:50:29 +0000</pubDate>
      <link>https://dev.to/abhishek99/just-launched-my-game-dev-platform-1hk9</link>
      <guid>https://dev.to/abhishek99/just-launched-my-game-dev-platform-1hk9</guid>
      <description>&lt;p&gt;I have been making games since 2020. I tried Google Play Store and Apple App Store to launch my games, but due to various reasons, my games got removed. &lt;/p&gt;

&lt;p&gt;I decided, let's make something exciting, and finally decided to share it with the community.&lt;/p&gt;

&lt;p&gt;I built a game-focused platform where you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Discover and play indie games&lt;/li&gt;
&lt;li&gt;Upload and showcase your own games&lt;/li&gt;
&lt;li&gt;Collaborate with other developers&lt;/li&gt;
&lt;li&gt;Engage with a community of creators&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal was to create a space that blends the creativity of game development with the social aspects of sharing and feedback, all in one place.&lt;br&gt;
Its Called &lt;strong&gt;CoffeeGameOnline&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Whether you're a beginner experimenting with your first game or an experienced dev looking to showcase your work, this platform is designed for you.&lt;/p&gt;

&lt;p&gt;I’d love to get your feedback, suggestions, and ideas to improve it further.&lt;/p&gt;

&lt;p&gt;Check it out: - [CoffeeGameOnline]&lt;a href="https://coffeegameonline.com/" rel="noopener noreferrer"&gt;https://coffeegameonline.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let me know what you think?&lt;br&gt;
AnyFeed Back will help me improve CoffeeGameOnline.&lt;/p&gt;

&lt;p&gt;FYI - I Love Coffee and Games, Hence, &lt;em&gt;CoffeeGameOnline&lt;/em&gt;.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>gamedev</category>
      <category>unity3d</category>
      <category>ai</category>
    </item>
    <item>
      <title>I have Played Total Over Dose</title>
      <dc:creator>Abhishek sinha</dc:creator>
      <pubDate>Wed, 01 Apr 2026 17:22:47 +0000</pubDate>
      <link>https://dev.to/abhishek99/i-have-played-total-over-dose-7j0</link>
      <guid>https://dev.to/abhishek99/i-have-played-total-over-dose-7j0</guid>
      <description>&lt;p&gt;I have Played this give already 50 Times, but still its the best games after vice city&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Latest Features - Openbeam</title>
      <dc:creator>Abhishek sinha</dc:creator>
      <pubDate>Sat, 28 Mar 2026 12:30:00 +0000</pubDate>
      <link>https://dev.to/abhishek99/latest-features-openbeam-50k3</link>
      <guid>https://dev.to/abhishek99/latest-features-openbeam-50k3</guid>
      <description>&lt;p&gt;Latest Features of OpenBeam.cloud&lt;/p&gt;

&lt;p&gt;No Cables, no USB ... Share Via Webcam&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I have created a Website where you can upload and Share Files Upto 50GB for Free.</title>
      <dc:creator>Abhishek sinha</dc:creator>
      <pubDate>Fri, 27 Mar 2026 09:58:25 +0000</pubDate>
      <link>https://dev.to/abhishek99/i-have-created-a-website-where-you-can-upload-and-share-files-upto-50gb-for-free-1f2f</link>
      <guid>https://dev.to/abhishek99/i-have-created-a-website-where-you-can-upload-and-share-files-upto-50gb-for-free-1f2f</guid>
      <description>&lt;p&gt;You can share files up to 50 GB without registration. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Upload your files up to 50GB&lt;/li&gt;
&lt;li&gt;Choose Your Files Expiration time, Password Protection&lt;/li&gt;
&lt;li&gt;Get Your Links to shares, or use the QR code to share the files.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full Guide Below:&lt;br&gt;
&lt;/p&gt;
&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
      &lt;div class="c-embed__body flex items-center justify-between"&gt;
        &lt;a href="https://openbeam.cloud/blog/how-do-i-send-a-file-if-its-too-big" rel="noopener noreferrer" class="c-link fw-bold flex items-center"&gt;
          &lt;span class="mr-2"&gt;openbeam.cloud&lt;/span&gt;
          

        &lt;/a&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


</description>
      <category>webdev</category>
      <category>react</category>
      <category>cloud</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
