<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ayush Jain</title>
    <description>The latest articles on DEV Community by Ayush Jain (@0xayushjain).</description>
    <link>https://dev.to/0xayushjain</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%2F2640410%2Fe43c06bf-899b-4a19-a124-5d77d42a1f41.png</url>
      <title>DEV Community: Ayush Jain</title>
      <link>https://dev.to/0xayushjain</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/0xayushjain"/>
    <language>en</language>
    <item>
      <title>🐳 Docker for DevOps &amp; Microservices — Part 1: Demystifying Docker</title>
      <dc:creator>Ayush Jain</dc:creator>
      <pubDate>Mon, 14 Jul 2025 05:02:10 +0000</pubDate>
      <link>https://dev.to/0xayushjain/docker-for-devops-microservices-part-1-demystifying-docker-22hh</link>
      <guid>https://dev.to/0xayushjain/docker-for-devops-microservices-part-1-demystifying-docker-22hh</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;“Build once, run anywhere.” That’s not a dream — that’s Docker.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  📘 Welcome to the Series!
&lt;/h2&gt;

&lt;p&gt;This is &lt;strong&gt;Part 1&lt;/strong&gt; of a multi-part hands-on series where we’ll go from &lt;strong&gt;Docker basics&lt;/strong&gt; to deploying &lt;strong&gt;microservices on Kubernetes&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  🔗 Series Overview (Updated Weekly)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Part 1: Demystifying Docker 🧠 &lt;em&gt;(you are here)&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;Part 2: Writing Secure, Lean Dockerfiles 🔐&lt;/li&gt;
&lt;li&gt;Part 3: Docker Compose for Real-World Projects ⚙️&lt;/li&gt;
&lt;li&gt;Part 4: Volumes, Networks &amp;amp; Secrets 📂🔐&lt;/li&gt;
&lt;li&gt;Part 5: CI/CD with Docker &amp;amp; GitHub Actions 🔄&lt;/li&gt;
&lt;li&gt;Part 6: Beyond Docker — Podman, Wasm &amp;amp; the Future 🚀&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🐳 What is Docker?
&lt;/h2&gt;

&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%2Fy46u32xgke0i6kjou0h9.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%2Fy46u32xgke0i6kjou0h9.png" alt="Basic Architecture of Docker" width="800" height="276"&gt;&lt;/a&gt;&lt;br&gt;
Docker is an &lt;strong&gt;open-source containerization platform&lt;/strong&gt; that packages your application and its dependencies into a single unit called a &lt;strong&gt;container&lt;/strong&gt;. These containers run reliably across environments — from your laptop to a production server.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Think of it as a self-contained box that includes your code, environment, and even the kitchen sink 🧼&lt;/p&gt;
&lt;/blockquote&gt;


&lt;h2&gt;
  
  
  🎯 Why Developers and DevOps Engineers Use Docker
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;✅ &lt;strong&gt;Works Everywhere&lt;/strong&gt; — No more "works on my machine" issues&lt;/li&gt;
&lt;li&gt;⚡ &lt;strong&gt;Fast Startup&lt;/strong&gt; — Containers boot in milliseconds&lt;/li&gt;
&lt;li&gt;🧩 &lt;strong&gt;Modular Architecture&lt;/strong&gt; — Ideal for microservices&lt;/li&gt;
&lt;li&gt;🔄 &lt;strong&gt;CI/CD Friendly&lt;/strong&gt; — Easily plug into automation pipelines&lt;/li&gt;
&lt;li&gt;🧪 &lt;strong&gt;Clean Testing Environments&lt;/strong&gt; — Run tests in isolated containers&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  🧠 Real-World Analogy
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;Imagine you need to send someone a pizza. You could send them raw ingredients and hope they cook it the same way — or you send a pizza oven with instructions.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Docker&lt;/strong&gt; ships the entire environment, not just the code.&lt;/p&gt;


&lt;h2&gt;
  
  
  🧱 Core Docker Concepts (Simplified)
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Term&lt;/th&gt;
&lt;th&gt;Think of it as...&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Dockerfile&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;A recipe that tells Docker how to build your app&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Image&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;The frozen snapshot of your app and dependencies&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Container&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;A running instance of that image&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Volume&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;A hard drive for your container (for persistence)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Network&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;The private LAN where containers communicate&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;


&lt;h2&gt;
  
  
  🛠️ Let’s Dockerize a Simple Node.js App
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;We’ll containerize a basic Express server.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;
  
  
  🔸 index.js
