<?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: Fisher092</title>
    <description>The latest articles on DEV Community by Fisher092 (@fisher092).</description>
    <link>https://dev.to/fisher092</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%2F3971990%2Fb1413d58-0e39-416d-a250-7ce6eb2e28cb.png</url>
      <title>DEV Community: Fisher092</title>
      <link>https://dev.to/fisher092</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/fisher092"/>
    <language>en</language>
    <item>
      <title>How I built a multiplayer aquarium where the internet draws the fish 🐟</title>
      <dc:creator>Fisher092</dc:creator>
      <pubDate>Sun, 07 Jun 2026 02:41:45 +0000</pubDate>
      <link>https://dev.to/fisher092/how-i-built-a-multiplayer-aquarium-where-the-internet-draws-the-fish-5g84</link>
      <guid>https://dev.to/fisher092/how-i-built-a-multiplayer-aquarium-where-the-internet-draws-the-fish-5g84</guid>
      <description>&lt;p&gt;Hey DEV community! 👋 &lt;/p&gt;

&lt;p&gt;Sometimes, the internet feels a bit too serious, too algorithm-driven, and too full of paywalls or sign-up forms. I wanted to build something completely opposite: a low-friction, playful corner of the web where people can just be silly for a couple of minutes.&lt;/p&gt;

&lt;p&gt;So, I built &lt;strong&gt;&lt;a href="https://drawafish.live" rel="noopener noreferrer"&gt;Draw a Fish&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It's a free online drawing game. You sketch a fish, hit "Make it Swim", and it instantly drops into a massive, shared virtual aquarium with fish drawn by people from all over the world. &lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;Live Demo:&lt;/strong&gt; &lt;br&gt;
&lt;a href="https://drawafish.live/f/d5499daa-973c-4d34-9a8a-743569b08d23" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdrawafish.live%2Fapi%2Fshare-image%2Ff%2Fd5499daa-973c-4d34-9a8a-743569b08d23" alt="Barnaby Bubbles — a fish on DrawAFish.live" width="1200" height="630"&gt;&lt;/a&gt;&lt;/p&gt;


&lt;h3&gt;
  
  
  🎨 How it works
&lt;/h3&gt;

&lt;p&gt;The core loop is designed to be as frictionless as possible:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Draw:&lt;/strong&gt; You get a blank canvas and some basic colors. No account needed.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Swim:&lt;/strong&gt; Once you're done, the app names it, rates it, and releases it into the global tank.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Feed &amp;amp; Grow:&lt;/strong&gt; This is the multiplayer part. Anyone can click to "feed" any fish. Every feed adds weight, and the heaviest fish climb the global leaderboard.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claim (Optional):&lt;/strong&gt; If you want to keep track of your masterpiece's growth, you can log in later to "claim" your fish.&lt;/li&gt;
&lt;/ol&gt;


&lt;h3&gt;
  
  
  🛠️ The Tech Stack
&lt;/h3&gt;

&lt;p&gt;To bring this virtual aquarium to life, I kept the stack modern and real-time friendly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Frontend:&lt;/strong&gt; [e.g., React / Vue / Vanilla JS + HTML5 Canvas]&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Backend:&lt;/strong&gt; [e.g., Node.js with Express / Python FastAPI]&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Database:&lt;/strong&gt; [e.g., Firebase / Supabase / MongoDB] to store the fish image data and handle the real-time feeding counter.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Hosting:&lt;/strong&gt; [e.g., Vercel / Netlify / Heroku]&lt;/li&gt;
&lt;/ul&gt;


&lt;h3&gt;
  
  
  🧠 The Biggest Challenge: Frictionless Onboarding vs. Data Ownership
&lt;/h3&gt;

&lt;p&gt;One of the biggest UX decisions I made was &lt;strong&gt;"No account needed to play."&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;If I asked users to log in before drawing, 90% of them would bounce. But if they don't log in, how do they track their fish on the leaderboard? &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Solution:&lt;/strong&gt; &lt;br&gt;
When a guest user draws a fish, I store a unique identifier (token) in their browser's &lt;code&gt;localStorage&lt;/code&gt;. The fish is saved to the database linked to this anonymous token.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// Example pseudo-code for the guest logic&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;generateGuestToken&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;token&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;localStorage&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getItem&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;guest_fish_token&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nx"&gt;token&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nx"&gt;token&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;crypto&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;randomUUID&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
    &lt;span class="nx"&gt;localStorage&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;setItem&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;guest_fish_token&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;token&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;token&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If the user later decides they love their fish and want to track it across devices, they can hit "Log In". The app then takes their &lt;code&gt;guest_fish_token&lt;/code&gt;, finds all fish created under it, and officially assigns them to their new permanent account. &lt;/p&gt;

&lt;p&gt;It’s the best of both worlds: zero friction to start playing, but a clear path to user retention!&lt;/p&gt;




&lt;h3&gt;
  
  
  🚀 What's Next?
&lt;/h3&gt;

&lt;p&gt;Right now, it's just pure chaos and fun in the tank. I'm planning to add:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  [e.g., More drawing tools and colors]&lt;/li&gt;
&lt;li&gt;  [e.g., Special food types or interactions]&lt;/li&gt;
&lt;li&gt;  [e.g., A way to share your specific fish on Twitter/X]&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  👇 I need your help!
&lt;/h3&gt;

&lt;p&gt;The aquarium needs more weird, beautiful, and hilarious fish! &lt;/p&gt;

&lt;p&gt;I'd love for you to take 2 minutes, &lt;strong&gt;&lt;a href="https://drawafish.live" rel="noopener noreferrer"&gt;go draw a fish&lt;/a&gt;&lt;/strong&gt;, and &lt;strong&gt;post a screenshot of what you created in the comments below!&lt;/strong&gt; Let's see who can get to the top of the leaderboard today. 🏆&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>webdev</category>
      <category>javascript</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
