<?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: n3on</title>
    <description>The latest articles on Forem by n3on (@n3on).</description>
    <link>https://forem.com/n3on</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%2F3559516%2F4fa1d3f3-83f6-4928-9d0d-ece6eef5825e.jpg</url>
      <title>Forem: n3on</title>
      <link>https://forem.com/n3on</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/n3on"/>
    <language>en</language>
    <item>
      <title>Building Autonomous Cross-Chain AI Agents with Kuberna Labs</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Sun, 15 Mar 2026 20:13:27 +0000</pubDate>
      <link>https://forem.com/n3on/building-autonomous-cross-chain-ai-agents-with-kuberna-labs-4fdb</link>
      <guid>https://forem.com/n3on/building-autonomous-cross-chain-ai-agents-with-kuberna-labs-4fdb</guid>
      <description>&lt;p&gt;If you've ever tried to build an AI agent that can actually &lt;em&gt;do&lt;/em&gt; something on-chain—like swap tokens, monitor a protocol, or execute a trade across chains—you know the pain. You need to manage private keys, estimate gas, handle failed transactions, and orchestrate complex cross-chain flows. It's brittle, time-consuming, and error-prone.&lt;/p&gt;

&lt;p&gt;That's why we built &lt;strong&gt;Kuberna Labs&lt;/strong&gt;: an open-source SDK and infrastructure that abstracts away the complexity of cross-chain execution for AI agents.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Stack&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Our architecture is designed to take a high-level intent (e.g., "Swap 1 ETH to USDC on Solana") and execute it securely, with cryptographic guarantees. Here's how it works:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;LLM / NLP Engine&lt;/strong&gt; – Parses natural language into structured tasks.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Kuberna SDK&lt;/strong&gt; – Provides a unified API for agent creation, intent submission, and execution.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Execution Layer&lt;/strong&gt;:

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;TEEs&lt;/strong&gt; (Phala, Marlin) – Run agent logic in trusted enclaves with remote attestation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;zkTLS&lt;/strong&gt; (Reclaim, zkPass) – Fetch verified Web2 data without exposing credentials.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Intent Router&lt;/strong&gt; (ERC-7683) – Broadcasts intents to a decentralized solver network.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Solver Network&lt;/strong&gt; – Agents compete to fulfill intents, with funds secured in escrow contracts.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Why This Matters&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Most AI agents today are just chatbots—they can't actually transact value. Kuberna turns them into autonomous economic actors. Imagine an agent that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Monitors a DeFi protocol's TVL and alerts you on Discord.&lt;/li&gt;
&lt;li&gt;Executes arbitrage across DEXes when profitable.&lt;/li&gt;
&lt;li&gt;Proves your bank balance on-chain without revealing the number (via zkTLS).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Get Started in 2 Minutes&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; @kuberna/sdk
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;KubernaSDK&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@kuberna/sdk&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;sdk&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;KubernaSDK&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt; &lt;span class="na"&gt;apiKey&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;YOUR_API_KEY&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="p"&gt;});&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;agent&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;sdk&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;createAgent&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
  &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;YieldOptimizer&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;framework&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;ElizaOS&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;`Agent &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;agent&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;id&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt; is live!`&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The SDK handles all the hard stuff—wallet management, gas estimation, intent routing—so you can focus on your agent's logic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Open Source &amp;amp; Community&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Kuberna Labs is 100% open-source and built in public. We're based in Kigali, Rwanda, and we're on a mission to become the operating system for the agentic economy.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/kawacukennedy/kuberna-labs" rel="noopener noreferrer"&gt;GitHub Repo&lt;/a&gt;&lt;br&gt;&lt;br&gt;
👉 &lt;a href="https://discord.gg/74jRFM7u" rel="noopener noreferrer"&gt;Discord&lt;/a&gt;  &lt;/p&gt;

&lt;p&gt;We'd love your contributions, ideas, and stars. Let's build the future of autonomous agents together.&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>blockchain</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Sunder: The Open‑Source AI Coding Assistant That Translates, Explains, and Pairs With You</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Thu, 12 Feb 2026 09:00:17 +0000</pubDate>
      <link>https://forem.com/n3on/sunder-the-open-source-ai-coding-assistant-that-translates-explains-and-pairs-with-you-1i1g</link>
      <guid>https://forem.com/n3on/sunder-the-open-source-ai-coding-assistant-that-translates-explains-and-pairs-with-you-1i1g</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Every developer knows the drill:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You find a brilliant Python snippet, but your project is in JavaScript.&lt;/li&gt;
&lt;li&gt;You want a second pair of eyes, but scheduling a code review takes days.&lt;/li&gt;
&lt;li&gt;Copilot helps, but it’s proprietary, doesn’t explain &lt;em&gt;why&lt;/em&gt;, and can’t translate.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Sunder&lt;/strong&gt; fixes all of that; and it’s now &lt;strong&gt;open source&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Is Sunder?
&lt;/h2&gt;

&lt;p&gt;Sunder is an &lt;strong&gt;AI‑powered collaborative platform&lt;/strong&gt; for code snippets. Think GitHub Gists meets Figma meets Gemini.&lt;/p&gt;

&lt;p&gt;With Sunder you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Save &amp;amp; discover&lt;/strong&gt; snippets across 50+ languages
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Translate&lt;/strong&gt; code between languages with &lt;strong&gt;functional equivalence&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pair program&lt;/strong&gt; with an AI that learns your style
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Real‑time collaborate&lt;/strong&gt; on snippets with cursors, chat, and video
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Get explanations&lt;/strong&gt; and refactoring suggestions on demand
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All inside a beautiful Next.js + Tailwind UI.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Open Source?
&lt;/h2&gt;

