{"slug": "i-m-12-i-ran-a-global-code-jam-on-a-150-phone-heres-the-supabase-architecture-it", "title": "I'm 12. I ran a global Code Jam on a $150 phone. Here’s the Supabase architecture that held it together. 🐯", "summary": "A 12-year-old developer built and ran a global coding competition, the KODA Code Jam, entirely from a $150 Android phone, using Supabase for authentication, PostgreSQL storage, and Row Level Security to manage submissions from over 3,000 community members. After a senior DevOps engineer flagged that error logs captured only failures and not which AI model actually served each request, the developer added a model_served column to the error_logs table to track attempted versus served models. The developer credited Supabase's mobile-friendly dashboard and documentation with making backend security and session management accessible without a dedicated team.", "body_md": "Two weeks ago, I had zero submissions for my coding festival. \n\nYesterday, I crowned the first Champion of the KODA Code Jam, upgraded their database status, and launched a second Jam (Scribe Jam), all while managing a community of 3,000+ developers. \n\nI am 12 years old. I do not have a laptop. I build full-stack AI applications entirely on a POCO C55 Android phone.\n\nAnd none of this would be possible without **[@kiwicopple](https://dev.to/kiwicopple) ** (Paul Copplestone) and the team at **Supabase**.\n\nHere is exactly how I use Supabase to run a real, global developer ecosystem from my phone.\n\nMy community isn't local. I have users like `vpxudon` (a senior engineer from China), `puneetkumar2010` (a 15-year-old builder from India who just won the Jam), and `nyaomaru` (User #001 from Japan). \n\nSupabase Auth handles this seamlessly. I don't have to worry about session management or password hashing. I just call `supabase.auth.signInWithPassword()`, and it works perfectly on mobile browsers.\n\nAs a solo dev, security is my biggest anxiety. I am handling user profiles, submission data, and error logs.\n\nI rely heavily on **PostgreSQL Row Level Security (RLS)**. \n\nFor example, in my `scribe_submissions` table, I have an `is_champion` boolean flag. I wrote policies ensuring that while anyone can `SELECT` public submissions, only authenticated users with specific admin claims can `UPDATE` the champion status. \n\nSupabase made RLS accessible enough for a 12-year-old to implement correctly without needing a dedicated backend security team.\n\nRecently, a senior DevOps engineer (Nnamdi) reviewed my architecture and pointed out a flaw: my error logs were only catching failures, not successes. If my primary AI model failed and my fallback succeeded, I had no idea *which* model actually served the request.\n\n**The Fix:** I added a `model_served` text column to my Supabase `error_logs` table. Now, every request logs the attempted model and the actual served model.\n\n```\n-- Example of the telemetry I now track in Supabase\nUPDATE error_logs \nSET resolved = true, resolved_at = now() \nWHERE error_type = 'http_404' AND resolved = false;\n```\n\nThis simple Supabase database update turned my \"silent failures\" into visible, actionable data.\n\nI have fought with hosting providers. I have dealt with broken build pipelines. But Supabase has been the one constant, reliable foundation.\n\nThe dashboard works flawlessly on my mobile browser. The PostgreSQL database is robust. The documentation is clear enough for a beginner to grasp, but powerful enough for senior engineers to respect.\n\n@paulc and team: Thank you for building a tool that democratizes backend development. You didn't just build a database; you built a ladder. And kids like me are using it to climb higher than we ever thought possible.\n\nWe are cooking. And Supabase is the stove. 🔥\n\n**Questions?** Drop them in the comments. I read every single one.", "url": "https://wpnews.pro/news/i-m-12-i-ran-a-global-code-jam-on-a-150-phone-heres-the-supabase-architecture-it", "canonical_source": "https://dev.to/koda2026/im-12-i-ran-a-global-code-jam-on-a-150-phone-heres-the-supabase-architecture-that-held-it-4jkk", "published_at": "2026-09-15 14:43:29+00:00", "updated_at": "2026-09-15 14:52:29.050095+00:00", "lang": "en", "topics": ["ai-tools", "developer-tools", "ai-products"], "entities": ["Supabase", "Paul Copplestone", "KODA Code Jam", "Scribe Jam", "PostgreSQL", "Nnamdi", "POCO C55"], "alternates": {"html": "https://wpnews.pro/news/i-m-12-i-ran-a-global-code-jam-on-a-150-phone-heres-the-supabase-architecture-it", "markdown": "https://wpnews.pro/news/i-m-12-i-ran-a-global-code-jam-on-a-150-phone-heres-the-supabase-architecture-it.md", "text": "https://wpnews.pro/news/i-m-12-i-ran-a-global-code-jam-on-a-150-phone-heres-the-supabase-architecture-it.txt", "jsonld": "https://wpnews.pro/news/i-m-12-i-ran-a-global-code-jam-on-a-150-phone-heres-the-supabase-architecture-it.jsonld"}}