<?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>Forem: Ashwinhegde19</title>
    <description>The latest articles on Forem by Ashwinhegde19 (@ashwinhegde19).</description>
    <link>https://forem.com/ashwinhegde19</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%2F1119248%2Fcf12895a-c354-44f3-b3a7-69f269422b82.jpg</url>
      <title>Forem: Ashwinhegde19</title>
      <link>https://forem.com/ashwinhegde19</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ashwinhegde19"/>
    <language>en</language>
    <item>
      <title>I won my first hackathon by building something I barely understood</title>
      <dc:creator>Ashwinhegde19</dc:creator>
      <pubDate>Fri, 13 Mar 2026 16:34:08 +0000</pubDate>
      <link>https://forem.com/ashwinhegde19/i-won-my-first-hackathon-by-building-something-i-barely-understood-52l3</link>
      <guid>https://forem.com/ashwinhegde19/i-won-my-first-hackathon-by-building-something-i-barely-understood-52l3</guid>
      <description>&lt;p&gt;A few weeks ago I was using OpenClaw to set reminders and run basic cron jobs.&lt;/p&gt;

&lt;p&gt;That's it. Nothing impressive.&lt;/p&gt;

&lt;p&gt;Then I walked into the HSRFC x OpenClaw Builders event in Bengaluru. 4 hours, real constraints, ship something or go home.&lt;/p&gt;

&lt;p&gt;I had never built a complete agent before. No plan. Just enough curiosity from weeks of tinkering to figure things out as I went.&lt;/p&gt;

&lt;p&gt;What I built&lt;br&gt;
A GitHub Issue Resolver — an autonomous agent that discovers, ranks, and analyzes open GitHub issues. Fully local, no cloud, no servers. Everything runs on your own machine.&lt;/p&gt;

&lt;p&gt;The idea was simple: point it at a repo, and it would:&lt;/p&gt;

&lt;p&gt;Pull open issues&lt;br&gt;
Rank them by complexity and impact&lt;br&gt;
Suggest fixes with context from the actual codebase&lt;br&gt;
Nothing groundbreaking on paper. But getting an agent to do all of that reliably, in 4 hours, with tools I'd barely used before — that was the real challenge.&lt;/p&gt;

&lt;p&gt;What actually happened&lt;br&gt;
Did it break multiple times? Yes.&lt;/p&gt;

&lt;p&gt;Was I debugging in the last 20 minutes? Also yes.&lt;/p&gt;

&lt;p&gt;There's a specific kind of stress that comes from knowing your demo is in 15 minutes and your agent just threw an error it hasn't thrown before. You don't think clearly. You just try things faster.&lt;/p&gt;

&lt;p&gt;The thing that saved me wasn't some clever architecture decision. It was that I'd spent enough time tinkering with OpenClaw beforehand that I had intuition for where things go wrong. Not knowledge — intuition. There's a difference.&lt;/p&gt;

&lt;p&gt;The lesson&lt;br&gt;
Still took first place.&lt;/p&gt;

&lt;p&gt;But the lesson wasn't about the win. It was this — you don't need to know everything before you start. You just need enough curiosity to keep going when it breaks.&lt;/p&gt;

&lt;p&gt;I think a lot of developers (myself included) wait too long to build things. We want to understand the full picture first. Read the docs. Watch the tutorials. Make sure we won't look stupid.&lt;/p&gt;

&lt;p&gt;But the people who build interesting things are the ones who start before they're ready and figure it out along the way.&lt;/p&gt;

&lt;p&gt;What's next&lt;br&gt;
The project still needs work. The ranking algorithm is basic, the error handling is rough, and there are edge cases I haven't touched. But it's real, it runs, and it's on ClawHub.&lt;/p&gt;

&lt;p&gt;I'll probably keep hacking on it. Maybe write about the technical side in a follow-up post.&lt;/p&gt;

&lt;p&gt;Built with OpenClaw 🦞&lt;/p&gt;

</description>
      <category>openclaw</category>
      <category>ai</category>
      <category>hackathon</category>
      <category>buildinpublic</category>
    </item>
    <item>
      <title>The AI Learning Trap: Why Copy-Pasting Code Is Costing You</title>
      <dc:creator>Ashwinhegde19</dc:creator>
      <pubDate>Fri, 30 Jan 2026 08:56:01 +0000</pubDate>
      <link>https://forem.com/ashwinhegde19/the-ai-learning-trap-why-copy-pasting-code-is-costing-you-44jl</link>
      <guid>https://forem.com/ashwinhegde19/the-ai-learning-trap-why-copy-pasting-code-is-costing-you-44jl</guid>
      <description>&lt;p&gt;I just read a wild study from Anthropic. They had developers learn a new Python library—half with AI help, half without.&lt;/p&gt;

&lt;p&gt;The AI group finished &lt;strong&gt;2 minutes faster&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;But scored &lt;strong&gt;17% lower&lt;/strong&gt; on the test. Nearly two letter grades.&lt;/p&gt;

&lt;p&gt;Here's what hit me: the biggest gap wasn't writing code. It was &lt;strong&gt;debugging&lt;/strong&gt;. You know, that thing you need when AI hallucinates a API call.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What Separated the Winners&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The devs who &lt;em&gt;did&lt;/em&gt; learn didn't use AI less. They used it &lt;em&gt;differently&lt;/em&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Asked "why does this work?" after getting code&lt;/li&gt;
&lt;li&gt;Requested explanations alongside solutions
&lt;/li&gt;
&lt;li&gt;Posed conceptual questions while coding solo&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The ones who failed treated AI like Stack Overflow on steroids—copy, paste, pray.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Real Talk&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;AI is incredible for stuff you know. Anthropic's own data shows 80% speedups on familiar tasks.&lt;/p&gt;