&lt;p&gt;We believe developer tools should be &lt;strong&gt;transparent, community‑owned, and accessible to everyone&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;By open‑sourcing Sunder we’re saying:  &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You shouldn’t need a corporate budget to have an AI pair programmer.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;We also want to build the &lt;strong&gt;best AI‑first coding platform&lt;/strong&gt; – and that can only happen with contributions from developers like you.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try It in 60 Seconds
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/kawacukennedy/sunder
&lt;span class="nb"&gt;cd &lt;/span&gt;sunder
./scripts/setup.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That’s it. Docker Compose spins up PostgreSQL, Redis, and a &lt;strong&gt;mock AI server&lt;/strong&gt; – you don’t even need a Gemini API key.&lt;br&gt;&lt;br&gt;
Then open &lt;code&gt;http://localhost:3000&lt;/code&gt; and start exploring.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧩 What Needs Help?
&lt;/h2&gt;

&lt;p&gt;We’ve curated &lt;strong&gt;20+ “good first issues”&lt;/strong&gt; with detailed instructions and mentors.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Area&lt;/th&gt;
&lt;th&gt;Example Issue&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;🎨 Frontend (React)&lt;/td&gt;
&lt;td&gt;Add syntax highlighting for Rust&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;⚙️ Backend (Node)&lt;/td&gt;
&lt;td&gt;Optimize snippet search with trigram indexes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;🧠 AI (Gemini)&lt;/td&gt;
&lt;td&gt;Improve translation accuracy for Go → TypeScript&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;📚 Docs&lt;/td&gt;
&lt;td&gt;Write a tutorial for real‑time collaboration&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://github.com/kawacukennedy/sunder/labels/good%20first%20issue" rel="noopener noreferrer"&gt;Browse good first issues →&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  💬 Join Our Community
&lt;/h2&gt;

&lt;p&gt;We’re on Discord; ask questions, share what you build, and meet other contributors.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://discord.gg/n8G4BVe7" 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%2Fimg.shields.io%2Fdiscord%2F1234567890%3Fcolor%3D5865F2%26label%3DJoin%2520Discord%26logo%3Ddiscord" alt="Discord" width="179" height="20"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  One Last Thing
&lt;/h2&gt;

&lt;p&gt;If you believe AI tools should be open and collaborative:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Star the repo&lt;/strong&gt; – it helps others find us
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Share this post&lt;/strong&gt; with a friend who loves AI
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pick an issue&lt;/strong&gt; and make your first contribution today
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Let’s build the future of coding – together.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Sunder on GitHub:&lt;/strong&gt; &lt;a href="https://github.com/kawacukennedy/sunder" rel="noopener noreferrer"&gt;github.com/kawacukennedy/sunder&lt;/a&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Contact:&lt;/strong&gt; &lt;a href="//kawacukent@gmail.com"&gt;Email&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Twitter:&lt;/strong&gt; &lt;a href="http://x.com/Arnaud_Kennedy" rel="noopener noreferrer"&gt;@Arnaud_Kennedy&lt;/a&gt;&lt;/p&gt;




</description>
      <category>opensource</category>
      <category>ai</category>
      <category>javascript</category>
      <category>nextjs</category>
    </item>
    <item>
      <title>I’m Building a High-Signal Discord for Developers Who Actually Want to Build (Not Another Dead Server)</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Thu, 08 Jan 2026 18:44:17 +0000</pubDate>
      <link>https://forem.com/n3on/im-building-a-high-signal-discord-for-developers-who-actually-want-to-build-not-another-dead-19je</link>
      <guid>https://forem.com/n3on/im-building-a-high-signal-discord-for-developers-who-actually-want-to-build-not-another-dead-19je</guid>
      <description>

&lt;p&gt;Most developer Discord servers fail for the same reasons:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Too many channels&lt;/li&gt;
&lt;li&gt;No structure&lt;/li&gt;
&lt;li&gt;No onboarding&lt;/li&gt;
&lt;li&gt;Everyone talks, nobody builds&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So I decided to build something different.&lt;/p&gt;

&lt;p&gt;I just launched a &lt;strong&gt;Developer Discord Community&lt;/strong&gt; designed around &lt;strong&gt;clarity, progression, and real collaboration&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  What makes this server different
&lt;/h3&gt;

&lt;p&gt;This is not a “drop a link and disappear” Discord.&lt;/p&gt;

&lt;p&gt;We’ve designed it with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Structured onboarding&lt;/strong&gt; (Beginner, Intermediate, Advanced)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clean channel UX&lt;/strong&gt; (you only see what’s relevant to you)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Focused help channels&lt;/strong&gt; (no noise, no spam)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Project collaboration&lt;/strong&gt; (ideas → teams → execution)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A new Web3 channel&lt;/strong&gt; for serious discussions around blockchain, smart contracts, and decentralized apps&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Who this is for
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Developers who want to &lt;strong&gt;learn properly&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Developers who want to &lt;strong&gt;build real projects&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Developers who want &lt;strong&gt;feedback, not fluff&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Developers who want a community that respects their time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Stacks include:&lt;br&gt;
Frontend, Backend, Mobile, AI/ML, DevOps — and now &lt;strong&gt;Web3&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  What you’ll actually do inside
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Ask and answer real technical questions&lt;/li&gt;
&lt;li&gt;Get code reviews&lt;/li&gt;
&lt;li&gt;Collaborate on projects&lt;/li&gt;
&lt;li&gt;Share resources that matter&lt;/li&gt;
&lt;li&gt;Learn from developers at different levels&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Join here
&lt;/h3&gt;

&lt;p&gt;👉 &lt;a href="https://discord.gg/9nqtzGVb" rel="noopener noreferrer"&gt;Discord Server&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you’re tired of low-signal communities and want a place that feels intentional and well-run, you’re welcome.&lt;/p&gt;

&lt;p&gt;Let’s build something meaningful.&lt;/p&gt;




