<?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: Kouadio mathias Kouame</title>
    <description>The latest articles on Forem by Kouadio mathias Kouame (@kouadio_mathiaskouame_a6).</description>
    <link>https://forem.com/kouadio_mathiaskouame_a6</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%2F3927615%2Fadbf114a-c494-4f58-9025-2b912c93a5b1.png</url>
      <title>Forem: Kouadio mathias Kouame</title>
      <link>https://forem.com/kouadio_mathiaskouame_a6</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/kouadio_mathiaskouame_a6"/>
    <language>en</language>
    <item>
      <title>Why Cron Expressions Still Confuse Developers (And Why I Built a Visual Cron Generator)</title>
      <dc:creator>Kouadio mathias Kouame</dc:creator>
      <pubDate>Sat, 16 May 2026 09:23:45 +0000</pubDate>
      <link>https://forem.com/kouadio_mathiaskouame_a6/why-cron-expressions-still-confuse-developers-and-why-i-built-a-visual-cron-generator-4fic</link>
      <guid>https://forem.com/kouadio_mathiaskouame_a6/why-cron-expressions-still-confuse-developers-and-why-i-built-a-visual-cron-generator-4fic</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frxtt419js7t0hl84e72z.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frxtt419js7t0hl84e72z.png" alt=" " width="793" height="596"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Cron expressions are everywhere in development.&lt;/p&gt;

&lt;p&gt;They schedule:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;backups&lt;/li&gt;
&lt;li&gt;server maintenance&lt;/li&gt;
&lt;li&gt;automated emails&lt;/li&gt;
&lt;li&gt;API jobs&lt;/li&gt;
&lt;li&gt;database cleanup&lt;/li&gt;
&lt;li&gt;CI/CD workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And yet, even experienced developers still regularly search things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;“cron every 5 minutes”&lt;/li&gt;
&lt;li&gt;“cron every Monday at 8am”&lt;/li&gt;
&lt;li&gt;“what does */15 * * * * mean?”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The syntax is powerful, but not exactly intuitive.&lt;/p&gt;

&lt;p&gt;A single misplaced character can completely change when a task runs.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem With Cron Syntax
&lt;/h2&gt;

&lt;p&gt;Cron expressions were designed for machines, not humans.&lt;/p&gt;

&lt;p&gt;At first glance, something like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;0 &lt;span class="k"&gt;*&lt;/span&gt;/6 &lt;span class="k"&gt;*&lt;/span&gt; &lt;span class="k"&gt;*&lt;/span&gt; &lt;span class="k"&gt;*&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;doesn’t immediately communicate:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Run every 6 hours.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And more complex schedules become difficult to read quickly.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="k"&gt;*&lt;/span&gt;/15 8-17 &lt;span class="k"&gt;*&lt;/span&gt; &lt;span class="k"&gt;*&lt;/span&gt; 1-5
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;means:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Run every 15 minutes between 8AM and 5PM on weekdays.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That’s useful, but not exactly obvious when you see it for the first time.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I Built a Visual Cron Generator
&lt;/h2&gt;

&lt;p&gt;I kept switching between documentation pages, cheat sheets and online parsers just to verify cron schedules.&lt;/p&gt;

&lt;p&gt;So I decided to build a simpler browser-based Cron Generator on Devstoolsbox.&lt;/p&gt;

&lt;p&gt;The goal was straightforward:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;visually create cron expressions&lt;/li&gt;
&lt;li&gt;instantly understand what they mean&lt;/li&gt;
&lt;li&gt;preview next execution times&lt;/li&gt;
&lt;li&gt;reduce scheduling mistakes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of memorizing syntax constantly, developers can simply build schedules visually and export the cron expression directly.&lt;/p&gt;




&lt;h2&gt;
  
  
  Common Cron Mistakes
&lt;/h2&gt;

&lt;p&gt;While building the tool, I noticed several mistakes developers make repeatedly.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Confusing day-of-month and day-of-week
&lt;/h3&gt;

&lt;p&gt;Many cron systems interpret these fields differently, which can lead to unexpected schedules.&lt;/p&gt;




&lt;h3&gt;
  
  
  2. Using overly aggressive intervals
&lt;/h3&gt;

