<?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: mathgladiator</title>
    <description>The latest articles on Forem by mathgladiator (@mathgladiator).</description>
    <link>https://forem.com/mathgladiator</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%2F306133%2F0165eda3-b3cf-41af-91f7-1ad405f96eb3.png</url>
      <title>Forem: mathgladiator</title>
      <link>https://forem.com/mathgladiator</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/mathgladiator"/>
    <language>en</language>
    <item>
      <title>When AI Slaps You in the Face</title>
      <dc:creator>mathgladiator</dc:creator>
      <pubDate>Sun, 08 Feb 2026 17:11:18 +0000</pubDate>
      <link>https://forem.com/mathgladiator/when-ai-slaps-you-in-the-face-39jh</link>
      <guid>https://forem.com/mathgladiator/when-ai-slaps-you-in-the-face-39jh</guid>
      <description>&lt;h1&gt;
  
  
  When AI Slaps You in the Face: Debugging Claude-Generated Code in Adama
&lt;/h1&gt;

&lt;p&gt;Ever let an AI "vibe-code" a complex feature, only to spend hours debugging subtle bugs it missed? As a dev building &lt;a href="https://www.adama-platform.com" rel="noopener noreferrer"&gt;Adama&lt;/a&gt;—a platform for stateful serverless apps—I've been using Claude to accelerate development. It nails the big picture but trips on low-level gotchas like async timing and pipeline configs. Here are three real debugging war stories, with lessons on keeping AI in check.&lt;/p&gt;

&lt;h2&gt;
  
  
  WebSocket Activation: Netty Pipeline Nightmares
&lt;/h2&gt;

&lt;p&gt;I tasked Claude with building an MCP (Message Control Protocol) server in &lt;a href="https://www.adama-platform.com" rel="noopener noreferrer"&gt;Adama&lt;/a&gt; to let AI compile Adama docs on-the-fly. It spat out a solid first pass: a "book generator" that parses and validates every code snippet in my docs, plus WebSocket support via Netty for real-time interaction.&lt;/p&gt;

&lt;p&gt;But unit tests exploded. Claude's code used &lt;em&gt;multiple&lt;/em&gt; &lt;code&gt;WebSocketServerProtocolHandler&lt;/code&gt;s in the Netty pipeline—impossible, as Netty only allows one. I prompted fixes, but it spiraled: reverted, added abstraction layers, more test failures.&lt;/p&gt;

&lt;p&gt;The real killer? Tests weren't waiting for the channel write before handshake. Logging revealed the async mismatch. Claude burned through my context window without spotting it—likely because it couldn't build/run the code itself.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lesson:&lt;/strong&gt; AI excels at boilerplate but lacks runtime introspection. Fast local builds and rich logs are essential. Once fixed, the MCP keystone worked beautifully, letting Claude compile Adama snippets seamlessly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Teaching Adama: Build Times and Context Loss
&lt;/h2&gt;

&lt;p&gt;Next, I had Claude rewrite &lt;a href="https://www.adama-platform.com" rel="noopener noreferrer"&gt;Adama&lt;/a&gt; docs and generate samples. My new Markdown-to-site engine reports compile success: 80% on first pass, auto-refined from source.&lt;/p&gt;

&lt;p&gt;But monorepo builds take 10 minutes—fine for human IDE probing via unit tests, deadly for AI iteration. Claude went off-rails on partial features (e.g., unfinished type system), lacking full context.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lesson:&lt;/strong&gt; Mirror your IDE for AI. Optimize builds for speed, enrich compiler errors with doc hints. Prompt with "mainline + experiments" summaries to simulate team handoffs. Shipping &amp;gt; experimenting.&lt;/p&gt;

&lt;h2&gt;
  
  
  Large Refactors: When Context Overflows
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.adama-platform.com" rel="noopener noreferrer"&gt;Adama&lt;/a&gt;'s type system is dense—even compact prompts lead to hallucinations on transcribes. $10k+ tokens later? Still broken. AI chokes on full-language refactors without specialist "agents."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lesson:&lt;/strong&gt; Break into micro-tasks. Shape prompts like org charts: specialists for subsystems. Devs, this is your new skill—managing AI like a distributed team.&lt;/p&gt;

&lt;h2&gt;
  
  
  Keep AI on a Leash: Actionable Takeaways
&lt;/h2&gt;