</description>
      <category>developer</category>
      <category>career</category>
      <category>productivity</category>
      <category>discuss</category>
    </item>
    <item>
      <title>I Built 12 Projects In 12 Days… and Almost Lost My Mind 😭💻</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Tue, 02 Dec 2025 11:51:56 +0000</pubDate>
      <link>https://forem.com/n3on/i-built-12-projects-in-12-days-and-almost-lost-my-mind-56p8</link>
      <guid>https://forem.com/n3on/i-built-12-projects-in-12-days-and-almost-lost-my-mind-56p8</guid>
      <description>&lt;p&gt;If you’ve ever said &lt;strong&gt;“I’ll start coding seriously tomorrow”&lt;/strong&gt;,&lt;br&gt;
and then tomorrow becomes &lt;em&gt;next week&lt;/em&gt;… and next week becomes&lt;br&gt;
&lt;strong&gt;“after this YouTube video”&lt;/strong&gt;…&lt;/p&gt;

&lt;p&gt;Yeah. Same.&lt;/p&gt;

&lt;p&gt;I wasn’t a “perfect” coder — I wasn’t even a consistent coder.&lt;/p&gt;

&lt;p&gt;I was more like:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Start a project → Get excited → Get stuck → Open TikTok → Never return.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;But deep inside, something had to change.&lt;/p&gt;

&lt;p&gt;So I did something… &lt;strong&gt;questionable&lt;/strong&gt;, bold, and slightly unhinged:&lt;br&gt;
I challenged myself to build &lt;strong&gt;12 projects in 12 days&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Did I suffer? Yes.&lt;br&gt;
Did I improve? &lt;em&gt;More than I expected.&lt;/em&gt;&lt;br&gt;
Would I do it again?&lt;/p&gt;

&lt;p&gt;…Let’s not talk about that yet.&lt;/p&gt;




&lt;h1&gt;
  
  
  😤 Days 1–3: “I Am Him” Energy
&lt;/h1&gt;

&lt;p&gt;I started small — a little too small.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A weather app&lt;/li&gt;
&lt;li&gt;A mini Pac-Man style game&lt;/li&gt;
&lt;li&gt;A simple note app&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I felt unstoppable. I was coding like I had a personal sponsorship from Red Bull.&lt;/p&gt;




&lt;h1&gt;
  
  
  😵 Days 4–6: Bug-Induced Hallucinations
&lt;/h1&gt;

&lt;p&gt;This is where things… shifted.&lt;/p&gt;

&lt;p&gt;You know those bugs that exist purely to test your patience?&lt;/p&gt;

&lt;p&gt;Like when a button doesn’t work because you spelled &lt;code&gt;onclick&lt;/code&gt; as &lt;code&gt;onlcik&lt;/code&gt;&lt;br&gt;
&lt;strong&gt;for 2 hours straight&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;At one point, I opened my console and it opened &lt;em&gt;back at me&lt;/em&gt;.&lt;/p&gt;




&lt;h1&gt;
  
  
  😭 Days 7–9: The Existential Dread Arc
&lt;/h1&gt;

&lt;p&gt;Halfway through, I questioned EVERYTHING:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;My skills&lt;/li&gt;
&lt;li&gt;My sanity&lt;/li&gt;
&lt;li&gt;My life decisions&lt;/li&gt;
&lt;li&gt;Whether computers were even meant for humans&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But each time I considered giving up, a tiny voice whispered:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;“Bro, you already tweeted about this challenge. You can’t embarrass yourself now.”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;So I kept going.&lt;/p&gt;




&lt;h1&gt;
  
  
  🤯 Days 10–12: Final Boss Mode
&lt;/h1&gt;

&lt;p&gt;Something weird happened:&lt;br&gt;
I started coding… calmly?&lt;/p&gt;

&lt;p&gt;My debugging got faster.&lt;br&gt;
My problem-solving improved.&lt;br&gt;
I didn’t cry (as much).&lt;/p&gt;

&lt;p&gt;By Day 12, I pushed the last project, closed VS Code, and just sat there.&lt;/p&gt;

&lt;p&gt;I felt &lt;strong&gt;peace&lt;/strong&gt;.&lt;br&gt;
Or maybe burnout. Hard to tell.&lt;/p&gt;




&lt;h1&gt;
  
  
  💡 What I Learned (that school doesn’t teach you)
&lt;/h1&gt;

&lt;h3&gt;
  
  
  ✔ Consistency &amp;gt; Motivation
&lt;/h3&gt;

&lt;p&gt;Motivation comes and goes.&lt;br&gt;
Consistency stays — especially when your pride is on the line.&lt;/p&gt;

&lt;h3&gt;
  
  
  ✔ Projects teach faster than tutorials
&lt;/h3&gt;

&lt;p&gt;You can’t “tutorial” your way into mastery.&lt;br&gt;
You need to build stuff. Break stuff. Fix stuff. Cry a bit.&lt;/p&gt;

&lt;h3&gt;
  
  
  ✔ Your future self will thank you
&lt;/h3&gt;

&lt;p&gt;Even if your current self is suffering and eating cold noodles at 2 AM.&lt;/p&gt;




&lt;h1&gt;
  
  
  🔥 Final Thoughts
&lt;/h1&gt;

&lt;p&gt;This challenge didn’t turn me into a genius overnight.&lt;/p&gt;

&lt;p&gt;But it &lt;strong&gt;changed my mindset&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;If you're a beginner reading this, let me tell you:&lt;br&gt;
You &lt;em&gt;can&lt;/em&gt; become a great developer — just don’t quit when it gets hard.&lt;/p&gt;

&lt;p&gt;Start small. Build consistently.&lt;br&gt;
And maybe don’t do 12 projects in 12 days unless you're mentally prepared.&lt;/p&gt;

&lt;p&gt;(You’re probably not. I wasn’t.)&lt;/p&gt;




&lt;h1&gt;
  
  
  ❤️ If You Enjoyed This
&lt;/h1&gt;

&lt;p&gt;Leave a comment!&lt;br&gt;
Share the article!&lt;br&gt;
Tell me if you want the &lt;strong&gt;“12 Projects in 12 Days” full breakdown + code&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I might drop it.&lt;br&gt;
After I recover.&lt;/p&gt;