&lt;p&gt;But learning? That's different. Learning requires friction. Getting stuck. That 20-minute rabbit hole that finally clicks.&lt;/p&gt;

&lt;p&gt;AI skips the rabbit hole. You get the code, miss the lesson.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;My Take&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I'm not ditching Claude. But I'm changing how I use it.&lt;/p&gt;

&lt;p&gt;Generate → &lt;strong&gt;Then&lt;/strong&gt; comprehend.&lt;/p&gt;

&lt;p&gt;Ask one extra question. Type it out yourself once. Suffer through the error message before asking for help.&lt;/p&gt;

&lt;p&gt;Your debugging skills are the ceiling on how much you can trust AI. Don't let that ceiling drop.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;What about you? Has AI made you faster, or has it made you think less?&lt;/em&gt;&lt;/p&gt;




</description>
      <category>programming</category>
      <category>ai</category>
      <category>productivity</category>
      <category>learning</category>
    </item>
    <item>
      <title>Why "Just Coding" Won't Save You in 2026 (My Take on Akshay Saini's Advice)</title>
      <dc:creator>Ashwinhegde19</dc:creator>
      <pubDate>Sun, 28 Dec 2025 17:57:50 +0000</pubDate>
      <link>https://forem.com/ashwinhegde19/why-just-coding-wont-save-you-in-2026-my-take-on-akshay-sainis-advice-5bp7</link>
      <guid>https://forem.com/ashwinhegde19/why-just-coding-wont-save-you-in-2026-my-take-on-akshay-sainis-advice-5bp7</guid>
      <description>&lt;p&gt;I recently watched a video by &lt;strong&gt;Akshay Saini&lt;/strong&gt; titled &lt;em&gt;"The Software Engineer Who Will WIN in 2026,"&lt;/em&gt; and honestly, it hit home.&lt;/p&gt;

&lt;p&gt;As developers, we often get stuck in the loop of learning the "next new framework," but Akshay points out a hard truth: &lt;strong&gt;Coding itself is no longer the differentiator.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;With AI models writing cleaner, faster code every day, the bar has shifted, but here are my top takeaways and why I think he’s 100% right.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. The Rise of the "Full Stack AI Engineer"
&lt;/h2&gt;

&lt;p&gt;For years, we've categorized ourselves: &lt;em&gt;"I'm a Frontend Dev"&lt;/em&gt; or &lt;em&gt;"I'm a Backend Dev."&lt;/em&gt; Akshay argues that in 2026, those silos will be dead.&lt;/p&gt;

&lt;p&gt;Because AI can handle the heavy lifting of syntax and boilerplate, we need to become &lt;strong&gt;orchestrators&lt;/strong&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Frontend devs:&lt;/strong&gt; You need to understand how the backend and deployment pipelines work.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Backend devs:&lt;/strong&gt; You need to understand UI/UX and client-side logic.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal isn't to know everything by heart, but to use AI to bridge your skill gaps and build the &lt;em&gt;whole&lt;/em&gt; product. As he said, we need to use AI to &lt;strong&gt;10x our productivity&lt;/strong&gt;, not just to write a function faster.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Stop Closing Tickets, Start Taking Ownership
&lt;/h2&gt;

&lt;p&gt;This was the point that resonated with me the most. We often measure our day by how many Jira tickets we moved to "Done."&lt;/p&gt;

&lt;p&gt;But in a world where code is cheap, &lt;strong&gt;value is expensive&lt;/strong&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"If your code is not creating value, it's just garbage." — Akshay Saini&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The engineers who will "win" in 2026 are the ones who care about the product outcome, not just the code output. We have to move from being "task completers" to "problem solvers."&lt;/p&gt;

&lt;h2&gt;
  
  
  3. System Design is the New King
&lt;/h2&gt;

&lt;p&gt;If AI is writing the implementation, what is left for us? &lt;strong&gt;Decisions.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;System Design is becoming the most critical skill because AI can suggest five different ways to build a feature, but it can't always tell you which one is right for &lt;em&gt;your&lt;/em&gt; specific constraints, security needs, or scale.&lt;/p&gt;

&lt;p&gt;The human element is now about &lt;strong&gt;architectural trade-offs&lt;/strong&gt;. We move from writing the "how" to deciding the "what" and "why."&lt;/p&gt;

&lt;h2&gt;
  
  
  My Verdict
&lt;/h2&gt;

&lt;p&gt;I've felt this shift happening for a while. It’s scary to think that "being a good coder" isn't enough anymore, but it's also liberating. It means we can stop stressing over memorizing syntax and start focusing on building cool, valuable things.&lt;/p&gt;

&lt;p&gt;I’m planning to pivot my learning path to focus more on &lt;strong&gt;System Design&lt;/strong&gt; and &lt;strong&gt;AI orchestration&lt;/strong&gt; rather than just deep-diving into another JS framework.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What do you think? Is AI making pure coding skills obsolete, or is this just hype?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Let me know in the comments!&lt;/p&gt;

</description>
      <category>career</category>
      <category>productivity</category>
      <category>ai</category>
      <category>softwareengineering</category>
    </item>
  </channel>
</rss>