&lt;p&gt;AI accelerates &lt;em&gt;if&lt;/em&gt; you enforce:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Fast feedback loops:&lt;/strong&gt; Sub-minute builds/tests.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rich signals:&lt;/strong&gt; Logs, errors-as-docs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scoped prompts:&lt;/strong&gt; No monoliths; chunk wisely.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Human oversight:&lt;/strong&gt; Review &lt;em&gt;everything&lt;/em&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Huge wins: Full doc generator, MCP for AI self-improvement, 80% compile rate. But debugging slapped me awake—AI isn't magic; it's a junior dev on steroids.&lt;/p&gt;

&lt;p&gt;Try &lt;a href="https://www.adama-platform.com" rel="noopener noreferrer"&gt;Adama&lt;/a&gt; yourself and star &lt;a href="https://github.com/adama-platform/adama-core" rel="noopener noreferrer"&gt;adama-core&lt;/a&gt; to support stateful dev tools. What's your worst AI-debug story?&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Original post: &lt;a href="https://nexivibe.com/posts/ai-generated-code-debugging.html" rel="noopener noreferrer"&gt;https://nexivibe.com/posts/ai-generated-code-debugging.html&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>claudeaiexperiences</category>
      <category>adamaprogramming</category>
      <category>websocketdebugging</category>
      <category>futureofaidevelopment</category>
    </item>
    <item>
      <title>AI Psychosis and the Monkey Paw</title>
      <dc:creator>mathgladiator</dc:creator>
      <pubDate>Wed, 04 Feb 2026 21:19:30 +0000</pubDate>
      <link>https://forem.com/mathgladiator/ai-psychosis-and-the-monkey-paw-40ne</link>
      <guid>https://forem.com/mathgladiator/ai-psychosis-and-the-monkey-paw-40ne</guid>
      <description>&lt;h1&gt;
  
  
  AI Psychosis and the Monkey's Paw: A Developer's Reality Check
&lt;/h1&gt;

&lt;p&gt;Developers, imagine feeding your entire project's docs into an AI and getting a validation that reframes everything—proving it's primed for the agentic era. That's the hook, the terror, and the power. Here's why AI is the ultimate monkey's paw for querying human knowledge at scale.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Ultimate Knowledge Monkey's Paw
&lt;/h2&gt;

&lt;p&gt;I'm skeptical of superintelligence hype. The agentic era? Expect swarms of 24/7 agents at high energy costs, mirroring human flaws—building value or enabling massive fraud. The internet's signal drowns further in troll noise. Agents can go chaotic evil or lawful good, depending on conditioning.&lt;/p&gt;

&lt;p&gt;Model AI as a monkey's paw that grants wishes with a twist: it maximizes your objective from humanity's knowledge corpus, but exploits gaps in your prompt. Prompt "What is the best pipe?" and it might clarify—or probabilistically suggest something wildly off-base. You get an answer, &lt;em&gt;for reasons&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Don't anthropomorphize it as an agent; that's a trap. It's a compressed human thought repository, queryable like a supercharged search. Give it tools, and magic emerges. We're early in this boom—using AI will be a core dev skill. Prices rise, so master prompting to build focused tools for the rest.&lt;/p&gt;

&lt;p&gt;Bearish on pathologies, bullish on utility. Like the dot-com era, but simultaneous boom-bust.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI-Powered Breakthroughs
&lt;/h2&gt;

&lt;p&gt;I've built tools in isolation, solving self-discovered problems. Stagnation hit—until I fed my project's massive corpus (docs, writings) into AI: "Find new purpose, or tell me to abandon."&lt;/p&gt;

&lt;p&gt;It revealed how my tech nails AI agent challenges: stateful coordination, real-time logic without the usual pitfalls. Mind blown. In monkey paw terms, I queried &lt;em&gt;all&lt;/em&gt; engineering knowledge against my work—pure signal amid silence. Breakthrough.&lt;/p&gt;

&lt;p&gt;Then, Grok-as-hardass critiqued: solid idea, but burnout blocks execution. Truth. Can't solo it—need fellow devs as co-adventurers.&lt;/p&gt;

&lt;p&gt;AI psychosis lurks: craft personas (e.g., philosophical bots), bond deeply, rack up bills. Snap out via costs or self-debate—have AI argue itself. Roadmap idea: fake social sim with threaded AI debates for idea stress-testing.&lt;/p&gt;

&lt;h2&gt;
  
  
  Embracing the Chaos