</description>
      <category>beginners</category>
      <category>productivity</category>
      <category>discuss</category>
      <category>programming</category>
    </item>
    <item>
      <title>👨‍💻 Welcome to the Life of a Developer</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Mon, 24 Nov 2025 15:48:33 +0000</pubDate>
      <link>https://forem.com/n3on/welcome-to-the-life-of-a-developer-4aak</link>
      <guid>https://forem.com/n3on/welcome-to-the-life-of-a-developer-4aak</guid>
      <description>&lt;p&gt;Hey there! If you’ve ever wondered what it’s like to &lt;strong&gt;be a software developer&lt;/strong&gt;, pull up a chair, grab some coffee, and brace yourself. &lt;/p&gt;




&lt;h3&gt;
  
  
  My Daily Routine
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;9:00 AM&lt;/strong&gt; – Open laptop and stare at code for 5 minutes wondering if I'm alive.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;9:05 AM&lt;/strong&gt; – Realize I have no idea what I’m doing, Google everything.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;11:00 AM&lt;/strong&gt; – Solve a bug that shouldn’t have existed in the first place.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;2:00 PM&lt;/strong&gt; – Automate a task that takes 2 minutes, just to feel like a wizard.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;4:00 PM&lt;/strong&gt; – Remember I skipped lunch. Eat instant noodles.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;6:00 PM&lt;/strong&gt; – Code review: Cry silently while pretending to understand your teammate’s code.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;2:00 AM&lt;/strong&gt; – Push a fix to production. Panic internally. Celebrate externally. 🎉&lt;/li&gt;
&lt;/ol&gt;




&lt;h3&gt;
  
  
  Developer Truths
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Debugging&lt;/strong&gt; is like being a detective in a crime movie where you are also the murderer.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Stack Overflow&lt;/strong&gt; is basically my second home.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Coffee&lt;/strong&gt;: not a drink, a lifestyle.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Code Comments&lt;/strong&gt;: If future-me can’t understand this, no one can.
&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  Why I Love Development
&lt;/h3&gt;

&lt;p&gt;Because at the end of the day, I build things that &lt;strong&gt;make life easier&lt;/strong&gt;, &lt;strong&gt;solve problems&lt;/strong&gt;, and occasionally &lt;strong&gt;cause chaos in production&lt;/strong&gt;. And somehow, people pay me for it. 💸&lt;/p&gt;




&lt;blockquote&gt;
&lt;p&gt;"Talk is cheap. Show me the code." – Linus Torvalds&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;&lt;strong&gt;PS:&lt;/strong&gt; If you read this and laughed (or cried), &lt;strong&gt;star this repo&lt;/strong&gt;. You know, for moral support. &lt;strong&gt;&lt;a href="https://github.com/kawacukennedy/life_os.git" rel="noopener noreferrer"&gt;Star it here!&lt;/a&gt;&lt;/strong&gt; ⭐&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>devhumor</category>
      <category>career</category>
    </item>
    <item>
      <title>🚀 Autonomous Process Auditor (APA)</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Sat, 22 Nov 2025 22:43:08 +0000</pubDate>
      <link>https://forem.com/n3on/autonomous-process-auditor-apa-3p0p</link>
      <guid>https://forem.com/n3on/autonomous-process-auditor-apa-3p0p</guid>
      <description>&lt;h3&gt;
  
  
  &lt;em&gt;AI that doesn’t assist — it works.&lt;/em&gt;
&lt;/h3&gt;

&lt;p&gt;I just built &lt;strong&gt;Autonomous Process Auditor (APA)&lt;/strong&gt; for the &lt;strong&gt;Agentic AI Hackathon (IBM watsonx Orchestrate)&lt;/strong&gt; — and it might be the most &lt;em&gt;useful&lt;/em&gt; AI agent I’ve ever created.&lt;/p&gt;

&lt;p&gt;Audits suck.&lt;br&gt;
They’re slow, manual, error-prone, and nobody wants to do them.&lt;/p&gt;

&lt;p&gt;So I built an AI agent that does &lt;strong&gt;100% of the auditing work&lt;/strong&gt; automatically.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔥 What APA Does
&lt;/h2&gt;

&lt;h3&gt;
  
  
  ✅ &lt;strong&gt;Automates end-to-end auditing&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;No more spreadsheets. No more human mistakes.&lt;/p&gt;

&lt;h3&gt;
  
  
  🤖 &lt;strong&gt;Validates workflows across tools&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Slack, Jira, Notion, Gmail, internal systems — APA checks everything.&lt;/p&gt;

&lt;h3&gt;
  
  
  📊 &lt;strong&gt;Detects anomalies in real time&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Human reviewers catch mistakes late. AI catches them instantly.&lt;/p&gt;

&lt;h3&gt;
  
  
  ⚡ &lt;strong&gt;Generates audit trails automatically&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Every action. Every timestamp. Fully traceable &amp;amp; exportable.&lt;/p&gt;

&lt;h3&gt;
  
  
  🔗 &lt;strong&gt;Uses IBM watsonx Orchestrate to chain skills&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;APA can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pull data&lt;/li&gt;
&lt;li&gt;Analyze patterns&lt;/li&gt;
&lt;li&gt;Flag issues&lt;/li&gt;
&lt;li&gt;Write reports&lt;/li&gt;
&lt;li&gt;Notify teams&lt;/li&gt;
&lt;li&gt;Log results
—all without human intervention.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧠 Why This Matters
&lt;/h2&gt;

&lt;p&gt;Most “AI assistants” still need humans for everything important.&lt;br&gt;
APA isn’t an assistant.&lt;br&gt;
It’s an &lt;strong&gt;Agentic AI system&lt;/strong&gt; that completes tasks &lt;em&gt;autonomously&lt;/em&gt; from start to finish.&lt;/p&gt;

&lt;p&gt;This is the future of work.&lt;br&gt;
Not chatbots — &lt;em&gt;agents that handle entire workflows&lt;/em&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  🏆 If this doesn’t win the hackathon…
&lt;/h2&gt;

