Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 106 additions & 0 deletions public/rss.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>
Umair Jibran's Writings
</title>
<link>
https://umairjibran.com/writings
</link>
<description>
Latest articles from Umair Jibran's writings.
</description>
<atom:link rel="self" href="https://umairjibran.com/rss.xml"/>
<language>
en-us
</language>
<lastBuildDate>
Mon, 03 Nov 2025 13:05:25 GMT
</lastBuildDate>
<item>
<title>
Mastering Local Backend Development: Docker &amp; NGINX as a Reverse Proxy for Efficient Testing
</title>
<link>
https://umairjibran.com/blogs/docker-nginx-reverse-proxy-local-dev
</link>
<description>
Learn how to set up a local backend environment using Docker and NGINX as a reverse proxy. Streamline your development and testing with this step-by-step guide, optimized for efficient scaling and traffic management.
</description>
<pubDate>
Sun, 20 Oct 2024 18:13:00 GMT
</pubDate>
<guid>
https://umairjibran.com/blogs/docker-nginx-reverse-proxy-local-dev
</guid>
</item>
<item>
<title>
GitHub CODEOWNERS: A Comprehensive Guide
</title>
<link>
https://umairjibran.com/blogs/github-codeowners
</link>
<description>
Learn how to use GitHub&apos;s CODEOWNERS file to streamline your project&apos;s workflow. This guide covers everything you need to know about CODEOWNERS, including how to create and use it effectively.
</description>
<pubDate>
Sat, 12 Oct 2024 18:13:00 GMT
</pubDate>
<guid>
https://umairjibran.com/blogs/github-codeowners
</guid>
</item>
<item>
<title>
LocalStack: Your Gateway to Seamless Cloud Testing Locally
</title>
<link>
https://umairjibran.com/blogs/localstack-your-gateway-to-cloud-testing
</link>
<description>
Discover how LocalStack enables you to emulate AWS services locally, saving time and costs while improving productivity.
</description>
<pubDate>
Sun, 22 Dec 2024 18:13:00 GMT
</pubDate>
<guid>
https://umairjibran.com/blogs/localstack-your-gateway-to-cloud-testing
</guid>
</item>
<item>
<title>
Make it your own
</title>
<link>
https://umairjibran.com/blogs/make-it-your-own
</link>
<description>
Learn how you can customize this template to make it your own. This guide will help you understand how the template is organized and how to add new content.
</description>
<pubDate>
Thu, 22 Aug 2024 19:29:00 GMT
</pubDate>
<guid>
https://umairjibran.com/blogs/make-it-your-own
</guid>
</item>
<item>
<title>
Ultimate Guide to Removing Sensitive Data from Git History: Protect Your Codebase
</title>
<link>
https://umairjibran.com/blogs/removing-historic-commits
</link>
<description>
Discover the definitive methods to remove sensitive data like API keys from Git history. Learn how to safeguard your repository, rewrite commit history, and prevent future leaks using best practices.
</description>
<pubDate>
Sun, 08 Dec 2024 18:13:00 GMT
</pubDate>
<guid>
https://umairjibran.com/blogs/removing-historic-commits
</guid>
</item>
</channel>
</rss>
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function RootLayout({
data-website-id={umamiAnalytics.dataWebsiteId}
/>
<body
className={`${ibmPlexMono.variable} ${inconsolata.variable} font-mono bg-[#0d0d0d]`}
className={`${ibmPlexMono.variable} ${inconsolata.variable} font-mono bg-white text-black`}
>
<Header />
{children}
Expand Down
Loading
Loading