&lt;p&gt;Running jobs every minute sounds harmless until several background tasks begin stacking together.&lt;/p&gt;




&lt;h3&gt;
  
  
  3. Forgetting timezone differences
&lt;/h3&gt;

&lt;p&gt;Cron schedules running on cloud servers often use UTC rather than local time.&lt;/p&gt;




&lt;h3&gt;
  
  
  4. Copy-pasting expressions without understanding them
&lt;/h3&gt;

&lt;p&gt;A surprising number of developers use cron snippets found online without fully verifying what they actually do.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Visual Tools Matter More Than People Think
&lt;/h2&gt;

&lt;p&gt;A lot of developer tools were built years ago with very technical interfaces.&lt;/p&gt;

&lt;p&gt;Modern workflows increasingly favor tools that are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;faster&lt;/li&gt;
&lt;li&gt;clearer&lt;/li&gt;
&lt;li&gt;mobile-friendly&lt;/li&gt;
&lt;li&gt;easier to scan visually&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s especially true for cron expressions because scheduling mistakes are often difficult to debug later.&lt;/p&gt;

&lt;p&gt;One wrong field can silently break automations for weeks.&lt;/p&gt;




&lt;h2&gt;
  
  
  Browser-Based and Privacy Friendly
&lt;/h2&gt;

&lt;p&gt;Another thing I cared about was keeping the tool lightweight and browser-based.&lt;/p&gt;

&lt;p&gt;No account required.&lt;br&gt;
No unnecessary complexity.&lt;br&gt;
No server-side processing for simple schedule generation.&lt;/p&gt;

&lt;p&gt;Just open the page and generate cron expressions instantly.&lt;/p&gt;




&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Cron syntax probably isn’t disappearing anytime soon.&lt;/p&gt;

&lt;p&gt;Even with newer automation platforms, cron remains deeply embedded in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Linux servers&lt;/li&gt;
&lt;li&gt;cloud infrastructure&lt;/li&gt;
&lt;li&gt;CI/CD systems&lt;/li&gt;
&lt;li&gt;DevOps workflows&lt;/li&gt;
&lt;li&gt;containers&lt;/li&gt;
&lt;li&gt;scheduled APIs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The syntax is powerful, but understanding it quickly still matters.&lt;/p&gt;

&lt;p&gt;That’s why I built a visual cron generator focused on readability and simplicity.&lt;/p&gt;

&lt;p&gt;You can try it here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.devstoolsbox.dev/tools/cron-generator/?utm_source=chatgpt.com" rel="noopener noreferrer"&gt;Cron Generator — Devstoolsbox&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’d also love to know which cron expressions developers still find the most confusing today.&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>automation</category>
      <category>productivity</category>
      <category>showdev</category>
      <category>tooling</category>
    </item>
    <item>
      <title>I Built BuildFlow AI — Premium Background Animations for Modern Web Interfaces</title>
      <dc:creator>Kouadio mathias Kouame</dc:creator>
      <pubDate>Tue, 12 May 2026 17:43:45 +0000</pubDate>
      <link>https://forem.com/kouadio_mathiaskouame_a6/i-built-buildflow-ai-premium-background-animations-for-modern-web-interfaces-32k7</link>
      <guid>https://forem.com/kouadio_mathiaskouame_a6/i-built-buildflow-ai-premium-background-animations-for-modern-web-interfaces-32k7</guid>
      <description>&lt;p&gt;Modern websites are no longer just static pages.&lt;/p&gt;

&lt;p&gt;Today, motion design plays a huge role in how users perceive:&lt;/p&gt;

&lt;p&gt;SaaS products&lt;br&gt;
AI tools&lt;br&gt;
landing pages&lt;br&gt;
portfolios&lt;br&gt;
creative experiences&lt;/p&gt;

&lt;p&gt;But during my projects, I noticed something frustrating:&lt;/p&gt;

&lt;p&gt;Most background animations online are either:&lt;/p&gt;

&lt;p&gt;too heavy,&lt;br&gt;
badly optimized,&lt;br&gt;
difficult to customize,&lt;br&gt;
or visually outdated.&lt;/p&gt;

&lt;p&gt;So I started building something different:&lt;/p&gt;

&lt;p&gt;✨ BuildFlow AI&lt;/p&gt;