&lt;p&gt;…then maybe I need to build an &lt;strong&gt;Autonomous Judge Auditor&lt;/strong&gt; too 😤🔥&lt;/p&gt;




&lt;h2&gt;
  
  
  💬 What do you think?
&lt;/h2&gt;

&lt;p&gt;Would you trust an AI agent to run audits at your company?&lt;br&gt;
Or is this too much automation?&lt;/p&gt;

&lt;p&gt;Let’s talk 👇&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>automation</category>
      <category>showdev</category>
    </item>
    <item>
      <title>🚀 The Unexpected Lesson That Finally Made Me a Better Developer</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Thu, 20 Nov 2025 06:44:04 +0000</pubDate>
      <link>https://forem.com/n3on/the-unexpected-lesson-that-finally-made-me-a-better-developer-69h</link>
      <guid>https://forem.com/n3on/the-unexpected-lesson-that-finally-made-me-a-better-developer-69h</guid>
      <description>&lt;p&gt;Hi everyone 👋&lt;/p&gt;

&lt;p&gt;I’ve been building things on the internet for a few years now. Some projects failed quietly, some did well, and some never escaped the &lt;em&gt;"idea in my notes app"&lt;/em&gt; stage.&lt;/p&gt;

&lt;p&gt;But a few weeks ago, something strange happened. I hit a wall.&lt;/p&gt;

&lt;p&gt;Not the typical &lt;em&gt;"debugging until 3am"&lt;/em&gt; wall, I’m talking about that moment where you open your laptop… and just stare. Nothing feels exciting. No idea feels good enough. You keep scrolling, comparing yourself to devs shipping insane stuff every other week.&lt;/p&gt;

&lt;p&gt;And I realized something:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I wasn’t stuck because I lacked skills. I was stuck because I forgot &lt;em&gt;why&lt;/em&gt; I code.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🌱 The Moment Everything Shifted
&lt;/h2&gt;

&lt;p&gt;I was working on a side project I was really excited about. But somewhere along the way, I started optimizing the wrong things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reading 10 articles before writing a single line of code&lt;/li&gt;
&lt;li&gt;Trying to make every feature “startup-worthy”&lt;/li&gt;
&lt;li&gt;Refactoring code that didn’t even exist yet&lt;/li&gt;
&lt;li&gt;Watching more tutorials than actually building&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;One night, instead of coding, I shut everything down and took a walk. No headphones. No screens.&lt;/p&gt;

&lt;p&gt;And I asked myself a simple question:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"What tiny thing can I build that solves a real problem I personally feel?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Not something impressive. Not something viral.&lt;/p&gt;

&lt;p&gt;Just something &lt;em&gt;useful&lt;/em&gt;. For me.&lt;/p&gt;

&lt;p&gt;That question changed everything.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚡ I Built Something Small, And It Completely Reignited My Momentum
&lt;/h2&gt;

&lt;p&gt;The next morning I built a tiny tool to automate something I did almost daily.&lt;/p&gt;

&lt;p&gt;Nothing fancy.&lt;/p&gt;

&lt;p&gt;No authentication. No animations. No pixel-perfect UI.&lt;/p&gt;

&lt;p&gt;But for the first time in months, I &lt;em&gt;shipped&lt;/em&gt; something.&lt;/p&gt;

&lt;p&gt;And that tiny win made me feel something I hadn’t felt in a while:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Momentum.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🎯 The Real Secret to Leveling Up as a Developer
&lt;/h2&gt;

&lt;p&gt;Here’s the thing nobody tells you:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;You don’t grow from consuming. You grow from creating.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Every dev you admire learned this the hard way.&lt;/p&gt;

&lt;p&gt;They didn’t magically know everything before they started.&lt;/p&gt;

&lt;p&gt;They built things they weren’t ready for.&lt;/p&gt;

&lt;p&gt;They made mistakes.&lt;/p&gt;

&lt;p&gt;They Googled everything.&lt;/p&gt;

&lt;p&gt;They broke production (more than once).&lt;/p&gt;

&lt;p&gt;And they kept going.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧨 Why Your Next Project Should Be Small, Imperfect, and Personal
&lt;/h2&gt;

&lt;p&gt;If you’re feeling stuck too, try this:&lt;/p&gt;

&lt;h3&gt;
  
  
  ✔️ Build something just for yourself
&lt;/h3&gt;

&lt;p&gt;Not the world. Not investors. Not dev influencers. &lt;em&gt;You.&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  ✔️ Limit yourself to one feature
&lt;/h3&gt;

&lt;p&gt;No feature creep. No perfection.&lt;/p&gt;

&lt;h3&gt;
  
  
  ✔️ Ship it in 48 hours
&lt;/h3&gt;

&lt;p&gt;Because constraints create creativity.&lt;/p&gt;

&lt;h3&gt;
  
  
  ✔️ Share what you learned
&lt;/h3&gt;

&lt;p&gt;That’s the part most people skip — but it’s where the growth really happens.&lt;/p&gt;




&lt;h2&gt;
  
  
  ❤️ This Is Your Reminder
&lt;/h2&gt;

&lt;p&gt;You're not behind.&lt;br&gt;
You're not late.&lt;br&gt;
You're not supposed to know everything.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You just have to start.&lt;/strong&gt; Even if it’s small. Even if it's imperfect. Even if it’s a little messy.&lt;/p&gt;

&lt;p&gt;Your future self will thank you.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔥 Before You Go
&lt;/h2&gt;

&lt;p&gt;If you’re reading this and it resonated, drop a comment:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What’s the small project &lt;em&gt;you&lt;/em&gt; want to ship this week?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Let’s hype each other up and build cool stuff together.&lt;/p&gt;




&lt;p&gt;Thanks for reading 💙&lt;/p&gt;

