<?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: Emmanuel Imade-Taye</title>
    <description>The latest articles on Forem by Emmanuel Imade-Taye (@emmanuel_imadetaye_e73f7).</description>
    <link>https://forem.com/emmanuel_imadetaye_e73f7</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%2F3624935%2Ffc429840-0831-45fe-8873-7bdaa4de7612.png</url>
      <title>Forem: Emmanuel Imade-Taye</title>
      <link>https://forem.com/emmanuel_imadetaye_e73f7</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/emmanuel_imadetaye_e73f7"/>
    <language>en</language>
    <item>
      <title>How I Built and Deployed My DevOps Bootcamp Blog with Nginx</title>
      <dc:creator>Emmanuel Imade-Taye</dc:creator>
      <pubDate>Tue, 25 Nov 2025 13:41:29 +0000</pubDate>
      <link>https://forem.com/emmanuel_imadetaye_e73f7/how-i-built-and-deployed-my-devops-bootcamp-blog-with-nginx-9o4</link>
      <guid>https://forem.com/emmanuel_imadetaye_e73f7/how-i-built-and-deployed-my-devops-bootcamp-blog-with-nginx-9o4</guid>
      <description>&lt;p&gt;For Week 1 of the Tech With Achievers 6-Week DevOps Bootcamp, I decided to take a hands-on approach by building and deploying a personal blog using the Clean Blog template from StartBootstrap. This became my first official DevOps assignment submission, and in this post, I’ll walk through exactly what I built, how I customized it, and the steps I followed to prepare and submit the project.&lt;/p&gt;

&lt;h3&gt;
  
  
  What I Built
&lt;/h3&gt;

&lt;p&gt;I created a personal DevOps blog using the Clean Blog template from StartBootstrap. The goal for Week 1 was simple:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Set up the blog&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A Week 1 post describing what I learned&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Customize the template to make it my own&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Package the project as a ZIP file for upload to Killercoda playgrounds for demonstration&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  What I Did Step-by-Step
&lt;/h3&gt;

&lt;h4&gt;
  
  
  1. Downloaded &amp;amp; Set Up the Clean Blog Template
&lt;/h4&gt;

&lt;p&gt;I went to StartBootstrap and downloaded the Clean Blog starter template.&lt;/p&gt;

&lt;p&gt;Extracted it, removed extra files I didn’t need, and set up a folder structure like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;devops-blog/
├── index.html
├── about.html
├── contact.html
├── posts/
│   └── week1.html
├── css/
│   └── styles.css
├── js/
│   └── scripts.js
└── assets/
    ├── img/
    └── favicon.ico
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  2. Wrote My Week 1 Reflection Post
&lt;/h4&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%2F6yx84f2e3mmm2knpggqv.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%2F6yx84f2e3mmm2knpggqv.png" alt="week-1-post" width="800" height="373"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I created a new HTML file inside the /posts folder (week1.html) and wrote my Week 1 reflection covering the key topics from the bootcamp:&lt;/p&gt;

&lt;h5&gt;
  
  
  What is DevOps?
&lt;/h5&gt;

&lt;p&gt;DevOps is a set of practices and cultural philosophies that aim to deliver software to end users more efficiently and reliably. It focuses on collaboration between development and operations teams, automation of repetitive tasks, and continuous delivery of value.&lt;/p&gt;

&lt;h5&gt;
  
  
  The Role of a DevOps Engineer
&lt;/h5&gt;

&lt;p&gt;A DevOps engineer bridges the gap between development teams and operations teams. They help automate builds, testing, deployments, and monitoring so software can be shipped faster and with fewer issues.&lt;/p&gt;

&lt;h5&gt;
  
  
  Linux Fundamentals
&lt;/h5&gt;

&lt;p&gt;I had a brief introduction to navigating Linux systems—crucial for DevOps because most servers run on Linux, so knowing basic commands, file structure, and permissions is essential.&lt;/p&gt;

&lt;h5&gt;
  
  
  Why DevOps Matters
