<?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: IamAdhitya</title>
    <description>The latest articles on DEV Community by IamAdhitya (@iamadhitya).</description>
    <link>https://dev.to/iamadhitya</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%2F3679414%2Fd7430a34-ea9f-4372-ae53-41d41fbe250d.png</url>
      <title>DEV Community: IamAdhitya</title>
      <link>https://dev.to/iamadhitya</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iamadhitya"/>
    <language>en</language>
    <item>
      <title>I Built 7 AI Apps in College — Here's What Nobody Tells You</title>
      <dc:creator>IamAdhitya</dc:creator>
      <pubDate>Tue, 02 Jun 2026 14:46:47 +0000</pubDate>
      <link>https://dev.to/iamadhitya/i-built-7-ai-apps-in-college-heres-what-nobody-tells-you-2ojl</link>
      <guid>https://dev.to/iamadhitya/i-built-7-ai-apps-in-college-heres-what-nobody-tells-you-2ojl</guid>
      <description>&lt;p&gt;Most students are still figuring out their first to-do app tutorial when they enter college. I decided to build a company instead.&lt;/p&gt;

&lt;p&gt;I'm Adhitya, a B.Tech student at IITRAM, Ahmedabad. In my first two years of college, I built and shipped &lt;strong&gt;7 live, monetized AI applications&lt;/strong&gt; under my indie studio &lt;strong&gt;Rewrite Labs&lt;/strong&gt; — plus 7 open source libraries used by other developers.&lt;/p&gt;

&lt;p&gt;No CS degree required. No internship at a big tech company. Just a laptop, free tiers of incredible tools, and an obsession with shipping.&lt;/p&gt;

&lt;p&gt;Here's everything I wish someone had told me before I started.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. The Stack That Actually Works for Solo AI App Builders
&lt;/h2&gt;

&lt;p&gt;Before I talk about lessons, here's the exact stack I use across all my apps. I landed on this after painful trial and error and I haven't needed to change it since:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Layer&lt;/th&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;Why&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Frontend&lt;/td&gt;
&lt;td&gt;React + Vite + Tailwind CSS&lt;/td&gt;
&lt;td&gt;Fast dev, huge ecosystem&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Auth&lt;/td&gt;
&lt;td&gt;Clerk&lt;/td&gt;
&lt;td&gt;10-minute auth setup, handles JWTs&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Database&lt;/td&gt;
&lt;td&gt;Supabase&lt;/td&gt;
&lt;td&gt;Postgres with a clean dashboard, free tier is generous&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AI&lt;/td&gt;
&lt;td&gt;Groq API&lt;/td&gt;
&lt;td&gt;Blazing fast inference, free tier, llama-3.3-70b is incredible&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Payments&lt;/td&gt;
&lt;td&gt;Razorpay&lt;/td&gt;
&lt;td&gt;Best option for India, subscription plans supported&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Deployment&lt;/td&gt;
&lt;td&gt;Vercel&lt;/td&gt;
&lt;td&gt;One command deploy, serverless functions built in&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;This stack lets me go from idea to live, paying app in &lt;strong&gt;under a week&lt;/strong&gt;. Every tool has a free tier. Every tool has great documentation. There's no reason to use anything more complex when you're building solo.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. Groq Will Change How You Think About AI Apps
&lt;/h2&gt;

&lt;p&gt;Most people default to OpenAI. I did too, for about five minutes.&lt;/p&gt;

&lt;p&gt;Then I tried &lt;strong&gt;Groq&lt;/strong&gt; — and it felt like switching from dial-up to fiber.&lt;/p&gt;

&lt;p&gt;Groq runs LLM inference on custom hardware called LPUs (Language Processing Units). The result? Responses that stream so fast they feel instant. For a chat app like my AI companion &lt;strong&gt;Nura&lt;/strong&gt;, this is the difference between a product that &lt;em&gt;feels alive&lt;/em&gt; and one that feels like it's thinking too hard.&lt;/p&gt;

&lt;p&gt;The API is almost identical to OpenAI's, so migration is trivial. And the free tier is genuinely usable — not just a "taste."&lt;/p&gt;