&lt;p&gt;If this helped you, feel free to follow me — I share real, honest content about coding, learning, and building things that matter.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>career</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>I Built a “Useless” App at 2 AM… And People Actually Loved It 😳</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Mon, 17 Nov 2025 19:32:05 +0000</pubDate>
      <link>https://forem.com/n3on/i-built-a-useless-app-at-2-am-and-people-actually-loved-it-4n87</link>
      <guid>https://forem.com/n3on/i-built-a-useless-app-at-2-am-and-people-actually-loved-it-4n87</guid>
      <description>&lt;p&gt;Late one night, fueled by too much coffee and existential dread about my career, I decided to build an app.  &lt;/p&gt;

&lt;p&gt;Was it perfect? Nope.&lt;br&gt;&lt;br&gt;
Was it pretty? Definitely not.&lt;br&gt;&lt;br&gt;
Did I almost delete it multiple times? Absolutely.  &lt;/p&gt;

&lt;p&gt;But here’s the insane part: when I shared it with a few friends, &lt;strong&gt;they actually started using it&lt;/strong&gt;. And that’s when I realized:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You don’t need to build a masterpiece. You just need to build something that works.  &lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  5 Brutal Truths About Shipping Stuff No One Asked For
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Your first version will be ugly.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Like, really ugly. And that’s okay. People don’t care if it’s polished—they care if it &lt;strong&gt;solves a problem&lt;/strong&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Tiny problems are gold mines.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
That small frustration you’ve learned to ignore? That’s your next app idea. Seriously.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Feedback &amp;gt; Planning. Always.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
You can spend weeks designing the “perfect” app… or 3 hours getting real feedback that actually matters. Hint: choose the latter.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Share your mess.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Don’t wait for the “finished product.” People love seeing progress, learning curves, and even failures. Authenticity = engagement.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Celebrate weird wins.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
That one person who screenshots your app and says “This actually helps me”? That’s proof your work matters. Pat yourself on the back. You earned it.  &lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;Here’s the kicker: that midnight project that I thought was &lt;strong&gt;useless&lt;/strong&gt; is now being used by a small community.  &lt;/p&gt;

&lt;p&gt;And the lesson?  &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You don’t have to wait for inspiration. You don’t have to wait for perfection. You just have to &lt;strong&gt;start&lt;/strong&gt;.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;💬 &lt;strong&gt;Your turn:&lt;/strong&gt; Have you ever built something “just for fun” that actually worked? Or failed gloriously? Drop your story in the comments. Let’s normalize messy wins.  &lt;/p&gt;

&lt;p&gt;🔁 &lt;strong&gt;Pro tip:&lt;/strong&gt; Share this with a dev friend who’s stuck on a side project. You might be the push they need to finally ship.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>🚀 Follow Me on X (Twitter) — Let’s Build Something Insane Together</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Mon, 17 Nov 2025 12:09:10 +0000</pubDate>
      <link>https://forem.com/n3on/follow-me-on-x-twitter-lets-build-something-insane-together-nmn</link>
      <guid>https://forem.com/n3on/follow-me-on-x-twitter-lets-build-something-insane-together-nmn</guid>
      <description>&lt;p&gt;Hey Dev Community! 👋&lt;/p&gt;

&lt;p&gt;I'm &lt;strong&gt;on a mission to build, ship, and share&lt;/strong&gt; everything I learn in &lt;strong&gt;AI, Web Development, Blockchain, Growth Hacking, and Indie Hacking&lt;/strong&gt; — all in public.&lt;/p&gt;

&lt;p&gt;If you're obsessed with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;⚡ Insanely practical coding tutorials&lt;/li&gt;
&lt;li&gt;🤖 AI tools, prompts, and workflows&lt;/li&gt;
&lt;li&gt;🛠️ Real-life projects built from scratch&lt;/li&gt;
&lt;li&gt;🔥 Growth strategies for devs and creators&lt;/li&gt;
&lt;li&gt;💼 Shipping ideas fast (and actually finishing them)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then you’re going to love what I drop on &lt;strong&gt;X (Twitter)&lt;/strong&gt; every single day.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧠 What You’ll Get on My X Feed
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. &lt;strong&gt;Actionable Dev Tips&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;No fluff. Just real examples, code snippets, and things you can implement today.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. &lt;strong&gt;Public Building&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;I share everything I’m working on — wins, mistakes, failures, breakthroughs.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. &lt;strong&gt;Viral-Level AI Prompts&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Prompts for devs, designers, marketers, founders.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. &lt;strong&gt;Mini Deep-Dives&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;On frontend, backend, full-stack architecture, and smarter workflows.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. &lt;strong&gt;Motivation for Builders&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Because dev burnout is real.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔥 Why Follow Me?
&lt;/h2&gt;

&lt;p&gt;Because I'm not just tweeting — I'm &lt;strong&gt;designing content to make you level up fast&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I break down:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How to think like a developer&lt;/li&gt;
&lt;li&gt;How to move faster as a builder&lt;/li&gt;
&lt;li&gt;How to turn simple ideas into real projects&lt;/li&gt;
&lt;li&gt;How to use AI to supercharge your workflow&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All in &lt;strong&gt;30–180 second reads&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  💎 Bonus: I Interact With My Followers
&lt;/h2&gt;

&lt;p&gt;Ask a question? I reply.&lt;br&gt;
Need help on a project? I jump in.&lt;br&gt;
Need a custom prompt? I create one.&lt;/p&gt;

&lt;p&gt;I’m building a &lt;strong&gt;community of sharp developers, indie hackers, and technical creatives&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  🎯 My X Content Strategy (aka Why This Will Be Worth Your Follow)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  🟦 High-value threads
&lt;/h3&gt;

&lt;h3&gt;
  
  
  🟪 Memes + humor to keep it fun
&lt;/h3&gt;

&lt;h3&gt;
  
  
  🟩 Quick tutorials
&lt;/h3&gt;

&lt;h3&gt;
  
  
  🟥 Hot takes (that spark discussions)
&lt;/h3&gt;

&lt;h3&gt;
  
  
  🟧 Live project updates