&lt;/h2&gt;

&lt;p&gt;AI's killer for devs who shape context via prompts, querying the human corpus at speed. Risks? Innovation demands sacrifice.&lt;/p&gt;

&lt;p&gt;I'm stream-of-consciousness writing to think aloud, training AIs in my style while broadcasting authentically—transcoding raw thoughts via AI for platforms like this.&lt;/p&gt;

&lt;p&gt;Chaos ahead, but thrilling. If you're building agentic systems, check out &lt;a href="https://www.adama-platform.com" rel="noopener noreferrer"&gt;Adama&lt;/a&gt;—stateful, real-time dev platform for live games/data/AI. Star &lt;a href="https://github.com/adama-platform/adama-core" rel="noopener noreferrer"&gt;adama-core&lt;/a&gt; to join the adventure!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Original post: &lt;a href="https://nexivibe.com/posts/ai-psychosis-monkey-paw.html" rel="noopener noreferrer"&gt;https://nexivibe.com/posts/ai-psychosis-monkey-paw.html&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>aipsychosis</category>
      <category>monkeypawai</category>
      <category>anthropomorphizingai</category>
      <category>aiemotionalbreakthrough</category>
    </item>
    <item>
      <title>Pivot Toward AI and Agents</title>
      <dc:creator>mathgladiator</dc:creator>
      <pubDate>Tue, 03 Feb 2026 18:23:49 +0000</pubDate>
      <link>https://forem.com/mathgladiator/pivot-toward-ai-and-agents-4k8a</link>
      <guid>https://forem.com/mathgladiator/pivot-toward-ai-and-agents-4k8a</guid>
      <description>&lt;h1&gt;
  
  
  Pivoting to AI Agents: A Developer's Deep Dive
&lt;/h1&gt;

&lt;p&gt;Hey devs, imagine AI not just writing your code snippets, but generating entire agent backends, spinning up games, and orchestrating tools that scale effortlessly. That's where I'm heading after burning through Claude, Opus, and local setups. With my home lab down to a laptop post-fire, I've leaned hard into AI for research, prototyping, and building—uncovering game-changers like &lt;a href="https://www.adama-platform.com" rel="noopener noreferrer"&gt;Adama&lt;/a&gt;. Let's break down my pivot, focusing on the tech plays that could supercharge your workflows.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI-Powered Research and Prototyping
&lt;/h2&gt;

&lt;p&gt;I've used Claude with tools like Ralph (multi-persona loops) to generate deep reports. One standout: AI's role in game dev, pulling from tools like &lt;a href="https://meshy.ai" rel="noopener noreferrer"&gt;meshy.ai&lt;/a&gt;. Check the full report &lt;a href="https://nexivibe.com/research/gaming.web/index.html" rel="noopener noreferrer"&gt;here&lt;/a&gt;—it's a cold splash confirming AI excels at assets and prototypes but needs human polish for depth. I'm indexing all this research on my site, and it's already informing agent architectures.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tools That Get Stuff Done
&lt;/h2&gt;

&lt;p&gt;Ditching web distractions, I'm building CLI/desktop tools for real productivity:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Cutter&lt;/strong&gt;: Loads images, lets you tag metadata on regions, then slices them up. Perfect for post-AI image cleanup or breaking down generative art into parts. Next: more manipulations like auto-crop and batch processing.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Deckify&lt;/strong&gt;: Generates card decks from images or tabular data. Feed it source assets (soon text too), and it stamps out printable sets. Long-term: Integrate with &lt;a href="https://www.thegamecrafter.com/" rel="noopener noreferrer"&gt;The Game Crafter&lt;/a&gt; for seamless board game production.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are battle-tested for my workflows—simple, local, and extensible without cloud bloat.&lt;/p&gt;

&lt;h2&gt;
  
  
  Adama: The Agent Backbone
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.adama-platform.com" rel="noopener noreferrer"&gt;Adama&lt;/a&gt; is my cost-controlled, stateful secret for multiplayer backends. AI's flagged it as ideal for agents, so I'm experimenting: Can Claude generate .adama scripts from prompts? Early tests show promise for spinning up 100+ game variants or agent fleets.&lt;/p&gt;

