<?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: Ajnas ahammed</title>
    <description>The latest articles on DEV Community by Ajnas ahammed (@ajnasahammed).</description>
    <link>https://dev.to/ajnasahammed</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4127745%2F1e953d27-7fb8-4b62-aea9-d518479eb6f3.png</url>
      <title>DEV Community: Ajnas ahammed</title>
      <link>https://dev.to/ajnasahammed</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ajnasahammed"/>
    <language>en</language>
    <item>
      <title>Learning, Building, Breaking, and Starting Again</title>
      <dc:creator>Ajnas ahammed</dc:creator>
      <pubDate>Thu, 17 Sep 2026 05:17:57 +0000</pubDate>
      <link>https://dev.to/ajnasahammed/learning-building-breaking-and-starting-again-4pim</link>
      <guid>https://dev.to/ajnasahammed/learning-building-breaking-and-starting-again-4pim</guid>
      <description>&lt;p&gt;I didn’t get into web development because I knew exactly what I wanted to build.&lt;/p&gt;

&lt;p&gt;I started because I was curious about how websites actually worked.&lt;/p&gt;

&lt;p&gt;That curiosity slowly turned into spending hours writing code, fixing errors, breaking things, and trying to understand why something that looked simple could sometimes take hours to figure out.&lt;/p&gt;

&lt;p&gt;And honestly, sometimes the code looks something like this:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;while (!success) {&lt;br&gt;
    learn();&lt;br&gt;
    build();&lt;br&gt;
    breakSomething();&lt;br&gt;
    debug();&lt;br&gt;
    tryAgain();&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Not exactly a real program...&lt;/p&gt;

&lt;p&gt;But it feels pretty accurate. 😅&lt;/p&gt;

&lt;p&gt;These days, I’m mainly working with JavaScript, Node.js, Express, React, PostgreSQL, and MongoDB. I’m also exploring areas like SEO, digital marketing, and building products around real-world problems.&lt;/p&gt;

&lt;p&gt;One thing I’ve learned is that learning to code isn’t really about memorizing syntax.&lt;/p&gt;

&lt;p&gt;It’s about learning how to think.&lt;/p&gt;

&lt;p&gt;You write something.&lt;/p&gt;

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

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

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

&lt;p&gt;You try again.&lt;/p&gt;

&lt;p&gt;Sometimes you fix it.&lt;/p&gt;

&lt;p&gt;Sometimes you create three new problems while fixing the first one.&lt;/p&gt;

&lt;p&gt;And somehow, that's part of the fun.&lt;/p&gt;

&lt;p&gt;A small example of my current mindset&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="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;developer&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="na"&gt;mindset&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;keep learning&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;goal&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;build useful things&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;bugs&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;Infinity&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;coffee&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;optional&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;givingUp&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;false&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;keepGoing&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nx"&gt;developer&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;bugs&lt;/span&gt;&lt;span class="o"&gt;--&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Try again.&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;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I'm still learning and definitely don't have everything figured out.&lt;/p&gt;

&lt;p&gt;But I enjoy building projects because every project teaches me something I probably wouldn't learn from simply watching another tutorial.&lt;/p&gt;

&lt;p&gt;Sometimes it's a new technology.&lt;/p&gt;

&lt;p&gt;Sometimes it's debugging.&lt;/p&gt;

&lt;p&gt;Sometimes it's realizing that the problem was a missing semicolon.&lt;/p&gt;

&lt;p&gt;And sometimes it's realizing the entire approach was wrong.&lt;/p&gt;

&lt;p&gt;All of those experiences count.&lt;/p&gt;

&lt;p&gt;I'm starting to use DEV.to to document that journey — the things I learn, the mistakes I make, the projects I build, and the solutions I discover along the way.&lt;/p&gt;

&lt;p&gt;I don't want this to be a place where I pretend to know everything.&lt;/p&gt;

&lt;p&gt;I want it to be a place where I can build, learn, experiment, and share.&lt;/p&gt;

&lt;p&gt;If you're also learning, building, or experimenting with technology, I'd love to hear what you're working on.&lt;/p&gt;

&lt;p&gt;Let's Connect&lt;/p&gt;

&lt;p&gt;I share more about my projects, web development, and digital marketing on my website:&lt;/p&gt;

&lt;p&gt;&lt;a href="//ajnasahammed.com"&gt;https://ajnasahammed.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Maybe we're all just somewhere between:&lt;/p&gt;

&lt;p&gt;Idea → Code → Error → Debug → Learn → Build → Repeat&lt;/p&gt;

&lt;p&gt;Keep building. Keep learning.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