&lt;/h3&gt;

&lt;h3&gt;
  
  
  🟨 Community challenges
&lt;/h3&gt;

&lt;p&gt;This isn’t a typical "follow me" pitch. This is an invite to a &lt;strong&gt;high-signal feed&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 Follow Me on X
&lt;/h2&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://x.com/Arnaud_Kennedy" rel="noopener noreferrer"&gt;https://x.com/Arnaud_Kennedy&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  ⭐ If You Found This Inspiring
&lt;/h2&gt;

&lt;p&gt;Drop a ❤️ or leave a comment.&lt;/p&gt;

&lt;p&gt;Let’s grow together.&lt;br&gt;
Let’s build together.&lt;br&gt;
Let’s win together.&lt;/p&gt;

&lt;p&gt;— &lt;strong&gt;Kennedy&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>programming</category>
      <category>webdev</category>
      <category>developer</category>
    </item>
    <item>
      <title>🚀 Meet LoreSync: AI + Blockchain for Every Storyteller’s Universe</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Mon, 17 Nov 2025 09:57:42 +0000</pubDate>
      <link>https://forem.com/n3on/meet-loresync-ai-blockchain-for-every-storytellers-universe-4d0i</link>
      <guid>https://forem.com/n3on/meet-loresync-ai-blockchain-for-every-storytellers-universe-4d0i</guid>
      <description>&lt;p&gt;Ever wish you could &lt;strong&gt;bring your fictional worlds to life&lt;/strong&gt; without losing track of characters, lore, or IP rights?  &lt;/p&gt;

&lt;p&gt;Meet &lt;strong&gt;LoreSync&lt;/strong&gt; – the &lt;strong&gt;first AI-powered platform to help creators build, manage, and monetize their fictional universes&lt;/strong&gt; on the &lt;strong&gt;Story blockchain&lt;/strong&gt;.  &lt;/p&gt;




&lt;h2&gt;
  
  
  🧩 The Problem
&lt;/h2&gt;

&lt;p&gt;Creators—writers, game developers, and storytellers—spend &lt;strong&gt;hours tracking characters, worlds, and IP rights&lt;/strong&gt;.  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Multiple documents
&lt;/li&gt;
&lt;li&gt;Disjointed storylines
&lt;/li&gt;
&lt;li&gt;No easy way to monetize characters or universes
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sound familiar? Yeah, it’s messy.  &lt;/p&gt;




&lt;h2&gt;
  
  
  ⚡ The Solution
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;LoreSync&lt;/strong&gt; combines:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;AI-assisted lore generation&lt;/strong&gt; – create compelling characters, locations, and stories in seconds.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Blockchain-based IP tokenization&lt;/strong&gt; – mint your characters and universes as NFTs.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Collaboration tools&lt;/strong&gt; – build universes with friends or teams, without losing track of changes.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Essentially, it’s &lt;strong&gt;Notion + AI + NFTs&lt;/strong&gt; for storytellers.  &lt;/p&gt;




&lt;h2&gt;
  
  
  🎯 How It Works
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Build a Universe&lt;/strong&gt; – drag-and-drop world elements, characters, and plotlines.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI-Powered Storytelling&lt;/strong&gt; – let AI suggest new plotlines, dialogue, or lore details.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tokenize Your IP&lt;/strong&gt; – mint characters and stories as NFTs on &lt;strong&gt;Story Layer-1 blockchain&lt;/strong&gt;.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Collaborate &amp;amp; Monetize&lt;/strong&gt; – co-create, license, or sell your IP to other creators or games.
&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  💡 Why It Matters
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Save Time:&lt;/strong&gt; AI handles the heavy lifting of lore generation.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Monetize Your Creativity:&lt;/strong&gt; NFTs and tokenized IP mean creators get paid.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Global Collaboration:&lt;/strong&gt; Multiple creators can work on the same universe seamlessly.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Future-Proof IP:&lt;/strong&gt; Immutable blockchain records protect your creations.
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🌍 Who Should Use LoreSync?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Indie game developers
&lt;/li&gt;
&lt;li&gt;Novelists &amp;amp; screenwriters
&lt;/li&gt;
&lt;li&gt;Worldbuilders &amp;amp; tabletop RPG creators
&lt;/li&gt;
&lt;li&gt;NFT collectors &amp;amp; IP investors
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Basically, anyone building fictional universes that deserve &lt;strong&gt;ownership, collaboration, and monetization&lt;/strong&gt;.  &lt;/p&gt;




&lt;h2&gt;
  
  
  🚀 Join the Revolution
&lt;/h2&gt;

&lt;p&gt;LoreSync isn’t just another tool—it’s a &lt;strong&gt;creator’s superpower&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;
Whether you’re a solo storyteller or part of a team, you can now &lt;strong&gt;turn ideas into monetized, collaborative, AI-powered universes&lt;/strong&gt;.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Stay tuned:&lt;/strong&gt; We’re launching our hackathon MVP soon, and early adopters will get exclusive access to AI-powered universe creation tools!  &lt;/p&gt;




&lt;h3&gt;
  
  
  🔗 TL;DR
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;AI + Blockchain for storytellers
&lt;/li&gt;
&lt;li&gt;Mint characters &amp;amp; universes as NFTs
&lt;/li&gt;
&lt;li&gt;Collaborate globally
&lt;/li&gt;
&lt;li&gt;Monetize your IP
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;💬 What’s the first universe you’d build with LoreSync? Comment below!  &lt;/p&gt;

</description>
      <category>nft</category>
      <category>blockchain</category>
      <category>ai</category>
      <category>web3</category>
    </item>
    <item>
      <title>The 7 Stages of a Developer Learning a New Framework (And Why You’ll Survive)</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Sun, 16 Nov 2025 18:42:06 +0000</pubDate>
      <link>https://forem.com/n3on/the-7-stages-of-a-developer-learning-a-new-framework-and-why-youll-survive-c77</link>
      <guid>https://forem.com/n3on/the-7-stages-of-a-developer-learning-a-new-framework-and-why-youll-survive-c77</guid>
      <description>&lt;p&gt;Ever started learning a new framework and felt like you just enrolled in Hogwarts’ Advanced Dark Arts class? Yeah… me too. Here’s the &lt;strong&gt;7-stage developer journey&lt;/strong&gt; you probably didn’t know you’d experience:&lt;/p&gt;