&lt;/h5&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Speeds up delivery of software to users&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Reduces manual errors through automation&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Improves collaboration between teams&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h5&gt;
  
  
  Software Development Life Cycle (SDLC) Models
&lt;/h5&gt;

&lt;p&gt;We covered three main models:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Waterfall – A linear, step-by-step approach&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Agile – Iterative and incremental delivery with frequent feedback loops&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;DevOps – Emphasizes automation, continuous integration, continuous delivery, and close collaboration between dev and ops&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h5&gt;
  
  
  Looking Ahead
&lt;/h5&gt;

&lt;p&gt;I'm excited for Week 2 and can't wait to get introduced to the tools we'll be using throughout the bootcamp.&lt;/p&gt;

&lt;h4&gt;
  
  
  3. Added an About Page
&lt;/h4&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%2F6ffgapzh0ntncg6gjy6k.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%2F6ffgapzh0ntncg6gjy6k.png" alt="about-page" width="800" height="365"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I customized the about.html page to tell my story:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Who I am – My background and current role&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;My journey into DevOps – What sparked my interest in DevOps and cloud engineering&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;My goals in the 6-week bootcamp – Skills I want to gain and projects I want to build&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Tools and technologies – Linux, Git, VS code I've started exploring&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  4. Updated the Homepage
&lt;/h4&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%2F4mvfg7pyc7rh7sdw13zr.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%2F4mvfg7pyc7rh7sdw13zr.png" alt="home-page" width="800" height="286"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I modified index.html to display a preview of my Week 1 post with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Post title and subtitle&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Publication date&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A clickable link to read the full post&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  5. Customized Navigation &amp;amp; Footer
&lt;/h4&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%2F37n7dwbt53mqfzk4bopv.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%2F37n7dwbt53mqfzk4bopv.png" alt="navbar" width="800" height="53"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I updated the navigation menu to include links to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Home&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;About&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Blog&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Contact&lt;/p&gt;&lt;/li&gt;
&lt;/ul&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%2F95zncdtwm7ajn3qhs8nv.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%2F95zncdtwm7ajn3qhs8nv.png" alt="footer" width="800" height="83"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I also added my social media links in the footer:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Twitter/X&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;LinkedIn&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;GitHub&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Preparing for Submission
&lt;/h3&gt;

&lt;p&gt;Once everything was ready, I packaged the entire project into a ZIP file:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Selected all project files and folders&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Named it something descriptive like devops-blog.zip&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h4&gt;
  
  
  What's Included in the ZIP
&lt;/h4&gt;

&lt;p&gt;The submission package contains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;All HTML pages (index, about, contact, week1 post)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;CSS and JavaScript files&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Assets folder with images and favicon&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Clean, organized folder structure&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Deploying on Killercoda
&lt;/h3&gt;

&lt;p&gt;Now came the exciting part—actually deploying my blog on a real web server! I used Killercoda's Ubuntu playground to simulate a real-world deployment scenario.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 1: Set Up the Killercoda Playground
&lt;/h4&gt;

&lt;p&gt;I launched an Ubuntu playground on &lt;a href="https://killercoda.com/" rel="noopener noreferrer"&gt;Killercoda&lt;/a&gt;, which gave me access to a Linux terminal environment.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 2: Install Nginx
&lt;/h4&gt;

&lt;p&gt;First, I needed a web server to host my static blog. I installed Nginx:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo apt install nginx -y&lt;/code&gt;&lt;/p&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%2Fix50dd0m3uiqxkcspod0.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%2Fix50dd0m3uiqxkcspod0.png" alt="nginx-installation" width="800" height="396"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This installed Nginx and automatically started the web server.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3: Upload the ZIP File
&lt;/h4&gt;

&lt;p&gt;I went to the Editor tab in Killercoda and uploaded my devops-blog.zip file. This made it easy to transfer my project files to the Ubuntu environment.&lt;/p&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%2Fmfjvg6lgoj7wwd0x6epc.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%2Fmfjvg6lgoj7wwd0x6epc.png" alt="upload-zip-file" width="800" height="388"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 4: Unzip the Project
&lt;/h4&gt;

