<?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: Mahak</title>
    <description>The latest articles on DEV Community by Mahak (@mahakti).</description>
    <link>https://dev.to/mahakti</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%2F3267762%2F75cd2b65-7163-4a8f-bca9-e5da6a132bdb.jpg</url>
      <title>DEV Community: Mahak</title>
      <link>https://dev.to/mahakti</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mahakti"/>
    <language>en</language>
    <item>
      <title>How to learn tech after college step-by-step.</title>
      <dc:creator>Mahak</dc:creator>
      <pubDate>Mon, 16 Jun 2025 07:09:30 +0000</pubDate>
      <link>https://dev.to/mahakti/how-to-learn-tech-after-college-step-by-step-4lm2</link>
      <guid>https://dev.to/mahakti/how-to-learn-tech-after-college-step-by-step-4lm2</guid>
      <description>&lt;p&gt;I didn't grow up writing code or dreaming about a career in tech. In fact, I come from a commerce background — business studies, accountancy, and zero formal training in computer science. But here I am today, writing code, building websites, and shaping a new identity as a web developer.&lt;/p&gt;

&lt;p&gt;In this post, I’ll walk you through how I transitioned from commerce to tech, what tools and resources I used, and how I’m growing in the world of front-end development — all without a CS degree.&lt;/p&gt;

&lt;p&gt;💻 &lt;strong&gt;Why I Chose Tech Over Commerce&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Though I studied commerce, I always found myself curious about technology. I was fascinated by websites and apps, and one day I finally asked myself — what if I could build these myself?&lt;/p&gt;

&lt;p&gt;That question sparked my shift. I didn’t enroll in any bootcamp or formal degree. Instead, I decided to learn independently and started from the basics.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmyz7fetlrygop8sfptav.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmyz7fetlrygop8sfptav.png" alt="Image description" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🚀 My Learning Path (Self-Taught Roadmap)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here's how I broke into web development:&lt;/p&gt;

&lt;p&gt;🔹 HTML &amp;amp; CSS — The Starting Line&lt;br&gt;
I began by learning HTML and CSS through YouTube and free online resources. I built static web pages and personal projects, experimenting with layout and design.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!-- My first HTML snippet --&amp;gt;
&amp;lt;section&amp;gt;
  &amp;lt;h1&amp;gt;Hello World!&amp;lt;/h1&amp;gt;
  &amp;lt;p&amp;gt;This is my first step into web development.&amp;lt;/p&amp;gt;
&amp;lt;/section&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🔹 Version Control with GitHub&lt;/strong&gt;&lt;br&gt;
Learning Git and GitHub was a game changer. I started hosting my portfolio, learning about commits, branches, and contributing to projects.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git init
git add .
git commit -m "First portfolio push"
git remote add origin &amp;lt;repo-url&amp;gt;
git push -u origin main

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🔹 Next Up: JavaScript&lt;/strong&gt;&lt;br&gt;
Once I was comfortable with HTML/CSS, I moved to JavaScript to make things interactive. While I’m still learning JS, I’ve built small projects like a to-do list and simple form validation.&lt;/p&gt;

&lt;p&gt;**🛠 Tools &amp;amp; Platforms I Use&lt;/p&gt;

&lt;p&gt;Code Editor: VS Code**&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Version Control: Git &amp;amp; GitHub&lt;/li&gt;
&lt;li&gt;Learning Platforms: FreeCodeCamp, Coursera, YouTube&lt;/li&gt;
&lt;li&gt;Blogging: Hashnode, Dev.to (now!)&lt;/li&gt;
&lt;li&gt;Portfolio Hosting: GitHub Pages&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;🌱 What I'm Working On Now&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I'm actively working on real-world projects including:&lt;/li&gt;
&lt;li&gt;A student resource website (HTML/CSS/JavaScript)&lt;/li&gt;
&lt;li&gt;Shopify store customization&lt;/li&gt;
&lt;li&gt;Responsive UI components with Bootstrap&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;🔁 Lessons Learned Along the Way&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You don’t need a CS degree to break into tech — consistency matters more.&lt;/li&gt;
&lt;li&gt;Real projects &amp;gt; tutorials. Apply what you learn.&lt;/li&gt;
&lt;li&gt;The developer community (like on Dev.to) is super helpful and motivating.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;📢 Final Thoughts&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Switching from commerce to coding was scary, but every line of code I write confirms that I made the right choice.&lt;/p&gt;

&lt;p&gt;If you're from a non-tech background and wondering if it's too late or too hard — let this be your sign: You can absolutely do it.&lt;/p&gt;

&lt;p&gt;If you want to read my full story, here's my original post on Hashnode:&lt;br&gt;
👉 &lt;a href="https://the-techie.hashnode.dev/how-i-switched-from-commerce-to-tech-my-self-taught-journey" rel="noopener noreferrer"&gt;How I Switched from Commerce to Tech: My Self-Taught Journey&lt;/a&gt;&lt;/p&gt;

</description>
      <category>career</category>
      <category>selftaught</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