&lt;h2&gt;
  
  
  1. Excitement
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;"This is amazing! I’m finally going to master this framework and become a rockstar developer!"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;You read the docs, watch 3 tutorials, and your brain is on fire. You’re ready to build the next Instagram… or maybe Facebook 2.0.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. Confusion
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;"Wait, why won’t this component render?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;You realize that 80% of your time is spent on &lt;strong&gt;imports, props, and dependency errors&lt;/strong&gt;. You stare at your code like it owes you money.&lt;/p&gt;




&lt;h2&gt;
  
  
  3. The StackOverflow Spiral
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;"Maybe someone already asked this..."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;You’re deep in StackOverflow threads. Copy-paste solutions. Realize your problem was a missing semicolon. Welcome to Dev Hell.&lt;/p&gt;




&lt;h2&gt;
  
  
  4. Imposter Syndrome
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;"Am I even a real developer?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;You see examples online, all perfect, and feel like your code belongs in a museum of mistakes. (It probably does.)&lt;/p&gt;




&lt;h2&gt;
  
  
  5. Tiny Victory
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;"It worked! I did the thing!"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;You manage to render a button. A single button. But it feels like launching a rocket. Celebrate it like you just won a hackathon.&lt;/p&gt;




&lt;h2&gt;
  
  
  6. Mastery (Sort Of)
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;"Okay… I kinda get it now."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;You understand the core concepts, your app isn’t broken every 5 minutes, and you can explain things to other devs without sweating bullets. You feel like a wizard… almost.&lt;/p&gt;




&lt;h2&gt;
  
  
  7. Repeat
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;"What’s the next framework again?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Congrats, now it’s time to learn the next shiny tech. The cycle continues. But don’t worry — we’ve all been there.&lt;/p&gt;




&lt;h3&gt;
  
  
  Bonus Tip:
&lt;/h3&gt;

&lt;p&gt;Take notes, build tiny projects, and don’t be afraid to &lt;strong&gt;break things intentionally&lt;/strong&gt;. You’ll learn more in one bug than in ten tutorials.&lt;/p&gt;




&lt;p&gt;If this post made you laugh or nod in agreement, &lt;strong&gt;follow me for more dev survival stories&lt;/strong&gt;. Because let’s be honest… &lt;strong&gt;we’re all just figuring it out one semicolon at a time.&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Question for you:&lt;/strong&gt; What stage are you stuck in right now? Comment below — let’s commiserate.  &lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>programming</category>
    </item>
    <item>
      <title>I Tried Coding 10 Hours a Day for 30 Days — Here’s What Happened</title>
      <dc:creator>n3on</dc:creator>
      <pubDate>Fri, 14 Nov 2025 07:39:10 +0000</pubDate>
      <link>https://forem.com/n3on/i-tried-coding-10-hours-a-day-for-30-days-heres-what-happened-54ia</link>
      <guid>https://forem.com/n3on/i-tried-coding-10-hours-a-day-for-30-days-heres-what-happened-54ia</guid>
      <description>&lt;p&gt;We’ve all seen the advice: &lt;em&gt;“Just code every day and you’ll become a great developer.”&lt;/em&gt;&lt;br&gt;&lt;br&gt;
Sounds simple, right? I decided to put it to the test—coding &lt;strong&gt;10 hours a day for 30 days straight&lt;/strong&gt;. Here’s what actually happened.&lt;/p&gt;




&lt;h2&gt;
  
  
  Week 1: The Excitement &amp;amp; Burnout
&lt;/h2&gt;

&lt;p&gt;At first, it felt amazing. Every line of code was like a tiny victory. I was learning fast and feeling productive.  &lt;/p&gt;

&lt;p&gt;…but by day 5, fatigue hit hard. My brain started glitching over simple problems, and I realized motivation alone isn’t sustainable.&lt;/p&gt;




&lt;h2&gt;
  
  
  Week 2-3: The Plateau
&lt;/h2&gt;

&lt;p&gt;Here’s the hard truth: coding longer hours doesn’t always mean better results. I hit a plateau where I was “doing” a lot but &lt;strong&gt;learning less efficiently&lt;/strong&gt;.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pro tip:&lt;/strong&gt; Focused 2-hour deep work sprints are more powerful than marathon sessions.&lt;/p&gt;




&lt;h2&gt;
  
  
  Week 4: Reflection &amp;amp; Growth
&lt;/h2&gt;

&lt;p&gt;By the last week, I shifted my approach:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Pair programming&lt;/strong&gt; with a friend for accountability
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Documenting learnings&lt;/strong&gt; instead of just coding
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Taking strategic breaks&lt;/strong&gt; to avoid burnout
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The result? I finished the month with &lt;strong&gt;more skills, projects, and clarity&lt;/strong&gt; than I ever would have by mindlessly grinding.&lt;/p&gt;




&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Consistency &amp;gt; Hours&lt;/strong&gt; – 1–2 focused hours daily beats random all-nighters.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Document &amp;amp; Reflect&lt;/strong&gt; – Writing down what you learn accelerates growth.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Breaks Are Essential&lt;/strong&gt; – Burnout kills learning faster than failure.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Collaboration Matters&lt;/strong&gt; – Pairing with others boosts retention &amp;amp; motivation.
&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;💡 Coding isn’t just about writing lines—it’s about learning, reflecting, and growing.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Your turn:&lt;/strong&gt; How do you structure your coding routine for maximum growth? Reply below—I’d love to hear your strategies!&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>learning</category>
      <category>programming</category>
      <category>developers</category>
    </item>
  </channel>
</rss>