&lt;/h3&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;express&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;require&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;express&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;app&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;express&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="nx"&gt;app&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;/&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;req&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;res&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;res&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;send&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Hello from Docker!&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;));&lt;/span&gt;
&lt;span class="nx"&gt;app&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;listen&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;3000&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="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="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Running on port 3000&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;));&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;p&gt;🔸 &lt;strong&gt;Dockerfile&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;&lt;span class="c"&gt;# Use the official Node.js image&lt;/span&gt;
FROM node:18

&lt;span class="c"&gt;# Create app directory&lt;/span&gt;
WORKDIR /app

&lt;span class="c"&gt;# Copy project files&lt;/span&gt;
COPY &lt;span class="nb"&gt;.&lt;/span&gt; &lt;span class="nb"&gt;.&lt;/span&gt;

&lt;span class="c"&gt;# Install dependencies&lt;/span&gt;
RUN npm &lt;span class="nb"&gt;install&lt;/span&gt;

&lt;span class="c"&gt;# Start the app&lt;/span&gt;
CMD &lt;span class="o"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"node"&lt;/span&gt;, &lt;span class="s2"&gt;"index.js"&lt;/span&gt;&lt;span class="o"&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;🧪 &lt;strong&gt;Step-by-Step Execution&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔹 Build the image&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;docker build &lt;span class="nt"&gt;-t&lt;/span&gt; my-node-app &lt;span class="nb"&gt;.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🔹 Run the container&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;docker run &lt;span class="nt"&gt;-p&lt;/span&gt; 3000:3000 my-node-app
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🔹 Check your app&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Open your browser at: &lt;a href="http://localhost:3000" rel="noopener noreferrer"&gt;http://localhost:3000&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚠️ Common Pitfalls to Avoid
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;❌ Avoid large base images → Use &lt;code&gt;node:18-alpine&lt;/code&gt; in production&lt;/li&gt;
&lt;li&gt;🧼 Use &lt;code&gt;.dockerignore&lt;/code&gt; to skip &lt;code&gt;node_modules&lt;/code&gt;, &lt;code&gt;.git&lt;/code&gt;, etc.&lt;/li&gt;
&lt;li&gt;🔐 Never store secrets in Dockerfiles&lt;/li&gt;
&lt;li&gt;🧪 Don’t run production apps with &lt;code&gt;latest&lt;/code&gt; tag&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧩 Why It Matters in Microservices
&lt;/h2&gt;

&lt;p&gt;Each microservice can be containerized independently and deployed in isolation. Docker helps teams:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Deploy faster&lt;/li&gt;
&lt;li&gt;Scale independently&lt;/li&gt;
&lt;li&gt;Work in parallel without stepping on each other’s toes&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔮 What’s Coming Next?
&lt;/h2&gt;

&lt;p&gt;In &lt;strong&gt;Part 2&lt;/strong&gt;, we’ll deep dive into:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;🔥 &lt;em&gt;“Writing Secure, Lean Dockerfiles: Best Practices for Production Containers”&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🙌 Wrap Up
&lt;/h2&gt;

&lt;p&gt;You just containerized a Node.js app from scratch! That’s the first step toward becoming fluent in DevOps workflows and microservices architecture.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Want more? Bookmark this series and follow for weekly updates.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  🔗 Follow the Full Series
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;🚀 Docker for DevOps – A Complete Learning Series&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  💬 Join the Discussion
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Comment below with questions or thoughts.&lt;/li&gt;
&lt;li&gt;Share on LinkedIn using &lt;strong&gt;#DockerSeries #DevOpsByAyush&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>devops</category>
      <category>cloud</category>
      <category>kubernetes</category>
      <category>programming</category>
    </item>
    <item>
      <title>🏗️ From Render to Reality: Why Big Organizations Still Choose AWS</title>
      <dc:creator>Ayush Jain</dc:creator>
      <pubDate>Sun, 13 Jul 2025 18:18:58 +0000</pubDate>
      <link>https://dev.to/0xayushjain/from-render-to-reality-why-big-organizations-still-choose-aws-50fi</link>
      <guid>https://dev.to/0xayushjain/from-render-to-reality-why-big-organizations-still-choose-aws-50fi</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;“If it’s easy, it probably won’t scale. If it scales, it probably won’t be easy.”&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Before I started working on a &lt;strong&gt;production-grade project during my internship&lt;/strong&gt;, I used to wonder —&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Why do big companies go through the pain of using complex cloud infrastructures like AWS, when we already have simple options like Render, Railway, and Vercel?&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I was building and deploying MERN stack apps with just a few clicks. Platforms like &lt;strong&gt;Render&lt;/strong&gt; and &lt;strong&gt;Vercel&lt;/strong&gt; made things so smooth — connect your GitHub, set some environment variables, and your app is live in minutes.&lt;/p&gt;