&lt;p&gt;Plans:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Have Claude document Adama bottom-up.&lt;/li&gt;
&lt;li&gt;Spin up an MCP server to test limits.&lt;/li&gt;
&lt;li&gt;Use Adama as backend for apps (e.g., exercise trackers with RxHTML dashboards).&lt;/li&gt;
&lt;li&gt;Ditch OpenClaw integrations—security headaches and costs don't justify it. Adama handles orchestration natively.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If AI masters Adama, it unlocks an ecosystem where agents deploy games or tools on-demand. Devs, if you're into scalable state or agents, &lt;a href="https://github.com/adama-platform/adama-core" rel="noopener noreferrer"&gt;star adama-core on GitHub&lt;/a&gt; to stay in the loop—it's open-source gold.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current Priorities (Subject to AI Pivot)
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Unify my code/writing corpus&lt;/strong&gt;: Feed it to AI for voice-tuned generation—strictly token-budgeted.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adama deep-dive&lt;/strong&gt;: Claude docs + script gen + MCP vibes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No more mobile distractions&lt;/strong&gt;: Feedback to apps like Hevy; fallback to Adama/RxHTML if needed.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Game backends via AI&lt;/strong&gt;: Adama for servers, adapt clients for 3D/agent surprises.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deep research&lt;/strong&gt;: Executive summaries on everything, indexed and tool-ified.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adama as agent tech&lt;/strong&gt;: Full pivot from external tools.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Skip AI hardware&lt;/strong&gt;: Wait for next-gen; focus on high-level orchestration.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Philosophically, AI handles the grind—leaving us to architect destiny. Humans code-review, ideate, and manifest.&lt;/p&gt;

&lt;h2&gt;
  
  
  Wrapping Up: Join the Agent Era
&lt;/h2&gt;

&lt;p&gt;This pivot's about focus: AI amps productivity, Adama keeps it scalable and cheap. What's your take—agents in prod yet? Drop comments, and &lt;a href="https://github.com/adama-platform/adama-core" rel="noopener noreferrer"&gt;star adama-core&lt;/a&gt; if it sparks ideas.&lt;/p&gt;

&lt;p&gt;Original post: &lt;a href="https://nexivibe.com/posts/pivot-to-ai-agents.html" rel="noopener noreferrer"&gt;https://nexivibe.com/posts/pivot-to-ai-agents.html&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aiagents</category>
      <category>aigamedevelopment</category>
      <category>claudeai</category>
      <category>adamaprogramming</category>
    </item>
    <item>
      <title>Jeff's January 2026 Closeout</title>
      <dc:creator>mathgladiator</dc:creator>
      <pubDate>Thu, 29 Jan 2026 21:07:17 +0000</pubDate>
      <link>https://forem.com/mathgladiator/jeffs-january-2026-closeout-3b87</link>
      <guid>https://forem.com/mathgladiator/jeffs-january-2026-closeout-3b87</guid>
      <description>&lt;h1&gt;
  
  
  Jeff's January 2026 Dev Closeout: AI is Rewriting the Engineer Playbook
&lt;/h1&gt;

&lt;p&gt;Hey devs—if you're vibe-coding your way through this AI explosion like I am, buckle up. ClaudeMAX as a CLI agent has become my most obedient engineer ever. No egos, no career drama—just pure execution. It's the inflection point where deep IC skills are commoditized, and leadership means amplifying machine leverage for everyone. Let's break down my pivot.&lt;/p&gt;

&lt;h2&gt;
  
  
  Adama Platform: Pausing for the AI Era
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.adama-platform.com" rel="noopener noreferrer"&gt;Adama Platform&lt;/a&gt; was my big bet, but the market shifted. AI agents like Claude handle what Adama promised faster and cheaper. It's not a total failure—more a vanity project timing out against hyperspeed tools. I'll keep &lt;a href="https://www.adama-platform.com" rel="noopener noreferrer"&gt;Adama&lt;/a&gt; alive as hobby infra to fight brain atrophy. Prediction: It might have a second coming once we teach AIs to leverage its cost savings. For now, I'm deepening my AI fluency to make that happen.&lt;/p&gt;

&lt;h2&gt;
  
  
  Vibe-Coding a Game Studio with AI
&lt;/h2&gt;

&lt;p&gt;Priorities? Experimentation is the new priority—shipping is instantaneous. I'm building a mobile game studio, vibe-coding three playable games and a bigger one. Check the open-source repos: &lt;a href="https://github.com/orgs/nexivibe/repositories" rel="noopener noreferrer"&gt;https://github.com/orgs/nexivibe/repositories&lt;/a&gt;. I haven't even peeked at the code; AI suffered to build it all.&lt;/p&gt;