&lt;p&gt;Back in the terminal, I unzipped the uploaded file:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;unzip devops-blog.zip&lt;/code&gt;&lt;/p&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%2Fgdq6y7m267ryb43chey0.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%2Fgdq6y7m267ryb43chey0.png" alt="unzip-project" width="800" height="371"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This extracted all my blog files into a devops-blog folder.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 5: Move Files to Nginx Web Directory
&lt;/h4&gt;

&lt;p&gt;Nginx serves files from /var/www/html/ by default, so I moved my blog files there:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;cp -r devops-blog/* /var/www/html/&lt;/code&gt;&lt;/p&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%2Fah63d2hkvyyfatzdtwy2.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%2Fah63d2hkvyyfatzdtwy2.png" alt="copy-files-to-nginx-web-directory" width="800" height="71"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 6: Access the Blog
&lt;/h4&gt;

&lt;p&gt;To view my blog in the browser, I:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Clicked the menu icon (three horizontal lines) on the top right of Killercoda&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Selected Traffic / Ports&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Clicked 80 as the port to open the URL (the default HTTP port for Nginx)&lt;/p&gt;&lt;/li&gt;
&lt;/ol&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%2Fsnfd93xzt03awsmnt3io.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%2Fsnfd93xzt03awsmnt3io.png" alt="menu-and-dropdown" width="800" height="396"&gt;&lt;/a&gt;&lt;/p&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%2Fny7i5jqot9pbqm8jbwyo.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%2Fny7i5jqot9pbqm8jbwyo.png" alt="select-port-80" width="800" height="378"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And there it was—my DevOps blog running live on a web server! 🎉&lt;/p&gt;

&lt;h4&gt;
  
  
  What I Learned from Deployment
&lt;/h4&gt;

&lt;p&gt;This deployment process taught me several important DevOps concepts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Linux package management using apt&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Web server configuration with Nginx&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;File permissions and directory structure in Linux&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This hands-on experience gave me a taste of what DevOps engineers do daily—taking code from development to a live, accessible environment.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Takeaways from Week 1
&lt;/h3&gt;

&lt;p&gt;This wasn't just about creating a blog—it was about understanding the fundamentals:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;DevOps&lt;/strong&gt; is about culture and collaboration, not just tools&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Linux&lt;/strong&gt; skills are essential for any DevOps engineer&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Understanding SDLC&lt;/strong&gt; models helps you see where DevOps fits in the bigger picture&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Documentation matters&lt;/strong&gt; – This blog will serve as my learning journal throughout the bootcamp&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  What's Next?
&lt;/h3&gt;

&lt;p&gt;In Week 2, we'll be diving into the DevOps toolchain. I'm particularly excited to learn more about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Version control with Git&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Containerization with Docker&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;CI/CD fundamentals&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Infrastructure as Code&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'll be documenting everything here on this blog, so stay tuned!&lt;/p&gt;

&lt;h3&gt;
  
  
  Resources
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://startbootstrap.com/theme/clean-blog" rel="noopener noreferrer"&gt;StartBootstrap Clean Blog Template&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://ng.linkedin.com/company/tech-with-achievers" rel="noopener noreferrer"&gt;Tech With Achievers DevOps Bootcamp&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Connect With Me
&lt;/h3&gt;

&lt;p&gt;I'd love to connect with fellow DevOps learners! Find me on:&lt;/p&gt;

&lt;p&gt;🐦 Twitter/X: @emmaimade14&lt;br&gt;
💼 LinkedIn: emmaimade&lt;br&gt;
💻 GitHub: emmaimade&lt;/p&gt;

&lt;p&gt;Let's learn and grow together! 🚀&lt;/p&gt;

&lt;p&gt;What's your DevOps learning journey looking like? Drop a comment below!&lt;/p&gt;

</description>
      <category>devops</category>
      <category>bootcamp</category>
      <category>blog</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