&lt;p&gt;A collection of premium cinematic background animations designed for:&lt;/p&gt;

&lt;p&gt;React&lt;br&gt;
Tailwind CSS&lt;br&gt;
Next.js&lt;br&gt;
modern web interfaces&lt;/p&gt;

&lt;p&gt;The goal was simple:&lt;/p&gt;

&lt;p&gt;Create animations that look immersive and futuristic while remaining lightweight and production-friendly.&lt;/p&gt;

&lt;p&gt;What I focused on&lt;/p&gt;

&lt;p&gt;Instead of adding thousands of particles everywhere, I focused on:&lt;/p&gt;

&lt;p&gt;✅ smooth motion&lt;br&gt;
✅ cinematic atmosphere&lt;br&gt;
✅ low GPU/CPU usage&lt;br&gt;
✅ responsive rendering&lt;br&gt;
✅ modern UI aesthetics&lt;br&gt;
✅ export-ready integrations&lt;/p&gt;

&lt;p&gt;Current animations&lt;/p&gt;

&lt;p&gt;Some of the animations currently available include:&lt;/p&gt;

&lt;p&gt;Neural Network&lt;br&gt;
Aurora Effects&lt;br&gt;
Grid Warp&lt;br&gt;
Matrix Rain&lt;br&gt;
Particle Tunnel&lt;br&gt;
Holographic Waves&lt;br&gt;
Liquid Mesh Gradient&lt;br&gt;
Starfield Warp&lt;/p&gt;

&lt;p&gt;Each animation is built to feel:&lt;/p&gt;

&lt;p&gt;modern&lt;br&gt;
immersive&lt;br&gt;
visually clean&lt;br&gt;
optimized for real websites&lt;br&gt;
Performance became a priority&lt;/p&gt;

&lt;p&gt;One thing I learned while building this project:&lt;/p&gt;

&lt;p&gt;Beautiful animations are useless if they destroy performance.&lt;/p&gt;

&lt;p&gt;So I spent a lot of time optimizing:&lt;/p&gt;

&lt;p&gt;animation lifecycle&lt;br&gt;
canvas rendering&lt;br&gt;
IntersectionObserver pause systems&lt;br&gt;
tab visibility handling&lt;br&gt;
adaptive FPS&lt;br&gt;
mobile reduction strategies&lt;br&gt;
cleanup systems&lt;br&gt;
lightweight rendering techniques&lt;/p&gt;

&lt;p&gt;The goal was to create animations that developers can actually use in production.&lt;/p&gt;

&lt;p&gt;Tech stack&lt;/p&gt;

&lt;p&gt;Built with:&lt;/p&gt;

&lt;p&gt;React&lt;br&gt;
Vite&lt;br&gt;
Tailwind CSS&lt;/p&gt;

&lt;p&gt;The platform also supports:&lt;/p&gt;

&lt;p&gt;React exports&lt;br&gt;
Tailwind exports&lt;br&gt;
Next.js integration&lt;br&gt;
standalone HTML exports&lt;br&gt;
Biggest lesson from this project&lt;/p&gt;

&lt;p&gt;I realized that premium motion design is not about adding more effects.&lt;/p&gt;

&lt;p&gt;It’s about:&lt;/p&gt;

&lt;p&gt;atmosphere,&lt;br&gt;
subtle movement,&lt;br&gt;
depth,&lt;br&gt;
smooth interactions,&lt;br&gt;
and respecting performance constraints.&lt;/p&gt;

&lt;p&gt;Sometimes a simple gradient with elegant motion feels more premium than a huge particle system.&lt;/p&gt;

&lt;p&gt;Current direction&lt;/p&gt;

&lt;p&gt;Right now I’m focusing on:&lt;/p&gt;

&lt;p&gt;polishing the UI&lt;br&gt;
improving exports&lt;br&gt;
optimizing performance&lt;br&gt;
creating animation detail pages&lt;br&gt;
improving SEO&lt;br&gt;
building a better developer experience&lt;br&gt;
Final thoughts&lt;/p&gt;

&lt;p&gt;BuildFlow AI started as an experiment around creative frontend development, but it’s slowly becoming a real product.&lt;/p&gt;

&lt;p&gt;Still a lot to improve, but I’m excited to keep building it. &lt;/p&gt;