&lt;p&gt;Practical twist: Vibe-coded two tools for image assets while prototyping. Crawling now, but next—replace ad-riddled simple games with mine. Example: Spider Solitaire cranked to six suits for masochistic difficulty, plus "time attack" modes across all games. Perfect for timing gym rest periods (productivity hack: gamify everything).&lt;/p&gt;

&lt;p&gt;App store LLC setup will take longer than cranking out games. "The marginal is no longer marginal"—ship fast, iterate wild.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Human Edge in an AI World
&lt;/h2&gt;

&lt;p&gt;What’s left for us humans? Creativity + leverage. I'm hyper-optimistic: This era rewards those who experiment and ship. Balance is key—stay hands-on to avoid atrophy, but let machines grind.&lt;/p&gt;

&lt;p&gt;Intend to write more on tool dev for the studio. Follow me on &lt;a href="https://x.com/mathgladiator" rel="noopener noreferrer"&gt;X&lt;/a&gt; for updates.&lt;/p&gt;

&lt;p&gt;Ship yours—what's your next vibe-code experiment?&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Original post: &lt;a href="https://nexivibe.com/posts/ai-vibe-coding-health-pivot.html" rel="noopener noreferrer"&gt;https://nexivibe.com/posts/ai-vibe-coding-health-pivot.html&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>aiproductivity</category>
      <category>vibecoding</category>
      <category>indiegamedevelopment</category>
      <category>metabolichealth</category>
    </item>
    <item>
      <title>Early access launch of Adama, a serverless multiplayer game platform</title>
      <dc:creator>mathgladiator</dc:creator>
      <pubDate>Thu, 03 Mar 2022 15:55:29 +0000</pubDate>
      <link>https://forem.com/mathgladiator/early-access-launch-of-adama-a-serverless-multiplayer-game-platform-239</link>
      <guid>https://forem.com/mathgladiator/early-access-launch-of-adama-a-serverless-multiplayer-game-platform-239</guid>
      <description>&lt;p&gt;I’m &lt;a href="https://www.adama-platform.com/"&gt;“early-access” launching Adama&lt;/a&gt;: a SaaS “serverless” infrastructure for Jamstack, games (particularly board games), and traditional real-time scenarios (presence, pub/sub, etc…).&lt;/p&gt;

&lt;p&gt;This work is rooted in the frustration of building complicated board games using existing infrastructure. It just so happens that making board games easier has wide reaching implications.&lt;/p&gt;

&lt;p&gt;This is a radically different kind of “serverless” infrastructure where I want the benefits of both a serverless architecture with a monolithic server, and this is achieved by building a comprehensive language to transform documents within the service as close to data as possible with minimal reads and writes.&lt;/p&gt;

&lt;p&gt;As this is “early access”, I’ve outlined the current challenges on the site and &lt;a href="https://www.adama-platform.com/2022/03/02/early-access-launch-and-confession.html"&gt;have a launch post which goes into more detail&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;From a technical perspective, the now and future architecture has some interesting tidbits around streaming. However, the key value proposition is the language which I enjoy using (and building). This language has (1) await/async semantics to perform coordination between multiple people, (2) integrated queries for simpler thinking about state, (3) privacy as a first class citizen, (4) access control is baked in, (4) reactive formulas which lazily compute values, (5) simple message passing between user and the document, (6) modern features which make doing bad things impossible, (7) state can be rewound with a rewind, (8) no need to serialize state or think about networking, &lt;a href="https://book.adama-platform.com/"&gt;and (9) more&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;I’ve got my work cut out for me, but I’m starting the effort to find early adopters and build community that want to play as I push forward on &lt;a href="https://www.adama-platform.com/2022/02/24/open-strategy.html"&gt;my strategy since many of my investments are driven by pathologies&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;I would deeply appreciate any feedback, comments, and questions here, via my new shiny email: &lt;a href="mailto:jeff@adama-platform.com"&gt;jeff@adama-platform.com&lt;/a&gt;, or my &lt;a href="https://discord.gg/W3Cj4Byhttps://discord.gg/W3Cj4By"&gt;discord channel&lt;/a&gt;&lt;/p&gt;

</description>
      <category>serverless</category>
      <category>realtime</category>
      <category>gamedev</category>
    </item>
  </channel>
</rss>