&lt;p&gt;There was no DevOps team involved. No scary IAM policies. No EC2 instances to babysit.&lt;/p&gt;

&lt;p&gt;So again, &lt;strong&gt;why AWS?&lt;/strong&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  🚀 The MVP Phase: When Simplicity Wins
&lt;/h3&gt;

&lt;p&gt;Platforms like &lt;strong&gt;Render&lt;/strong&gt;, &lt;strong&gt;Railway&lt;/strong&gt;, and &lt;strong&gt;Vercel&lt;/strong&gt; are a dream for solo developers, startups, and hackathon projects.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;⚡ Fast, frictionless deployments&lt;/li&gt;
&lt;li&gt;✅ Free tiers and generous trial limits&lt;/li&gt;
&lt;li&gt;🔁 Automatic CI/CD integration&lt;/li&gt;
&lt;li&gt;🔒 SSL, HTTPS, and basic auth out of the box&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;They're perfect for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Side projects&lt;/li&gt;
&lt;li&gt;Portfolio demos&lt;/li&gt;
&lt;li&gt;Startup MVPs&lt;/li&gt;
&lt;li&gt;Quick PoCs for clients&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And honestly? If you’ve never deployed a full-stack app in less than an hour using these, you’re missing out.&lt;/p&gt;




&lt;h3&gt;
  
  
  🏢 Then Comes the Real World
&lt;/h3&gt;

&lt;p&gt;But then came my internship.&lt;br&gt;
We were working on a platform that had:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Thousands of users,&lt;/li&gt;
&lt;li&gt;Dynamic scaling requirements,&lt;/li&gt;
&lt;li&gt;Compliance concerns (data security, backups),&lt;/li&gt;
&lt;li&gt;API rate-limiting,&lt;/li&gt;
&lt;li&gt;Complex traffic patterns.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s when I realized:&lt;br&gt;
&lt;strong&gt;Developer convenience ≠ Enterprise reliability.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here’s what AWS brought to the table:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fine-grained access control (IAM)&lt;/li&gt;
&lt;li&gt;Private subnets &amp;amp; custom VPCs&lt;/li&gt;
&lt;li&gt;Load balancers, auto-scaling groups&lt;/li&gt;
&lt;li&gt;Centralized monitoring with CloudWatch&lt;/li&gt;
&lt;li&gt;Failover policies, disaster recovery&lt;/li&gt;
&lt;li&gt;Integration with dozens of services (S3, Lambda, RDS, etc.)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Yes, it was harder. But also, &lt;strong&gt;harder to break&lt;/strong&gt;.&lt;/p&gt;




&lt;h3&gt;
  
  
  🧠 The Key Insight
&lt;/h3&gt;

&lt;p&gt;Render and friends are fantastic — no doubt. But they abstract away the complexity &lt;em&gt;because they assume you don’t need it&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;AWS, on the other hand, &lt;strong&gt;gives you the steering wheel&lt;/strong&gt; — and expects you to know how to drive.&lt;/p&gt;

&lt;p&gt;In one scenario, I needed:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Persistent logs across instances&lt;/li&gt;
&lt;li&gt;Horizontal scaling without cold starts&lt;/li&gt;
&lt;li&gt;Rollbacks with minimal downtime&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Render couldn’t quite deliver that — &lt;strong&gt;AWS could.&lt;/strong&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  📌 TL;DR — What I Learned
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Use Case&lt;/th&gt;
&lt;th&gt;Recommended Platform&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Hackathons / MVPs&lt;/td&gt;
&lt;td&gt;Render, Railway, Vercel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Production-level systems&lt;/td&gt;
&lt;td&gt;AWS (or GCP, Azure)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Deep DevOps learning&lt;/td&gt;
&lt;td&gt;AWS all the way&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Scale + Security Needs&lt;/td&gt;
&lt;td&gt;AWS for the win&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h3&gt;
  
  
  👨‍💻 My Advice for Devs
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Start with &lt;strong&gt;Render&lt;/strong&gt;/&lt;strong&gt;Vercel&lt;/strong&gt;/&lt;strong&gt;Railway&lt;/strong&gt; — build fast, learn fast.&lt;/li&gt;
&lt;li&gt;When it’s time to scale, or you want to &lt;strong&gt;understand real-world infra&lt;/strong&gt;, jump into &lt;strong&gt;AWS&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Don’t be afraid of complexity. Learn it bit by bit — it’s worth it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There’s a reason the giants use it.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>devops</category>
      <category>cloud</category>
      <category>website</category>
    </item>
  </channel>
</rss>