&lt;h1&gt;
  
  
  webdev #frontend #react #tailwindcss #javascript #creativecoding #motiondesign #buildinpublic
&lt;/h1&gt;

</description>
      <category>react</category>
      <category>showdev</category>
      <category>ui</category>
      <category>webdev</category>
    </item>
    <item>
      <title>I Got Tired of Slow, Ad-Heavy Developer Tool Websites — So I Built My Own</title>
      <dc:creator>Kouadio mathias Kouame</dc:creator>
      <pubDate>Tue, 12 May 2026 17:30:22 +0000</pubDate>
      <link>https://forem.com/kouadio_mathiaskouame_a6/i-got-tired-of-slow-ad-heavy-developer-tool-websites-so-i-built-my-own-eio</link>
      <guid>https://forem.com/kouadio_mathiaskouame_a6/i-got-tired-of-slow-ad-heavy-developer-tool-websites-so-i-built-my-own-eio</guid>
      <description>&lt;p&gt;As developers, we use small utility tools constantly.&lt;/p&gt;

&lt;p&gt;Sometimes dozens of times per day.&lt;/p&gt;

&lt;p&gt;formatting JSON&lt;br&gt;
testing regex&lt;br&gt;
decoding JWTs&lt;br&gt;
comparing text&lt;br&gt;
generating UUIDs&lt;br&gt;
building cron expressions&lt;br&gt;
debugging API payloads&lt;/p&gt;

&lt;p&gt;These tiny tasks are part of everyday development workflows.&lt;/p&gt;

&lt;p&gt;But over time, I started noticing something frustrating:&lt;/p&gt;

&lt;p&gt;Many online developer tool websites still feel stuck in another era.&lt;/p&gt;

&lt;p&gt;Pages overloaded with ads.&lt;br&gt;
Cluttered interfaces.&lt;br&gt;
Popups everywhere.&lt;br&gt;
Slow loading.&lt;br&gt;
Confusing mobile layouts.&lt;/p&gt;

&lt;p&gt;And in some cases, it’s not even clear whether your data stays in the browser or gets sent somewhere else.&lt;/p&gt;

&lt;p&gt;After enough frustration, I decided to build my own toolbox.&lt;/p&gt;

&lt;p&gt;Building Devstoolsbox&lt;/p&gt;

&lt;p&gt;I created Devstoolsbox as a collection of browser-based developer tools focused on:&lt;/p&gt;

&lt;p&gt;speed&lt;br&gt;
simplicity&lt;br&gt;
modern UX&lt;br&gt;
privacy&lt;br&gt;
mobile usability&lt;/p&gt;

&lt;p&gt;The idea was simple:&lt;/p&gt;

&lt;p&gt;What if developer tools felt lightweight again?&lt;/p&gt;

&lt;p&gt;Instead of creating another giant utility directory with hundreds of pages, I focused on tools developers actually use regularly.&lt;/p&gt;

&lt;p&gt;Current tools include:&lt;/p&gt;

&lt;p&gt;JSON Formatter&lt;br&gt;
Regex Tester&lt;br&gt;
JWT Decoder&lt;br&gt;
Text Diff&lt;br&gt;
UUID Generator&lt;br&gt;
Cron Generator&lt;br&gt;
AI Token Counter&lt;br&gt;
CSS Shape Generator&lt;/p&gt;

&lt;p&gt;One thing I cared about from the beginning was reducing visual overload.&lt;/p&gt;

&lt;p&gt;A lot of older utility websites evolved over many years without a full redesign, so interfaces became dense and inconsistent over time.&lt;/p&gt;

&lt;p&gt;I wanted something cleaner and calmer.&lt;/p&gt;

&lt;p&gt;Why Browser-Side Processing Matters&lt;/p&gt;

&lt;p&gt;This became especially important while building tools like:&lt;/p&gt;

&lt;p&gt;JWT decoders&lt;br&gt;
JSON formatters&lt;br&gt;
AI token counters&lt;/p&gt;

&lt;p&gt;Developers often paste sensitive information into online utilities without thinking about it:&lt;/p&gt;

&lt;p&gt;API responses&lt;br&gt;
internal logs&lt;br&gt;
JWT payloads&lt;br&gt;
config files&lt;br&gt;
prompts&lt;/p&gt;

