<?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: asdryankuo</title>
    <description>The latest articles on DEV Community by asdryankuo (@asdryankuo).</description>
    <link>https://dev.to/asdryankuo</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%2F2807531%2F712594aa-8112-426c-9f81-71b3ff76d6ae.png</url>
      <title>DEV Community: asdryankuo</title>
      <link>https://dev.to/asdryankuo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/asdryankuo"/>
    <language>en</language>
    <item>
      <title>From Idea to Launch: How I Built an Instant Messaging App on a Weekend</title>
      <dc:creator>asdryankuo</dc:creator>
      <pubDate>Wed, 07 Jan 2026 02:30:36 +0000</pubDate>
      <link>https://dev.to/asdryankuo/from-idea-to-launch-how-i-built-an-instant-messaging-app-on-a-weekend-2fn4</link>
      <guid>https://dev.to/asdryankuo/from-idea-to-launch-how-i-built-an-instant-messaging-app-on-a-weekend-2fn4</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/new-year-new-you-google-ai-2025-12-31"&gt;New Year, New You Portfolio Challenge Presented by Google AI&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  About Me
&lt;/h2&gt;

&lt;p&gt;I'm Ryan Guo, a backend developer and AI enthusiast. My goal for 2025 is to bridge the gap between  ideas and tangible products through &lt;strong&gt;Python and AI-driven development workflows&lt;/strong&gt;. I believe that with the right tools, even a single developer can build robust, scalable solutions at lightning speed.&lt;/p&gt;

&lt;p&gt;OneLink is the manifestation of this belief—a cross-device, login-free real-time messaging app that I built in just one week by collaborating with &lt;strong&gt;Antigravity AI&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Portfolio
&lt;/h2&gt;

&lt;p&gt;OneLink is fully deployed on Google Cloud Platform. You can experience the real-time file sharing and messaging below:&lt;/p&gt;

&lt;h3&gt;
  
  
  Live Demo (Frontend)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://github-test-478102.uc.r.appspot.com" rel="noopener noreferrer"&gt;live demo&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Backend Service (Cloud Run)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://onelink-backend-6evxnwo4da-uc.a.run.app/docs" rel="noopener noreferrer"&gt;backend docs&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub Repository&lt;/strong&gt;: &lt;a href="https://github.com/asdryankuo/OneLink" rel="noopener noreferrer"&gt;OneLink Source Code&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  How I Built It
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Tech Stack
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Backend&lt;/strong&gt;: FastAPI (Python), WebSocket (Full-duplex communication).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Frontend&lt;/strong&gt;: React 18, TypeScript, Vite.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Infrastructure&lt;/strong&gt;: &lt;strong&gt;Google Cloud Run&lt;/strong&gt; (Backend logic), &lt;strong&gt;Google App Engine&lt;/strong&gt; (Frontend hosting).&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Development with Google AI Tools
&lt;/h3&gt;

&lt;p&gt;I utilized &lt;strong&gt;Antigravity AI&lt;/strong&gt; as my primary thought partner throughout the lifecycle:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Rapid Scaffolding&lt;/strong&gt;: AI helped generate the initial FastAPI WebSocket manager and React state architecture, turning a concept into a working prototype in hours.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Performance Troubleshooting&lt;/strong&gt;: When Base64 encoding caused memory spikes and UI lag, AI suggested switching to &lt;strong&gt;Binary Chunked Transfer&lt;/strong&gt;, which became the backbone of the app.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Deployment Automation&lt;/strong&gt;: AI streamlined the GCP integration by generating optimized Dockerfiles and &lt;code&gt;gcloud&lt;/code&gt; deployment scripts, ensuring the service stayed within the Google Cloud Free Tier.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Design Decisions
&lt;/h3&gt;

&lt;p&gt;I chose a &lt;strong&gt;Zero-Database Architecture&lt;/strong&gt;. All messages and file chunks are handled in-memory and broadcasted instantly. This ensures maximum privacy (no data is stored on disk) and minimal latency.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I'm Most Proud Of
&lt;/h2&gt;

&lt;p&gt;The technical highlight I'm most proud of is the &lt;strong&gt;Binary Chunked Transfer Mechanism&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Transitioning from standard Base64 encoding to raw binary chunks (64KB each) was a game-changer. This optimization resulted in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Efficiency&lt;/strong&gt;: A 33% reduction in payload size and a 40-50% increase in transfer speed.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Stability&lt;/strong&gt;: The ability to handle files up to 100MB without timing out the WebSocket connection.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;UX Excellence&lt;/strong&gt;: I implemented a visual feedback system with animated progress bars (blue-purple for uploads) that keeps the UI responsive even during heavy data bursts.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Building OneLink proved that by leveraging &lt;strong&gt;AI assistance&lt;/strong&gt; and &lt;strong&gt;Google Cloud’s serverless infrastructure&lt;/strong&gt;, I can focus entirely on solving user problems rather than managing servers.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>googleaichallenge</category>
      <category>portfolio</category>
      <category>gemini</category>
    </item>
  </channel>
</rss>
