<?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: Syed Yawer Ahmed</title>
    <description>The latest articles on DEV Community by Syed Yawer Ahmed (@syedyawer).</description>
    <link>https://dev.to/syedyawer</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%2F3867817%2Fb8dbdaac-d531-4f11-8aa6-594537c081d3.jpg</url>
      <title>DEV Community: Syed Yawer Ahmed</title>
      <link>https://dev.to/syedyawer</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/syedyawer"/>
    <language>en</language>
    <item>
      <title>Dotafury.gg - Dota 2 Game Performance and Statistics</title>
      <dc:creator>Syed Yawer Ahmed</dc:creator>
      <pubDate>Wed, 08 Apr 2026 13:27:25 +0000</pubDate>
      <link>https://dev.to/syedyawer/dotafurygg-dota-2-game-performance-and-statistics-nh6</link>
      <guid>https://dev.to/syedyawer/dotafurygg-dota-2-game-performance-and-statistics-nh6</guid>
      <description>&lt;h2&gt;
  
  
  From UX Designer to Builder: How AI Helped Me Finally Ship My Own Platform
&lt;/h2&gt;

&lt;p&gt;I recently built &lt;a href="https://dotafury.gg" rel="noopener noreferrer"&gt;https://dotafury.gg&lt;/a&gt;&lt;br&gt;
 — a Dota 2 analytics platform.&lt;/p&gt;

&lt;p&gt;But this post isn’t about the product.&lt;/p&gt;

&lt;p&gt;It’s about something more important:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;How a UX designer with limited dev control finally started building real systems using AI.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  ⚠️ The Problem I Always Had
&lt;/h2&gt;

&lt;p&gt;For years, I lived in this gap:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I could design systems&lt;/li&gt;
&lt;li&gt;I could imagine flows&lt;/li&gt;
&lt;li&gt;I could see product opportunities&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But I couldn’t fully build them.&lt;/p&gt;

&lt;p&gt;Everything depended on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;developers&lt;/li&gt;
&lt;li&gt;timelines&lt;/li&gt;
&lt;li&gt;priorities&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And a lot of ideas never made it past Figma.&lt;/p&gt;

&lt;h2&gt;
  
  
  🤖 Then Came AI (And “Vibe Coding”)
&lt;/h2&gt;

&lt;p&gt;At first, it felt like magic.&lt;/p&gt;

&lt;p&gt;I could say:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;build this page&lt;/li&gt;
&lt;li&gt;create this component&lt;/li&gt;
&lt;li&gt;connect this logic&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;…and it actually worked.&lt;/p&gt;

&lt;p&gt;For the first time, I wasn’t just designing.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;I was building.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  💣 Reality Check: Vibe Coding Breaks Fast
&lt;/h2&gt;

&lt;p&gt;Very quickly, things got messy:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;duplicated logic&lt;/li&gt;
&lt;li&gt;unclear structure&lt;/li&gt;
&lt;li&gt;random patterns&lt;/li&gt;
&lt;li&gt;fragile code&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s when I learned:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Working code ≠ a working system&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;AI was fast…&lt;br&gt;
but it was also amplifying my lack of structure.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧠 The Shift That Changed Everything
&lt;/h2&gt;

&lt;p&gt;I stopped asking:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Build this feature”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And started asking:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“What is the system behind this?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That changed how I worked with AI completely.&lt;/p&gt;

&lt;h2&gt;
  
  
  🏗️ My Actual Workflow (That Worked)
&lt;/h2&gt;

&lt;p&gt;Instead of prompting randomly, I moved to:&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Define the system first
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;What are the layers?&lt;/li&gt;
&lt;li&gt;What owns what?&lt;/li&gt;
&lt;li&gt;What should be cached?&lt;/li&gt;
&lt;li&gt;What should NOT hit APIs repeatedly?&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  2. Enforce structure
&lt;/h2&gt;

&lt;p&gt;I locked myself into:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;UI → Services → Integrations&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;No shortcuts.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Use AI in small, controlled steps
&lt;/h2&gt;

&lt;p&gt;Instead of:&lt;/p&gt;

&lt;p&gt;❌ “Build player page”&lt;/p&gt;

&lt;p&gt;I did:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create data service&lt;/li&gt;
&lt;li&gt;Add caching logic&lt;/li&gt;
&lt;li&gt;Then build UI&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🤝 Where Codex Helped
&lt;/h2&gt;

&lt;p&gt;I used Codex as a collaborator, not a magician:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;scaffolding structure&lt;/li&gt;
&lt;li&gt;refactoring&lt;/li&gt;
&lt;li&gt;implementing scoped tasks&lt;/li&gt;
&lt;li&gt;validating patterns&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It worked best when I gave it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;constraints&lt;/li&gt;
&lt;li&gt;context&lt;/li&gt;
&lt;li&gt;clear boundaries&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🔁 Trial &amp;amp; Error Was the Real Teacher
&lt;/h2&gt;

&lt;p&gt;This wasn’t smooth.&lt;/p&gt;

&lt;p&gt;There was a lot of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;rethinking&lt;/li&gt;
&lt;li&gt;rebuilding&lt;/li&gt;
&lt;li&gt;simplifying&lt;/li&gt;
&lt;li&gt;undoing bad decisions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sometimes the problem wasn’t code.&lt;/p&gt;

&lt;p&gt;It was unclear thinking.&lt;/p&gt;

&lt;h2&gt;
  
  
  🎯 My UX Background Became a Superpower
&lt;/h2&gt;

&lt;p&gt;Here’s what surprised me:&lt;/p&gt;

&lt;p&gt;UX thinking translated really well into building.&lt;/p&gt;

&lt;p&gt;I already understood:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;flows&lt;/li&gt;
&lt;li&gt;edge cases&lt;/li&gt;
&lt;li&gt;user intent&lt;/li&gt;
&lt;li&gt;system behavior&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AI just gave me the missing layer:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;execution&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  🔥 The Real Unlock
&lt;/h2&gt;

&lt;p&gt;Before this, my ideas stayed in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;documents&lt;/li&gt;
&lt;li&gt;designs&lt;/li&gt;
&lt;li&gt;conversations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now I can go from:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;idea → system → working product&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That changes everything.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧪 What I Learned
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;AI doesn’t replace thinking — it exposes it&lt;/li&gt;
&lt;li&gt;Vibe coding helps you start, not scale&lt;/li&gt;
&lt;li&gt;Structure matters more than speed&lt;/li&gt;
&lt;li&gt;Small steps beat big prompts&lt;/li&gt;
&lt;li&gt;UX + AI is a powerful combination&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🚀 Final Thought
&lt;/h2&gt;

&lt;p&gt;AI didn’t make me an expert overnight.&lt;/p&gt;

&lt;p&gt;It gave me something more valuable:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;the ability to stop waiting… and start building.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;👉 If you’re curious, this journey led to:&lt;br&gt;
&lt;a href="https://dotafury.gg" rel="noopener noreferrer"&gt;https://dotafury.gg&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Still evolving. Still learning.&lt;br&gt;
But now — actually real.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>vibecoding</category>
      <category>nextjs</category>
    </item>
  </channel>
</rss>