&lt;p&gt;That’s why many Devstoolsbox tools run entirely in the browser.&lt;/p&gt;

&lt;p&gt;No account required.&lt;br&gt;
No unnecessary uploads.&lt;br&gt;
No hidden complexity.&lt;/p&gt;

&lt;p&gt;Modern browsers are powerful enough now that many utilities simply don’t need server-side processing anymore.&lt;/p&gt;

&lt;p&gt;The Unexpected Challenge: SEO for Developer Tools&lt;/p&gt;

&lt;p&gt;One thing I underestimated was how competitive developer tool SEO is.&lt;/p&gt;

&lt;p&gt;There are already huge established platforms with years of authority and backlinks.&lt;/p&gt;

&lt;p&gt;At first I thought:&lt;br&gt;
“If the tools are useful, people will naturally find them.”&lt;/p&gt;

&lt;p&gt;Reality is more complicated.&lt;/p&gt;

&lt;p&gt;Developer tool websites compete against:&lt;/p&gt;

&lt;p&gt;old domain authority&lt;br&gt;
massive tool collections&lt;br&gt;
years of indexed content&lt;br&gt;
thousands of backlinks&lt;/p&gt;

&lt;p&gt;So I started experimenting with something different:&lt;/p&gt;

&lt;p&gt;Instead of writing generic AI-generated “ultimate guides,” I began creating articles that combine:&lt;/p&gt;

&lt;p&gt;practical examples&lt;br&gt;
real developer observations&lt;br&gt;
UX discussions&lt;br&gt;
tool comparisons&lt;br&gt;
common mistakes&lt;br&gt;
browser-side workflow explanations&lt;/p&gt;

&lt;p&gt;That approach feels much more sustainable long-term.&lt;/p&gt;

&lt;p&gt;AI Is Changing Developer Workflows Fast&lt;/p&gt;

&lt;p&gt;The biggest surprise recently has been how quickly AI-related utilities became important.&lt;/p&gt;

&lt;p&gt;A year ago, nobody cared about token counters.&lt;/p&gt;

&lt;p&gt;Now developers constantly need to understand:&lt;/p&gt;

&lt;p&gt;token costs&lt;br&gt;
context windows&lt;br&gt;
prompt optimization&lt;br&gt;
GPT vs Claude vs Gemini limits&lt;/p&gt;

&lt;p&gt;That’s why I recently added an AI Token Counter that estimates prompt usage and compares token counts across models.&lt;/p&gt;

&lt;p&gt;It’s interesting watching how fast developer tooling evolves around AI workflows.&lt;/p&gt;

&lt;p&gt;What I Learned Building Developer Tools&lt;/p&gt;

&lt;p&gt;A few things surprised me during the process.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Developers care about UX more than expected&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Even technical users appreciate cleaner spacing, typography and faster interfaces.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Mobile developer workflows are growing&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A lot more developers test snippets and debug directly from phones than I originally expected.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Simplicity is harder than adding features&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;It’s easy to keep adding buttons and options.&lt;/p&gt;

&lt;p&gt;Keeping tools focused is much harder.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Privacy is becoming a real selling point&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;More developers are starting to ask:&lt;br&gt;
“Does this tool process data locally?”&lt;/p&gt;

&lt;p&gt;That question barely existed a few years ago.&lt;/p&gt;

&lt;p&gt;The Goal Going Forward&lt;/p&gt;

&lt;p&gt;I’m still expanding Devstoolsbox gradually.&lt;/p&gt;

&lt;p&gt;Right now, the focus is less about building hundreds of tools and more about improving:&lt;/p&gt;

&lt;p&gt;usability&lt;br&gt;
speed&lt;br&gt;
documentation&lt;br&gt;
AI workflows&lt;br&gt;
internal tooling&lt;br&gt;
educational content&lt;/p&gt;

&lt;p&gt;I’d rather build a smaller collection of genuinely useful tools than a giant directory filled with duplicate utilities.&lt;/p&gt;

&lt;p&gt;If you’re curious, you can explore the project here:&lt;/p&gt;

&lt;p&gt;Devstoolsbox&lt;/p&gt;

&lt;p&gt;And if you’ve built developer tools yourself, I’d genuinely love to hear what challenges surprised you the most.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
