<?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: Harsh Sharma</title>
    <description>The latest articles on DEV Community by Harsh Sharma (@teche_harsh).</description>
    <link>https://dev.to/teche_harsh</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%2F3565009%2Fd32d144d-c169-4cef-879a-b84382c4b5db.jpg</url>
      <title>DEV Community: Harsh Sharma</title>
      <link>https://dev.to/teche_harsh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/teche_harsh"/>
    <language>en</language>
    <item>
      <title>How to start thinking like an engineer or developer</title>
      <dc:creator>Harsh Sharma</dc:creator>
      <pubDate>Thu, 05 Feb 2026 12:43:59 +0000</pubDate>
      <link>https://dev.to/teche_harsh/how-to-start-thinking-like-an-engineer-or-developer-2gp7</link>
      <guid>https://dev.to/teche_harsh/how-to-start-thinking-like-an-engineer-or-developer-2gp7</guid>
      <description>&lt;p&gt;When people say &lt;strong&gt;“think like an engineer”&lt;/strong&gt;, most beginners assume it means knowing more languages, frameworks, or complex math.&lt;br&gt;&lt;br&gt;
But honestly, thinking like an engineer starts way before all that.&lt;/p&gt;

&lt;p&gt;It starts with learning how to &lt;strong&gt;face problems&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;And by facing problems, I don’t mean solving LeetCode questions all day.&lt;br&gt;&lt;br&gt;
I mean understanding what the &lt;strong&gt;real problem&lt;/strong&gt; actually is.&lt;/p&gt;




&lt;h2&gt;
  
  
  You can’t solve a problem you don’t understand
&lt;/h2&gt;

&lt;p&gt;No one can truly face a problem until they clearly know what the problem is.&lt;/p&gt;

&lt;p&gt;For example, a normal user might use a UI library and feel it’s &lt;em&gt;“nice.”&lt;/em&gt;&lt;br&gt;&lt;br&gt;
But a frontend developer understands the pain points:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;repetitive components
&lt;/li&gt;
&lt;li&gt;inconsistent styles
&lt;/li&gt;
&lt;li&gt;slow development
&lt;/li&gt;
&lt;li&gt;bad developer experience (DX)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s why tools like &lt;strong&gt;shadcn/ui&lt;/strong&gt; exist.&lt;br&gt;&lt;br&gt;
Not because someone randomly wanted to build a UI library, but because someone &lt;strong&gt;felt the pain&lt;/strong&gt; of building the same things again and again.&lt;/p&gt;

&lt;p&gt;Same with &lt;strong&gt;Postman&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;A non-developer doesn’t care how APIs are tested.&lt;br&gt;&lt;br&gt;
But backend and frontend developers feel the pain of debugging:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;requests
&lt;/li&gt;
&lt;li&gt;headers
&lt;/li&gt;
&lt;li&gt;tokens
&lt;/li&gt;
&lt;li&gt;responses
&lt;/li&gt;
&lt;li&gt;errors
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Postman was born because someone deeply understood that problem.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Problems don’t appear magically.&lt;br&gt;&lt;br&gt;
They are &lt;strong&gt;experienced&lt;/strong&gt;.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Try things, break things, feel the pain
&lt;/h2&gt;

&lt;p&gt;If you want to become a better engineer, you &lt;strong&gt;must try different things&lt;/strong&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Build projects
&lt;/li&gt;
&lt;li&gt;Try tools
&lt;/li&gt;
&lt;li&gt;Fail
&lt;/li&gt;
&lt;li&gt;Get stuck
&lt;/li&gt;
&lt;li&gt;Google weird errors at &lt;strong&gt;2 AM&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because only when you struggle do you start asking better questions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Why is this slow?
&lt;/li&gt;
&lt;li&gt;Why is this hard to maintain?
&lt;/li&gt;
&lt;li&gt;Why does this break so easily?
&lt;/li&gt;
&lt;li&gt;Why does this feel repetitive?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These questions are the real beginning of the &lt;strong&gt;engineering mindset&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;An engineer is not someone who knows everything.&lt;br&gt;&lt;br&gt;
An engineer is someone who has &lt;strong&gt;felt enough problems to recognize patterns&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Understanding the flow changes everything
&lt;/h2&gt;

&lt;p&gt;Once you start building real projects, you slowly begin to understand the &lt;strong&gt;flow of things&lt;/strong&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How data moves
&lt;/li&gt;
&lt;li&gt;How systems talk to each other
&lt;/li&gt;
&lt;li&gt;How one small decision affects many parts of the system
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And when you understand the flow, something interesting happens.&lt;/p&gt;

&lt;p&gt;You start seeing &lt;strong&gt;loop holes&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You notice:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;unnecessary steps
&lt;/li&gt;
&lt;li&gt;repeated logic
&lt;/li&gt;
&lt;li&gt;bad abstractions
&lt;/li&gt;
&lt;li&gt;fragile parts of the system
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is where thinking like an engineer truly starts.&lt;/p&gt;

&lt;p&gt;Not at the keyboard.&lt;br&gt;&lt;br&gt;
Not in tutorials.&lt;br&gt;&lt;br&gt;
But &lt;strong&gt;in your head&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Final thought
&lt;/h2&gt;

&lt;p&gt;Thinking like an engineer is not about being smart.&lt;br&gt;&lt;br&gt;
It’s about being:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;curious enough to face problems
&lt;/li&gt;
&lt;li&gt;patient enough to understand them
&lt;/li&gt;
&lt;li&gt;brave enough to experiment
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So:&lt;/p&gt;

&lt;p&gt;Build more.&lt;br&gt;&lt;br&gt;
Break more.&lt;br&gt;&lt;br&gt;
Feel the pain.&lt;/p&gt;

&lt;p&gt;That’s how engineers are made.&lt;/p&gt;

</description>
      <category>development</category>
      <category>programming</category>
      <category>webdev</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>Harsh Sharma</dc:creator>
      <pubDate>Sat, 20 Dec 2025 11:20:11 +0000</pubDate>
      <link>https://dev.to/teche_harsh/-46b8</link>
      <guid>https://dev.to/teche_harsh/-46b8</guid>
      <description></description>
    </item>
  </channel>
</rss>