&lt;p&gt;If you're building any AI app today, start with Groq. You can always switch models later.&lt;/p&gt;




&lt;h2&gt;
  
  
  3. Ship Ugly. Polish Later. Seriously.
&lt;/h2&gt;

&lt;p&gt;My first app took way too long because I kept polishing before shipping.&lt;/p&gt;

&lt;p&gt;The brutal truth: &lt;strong&gt;nobody is looking at your app until you tell them to.&lt;/strong&gt; That means every hour you spend pixel-perfecting before your first 10 users is an hour wasted.&lt;/p&gt;

&lt;p&gt;My current process:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Build the core feature loop in 2–3 days&lt;/li&gt;
&lt;li&gt;Deploy it live (even if it looks rough)&lt;/li&gt;
&lt;li&gt;Get 5 real people to use it&lt;/li&gt;
&lt;li&gt;Fix what breaks&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;Then&lt;/em&gt; polish&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The version of your app you ship first will look nothing like version 1.0. Stop treating the MVP like a portfolio piece.&lt;/p&gt;




&lt;h2&gt;
  
  
  4. Auth is Not Your Problem — Stop Building It
&lt;/h2&gt;

&lt;p&gt;Early on I wasted two days building a custom authentication system. Session tokens, password hashing, email verification — the works.&lt;/p&gt;

&lt;p&gt;Then I discovered &lt;strong&gt;Clerk&lt;/strong&gt; and deleted all of it.&lt;/p&gt;

&lt;p&gt;Clerk gives you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Email + social login&lt;/li&gt;
&lt;li&gt;JWT verification for your API routes&lt;/li&gt;
&lt;li&gt;Pre-built React components&lt;/li&gt;
&lt;li&gt;User management dashboard&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Setup takes literally 10 minutes. It's free for the first 10,000 monthly active users. There is zero scenario where you should be hand-rolling auth as a solo builder in 2025.&lt;/p&gt;

&lt;p&gt;Same principle applies everywhere — use Supabase instead of building your own database layer, use Vercel instead of managing your own server. Your job is to build the &lt;em&gt;product&lt;/em&gt;, not the infrastructure.&lt;/p&gt;




&lt;h2&gt;
  
  
  5. Monetization Is Easier Than You Think (If You Start Early)
&lt;/h2&gt;

&lt;p&gt;I put a paywall in my second app. It felt bold, almost arrogant — who would pay for something a college student built?&lt;/p&gt;

&lt;p&gt;Turns out: people who find it valuable.&lt;/p&gt;

&lt;p&gt;Here's what I've learned about pricing AI apps as a student:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Start charging from day one.&lt;/strong&gt; A free plan is fine, but have a paid tier. It forces you to build something worth paying for.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Subscriptions beat one-time payments.&lt;/strong&gt; Recurring revenue means you can predict growth. Razorpay makes this straightforward with their subscription plans API.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The paywall is actually a feature.&lt;/strong&gt; It filters out users who aren't serious. Your paying users give better feedback and stick around longer.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Don't wait until your app is "ready" to think about money. The business model should be part of the design from the start.&lt;/p&gt;




&lt;h2&gt;
  
  
  6. Open Source Is Your Best Marketing
&lt;/h2&gt;

&lt;p&gt;While my apps are private (protecting the IP), I extracted reusable pieces into &lt;strong&gt;7 open source libraries&lt;/strong&gt; — things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;react-premium-gate&lt;/code&gt; — Razorpay subscription paywall components&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;react-macro-rings&lt;/code&gt; — animated SVG nutrition progress rings&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;react-toast-native&lt;/code&gt; — lightweight toast notifications&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;groq-chain&lt;/code&gt; — Python LLM chaining without LangChain&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;llm-router&lt;/code&gt; — routes prompts to the right LLM by complexity and cost&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each library is a tutorial disguised as code. Developers find them, use them, and discover who built them. It's the most authentic form of marketing there is — you're not selling anything, you're just being useful.&lt;/p&gt;

&lt;p&gt;If you're building apps, look for the pieces you keep rebuilding and open source them. It builds your GitHub profile, your reputation, and your network simultaneously.&lt;/p&gt;




&lt;h2&gt;
  
  
  7. The Thing Nobody Tells You About Building in College
&lt;/h2&gt;

&lt;p&gt;Everyone focuses on the technical side. The harder part nobody talks about is the &lt;strong&gt;mental game&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You'll have weeks where nothing works. Where a bug takes three days to find and it's a single missing &lt;code&gt;await&lt;/code&gt;. Where you ship something and nobody cares. Where your college workload collides with a critical bug in production.&lt;/p&gt;

&lt;p&gt;What keeps you going isn't motivation — motivation is unreliable. What keeps you going is having built the habit of showing up and shipping &lt;em&gt;anyway&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Some things that helped me:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Build in public&lt;/strong&gt; (even quietly). Writing about what you're building creates accountability.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ship something every week&lt;/strong&gt;, even if it's small. Momentum compounds.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Separate your identity from the product.&lt;/strong&gt; Your app failing doesn't mean you failed. It means you learned something that cost you nothing but time.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The builders who win aren't the smartest. They're the ones who kept going when it stopped being fun.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I'm Building Next
&lt;/h2&gt;

&lt;p&gt;Rewrite Labs is still growing. The app suite is expanding. The OSS library count is going up.&lt;/p&gt;

&lt;p&gt;If you're a student reading this wondering whether to start — start. The tools have never been cheaper, the knowledge has never been more accessible, and the market has never been more open to AI products.&lt;/p&gt;

&lt;p&gt;You don't need permission. You just need to ship.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Follow along — I'll be posting technical deep-dives, build logs, and honest lessons from the trenches right here on Dev.to.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>react</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>The Shadow Syllabus: How I stopped relying on my college degree (Case Study</title>
      <dc:creator>IamAdhitya</dc:creator>
      <pubDate>Thu, 08 Jan 2026 15:45:26 +0000</pubDate>
      <link>https://dev.to/iamadhitya/the-shadow-syllabus-how-i-stopped-relying-on-my-college-degree-case-study-1pbc</link>
      <guid>https://dev.to/iamadhitya/the-shadow-syllabus-how-i-stopped-relying-on-my-college-degree-case-study-1pbc</guid>
      <description>&lt;p&gt;The Double Life of an Engineering Student...&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%2F38002y57o6hby7kq6tsj.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%2F38002y57o6hby7kq6tsj.png" alt="Rewrite Labs Workstation - Building in the Dark" width="800" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The syllabus ends at 5:00 PM. My real education starts at 8:00 PM.&lt;/p&gt;

&lt;p&gt;I am currently a full-time engineering student. &lt;br&gt;
I attend the lectures.&lt;br&gt;
I respect the degree. &lt;br&gt;
But I stopped expecting the university to teach me everything.&lt;/p&gt;

&lt;p&gt;In my manual, The Rewrite, I analyze a case study named "Zahir" (Chapter 5). &lt;/p&gt;

&lt;p&gt;He realized early on that a degree gives you safety, but self-education gives you leverage. &lt;/p&gt;

&lt;p&gt;He didn't quit college. &lt;/p&gt;

&lt;p&gt;He just added a second shift.&lt;br&gt;
Day Shift: Thermodynamics, Assignments, Attendance. (The Script).&lt;br&gt;
Night Shift: Psychology, Systems Engineering, Building Products. (The Rewrite).&lt;/p&gt;

&lt;p&gt;I am living this "Double Life" right now. When I look around the classroom, I see many students waiting to be spoon-fed skills that will get them a job. But the market doesn't pay for what you were taught. &lt;/p&gt;

&lt;p&gt;It pays for what you built while no one was watching.&lt;/p&gt;

&lt;p&gt;If you feel like the curriculum is too slow for your ambition, don't blame the college. Build your own Shadow Syllabus.&lt;/p&gt;

&lt;p&gt;Read Chapter 5 in "The Rewrite" (v1.0) here in our website - &lt;a href="https://rewrite-labs.netlify.app/" rel="noopener noreferrer"&gt;https://rewrite-labs.netlify.app/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>career</category>
      <category>productivity</category>
      <category>beginners</category>
      <category>discuss</category>
    </item>
    <item>
      <title>The Syntax Trap: Why 2026 Belongs to Architects, Not Typists</title>
      <dc:creator>IamAdhitya</dc:creator>
      <pubDate>Fri, 26 Dec 2025 09:54:11 +0000</pubDate>
      <link>https://dev.to/iamadhitya/the-syntax-trap-why-2026-belongs-to-architects-not-typists-203m</link>
      <guid>https://dev.to/iamadhitya/the-syntax-trap-why-2026-belongs-to-architects-not-typists-203m</guid>
      <description>&lt;p&gt;&lt;strong&gt;Welcome to the first edition of Code &amp;amp; Context. Every week, I break down the intersection of Engineering, AI, and Human Psychology.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you walk into any Computer Science lab in India right now, you will see the same thing: Students furiously memorizing syntax.&lt;/p&gt;

&lt;p&gt;They are memorizing matplotlib libraries. They are stressing over missing semicolons in C++. They are treating coding like a vocabulary test.&lt;/p&gt;

&lt;p&gt;As a CS student myself, I understand the pressure. But as someone who has spent the last year analyzing the AI landscape (and recently being recognized as a Top AI Creator for it), I have a hard truth to share:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;In 2026, Syntax will be the cheapest commodity on the market.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;We are entering a new era of software development. If your primary skill is "I know how to write a for loop without looking at documentation," you are in trouble.&lt;/p&gt;

&lt;p&gt;Here is why the market is shifting, and what you need to do about it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The "Copilot" Reality&lt;/strong&gt;&lt;br&gt;
Three years ago, writing a boilerplate API in Python took 20 minutes. Today, with tools like GitHub Copilot and Cursor, it takes 20 seconds.&lt;/p&gt;

&lt;p&gt;AI has commoditized the "How." It can write the code, refactor the code, and even write the test cases for the code.&lt;/p&gt;

&lt;p&gt;As the graph of AI capability goes up, the value of pure syntax memorization goes down. But notice the other line? That is Context.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Rise of the "Architect"&lt;/strong&gt;&lt;br&gt;
If AI handles the syntax, what is left for us humans? The answer is Context.&lt;/p&gt;

&lt;p&gt;The developers who will dominate in 2026 aren't the ones who type the fastest. They are the ones who can answer these three questions:&lt;/p&gt;

&lt;p&gt;The Architecture Question: "AI can write the function, but where does this function fit in the microservices architecture?"&lt;br&gt;
The Logic Question: "The model gave me three solutions. Which one is the most scalable, and which one introduces a security vulnerability?"&lt;br&gt;
The Human Question: "How do I explain this technical constraint to a non-technical founder?"&lt;/p&gt;

&lt;p&gt;This is why I named this newsletter Code &amp;amp; Context.&lt;/p&gt;

&lt;p&gt;The "Code" is the easy part. The "Context" is the leverage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Stop Being a Compiler&lt;/strong&gt;&lt;br&gt;
My advice to my fellow students and developers is simple: Don't stop coding. But stop learning like a compiler.&lt;/p&gt;

&lt;p&gt;Don't just memorize the Pandas library. Learn data storytelling.&lt;br&gt;
Don't just copy-paste the Neural Network code. Understand the math behind the weights and biases.&lt;br&gt;
Don't just build the app. Document the decision-making process.&lt;/p&gt;

&lt;p&gt;The future doesn't belong to the person who writes the most lines of code. It belongs to the person who knows why those lines were written in the first place.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What to Expect from This Newsletter&lt;/strong&gt;&lt;br&gt;
I am M. Adhitya. I operate at the intersection of hard engineering and human narrative.&lt;/p&gt;

&lt;p&gt;In the coming weeks, Code &amp;amp; Context will cover:&lt;/p&gt;

&lt;p&gt;Deep Dives: How LLMs actually "think" (without the jargon).&lt;br&gt;
System Design: Building scalable architectures in the age of AI Agents.&lt;br&gt;
Tech Strategy: How to build a personal brand as a developer.&lt;/p&gt;

&lt;p&gt;If you are ready to move from being a Typist to being an Architect, you’re in the right place.&lt;/p&gt;

&lt;p&gt;See you next week.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
