Simplifying Domain Management with Azure Front Door: A Step-by-Step Guide

Simplifying Domain Management with Azure Front Door: A Step-by-Step Guide Managing multiple Azure resources with custom domains can quickly become messy. Instead of creating separate CNAME records for each service, Azure Front Door offers a cleaner, more centralized approach. In this post, I’ll walk you through setting up Azure Front Door to manage multiple custom […]

Building Simple Tools for Appwrite Database Management

I recently found myself working with Appwrite databases and needed some basic tools to manage collections and documents. Instead of using the web interface every time, I decided to build a few simple Python scripts to handle common tasks. What I Built The project consists of three main scripts: Connection Testing – A simple script […]

What Should We Code Now? Templates, Libraries, and POCs

What Should We Code Now? Templates, Libraries, and POCs The Question That’s Been Bugging Me I’ve been thinking about this a lot lately: with AI getting better at generating code every day, what should we actually be coding ourselves? It’s not like AI is going to replace programming entirely (at least not yet), but it’s […]

Building My First Python Web App in a Weekend (Thanks, AI)

Building My First Python Web App in a Weekend (Thanks, AI) How I went from “What’s FastAPI?” to a working Gmail OAuth app So here’s the thing – I’ve been coding for years, but I’d never touched Python web development. Like, at all. My experience was mostly in other stacks, and Python was that language […]

Why Relative Paths Don’t Always Work: A FastAPI Static Assets Case Study

Why Relative Paths Don’t Always Work: A FastAPI Static Assets Case Study When building web applications, choosing between relative and absolute paths for static assets seems straightforward. Most developers reach for relative paths as the “safe” choice – after all, they’re supposed to work regardless of where your app is deployed, right? Well, not always. […]

Fixing Static Asset and API Path Issues in FastAPI for Production Subpath Deployments

Fixing Static Asset and API Path Issues in FastAPI for Production Subpath Deployments The Problem I recently deployed a FastAPI Gmail OAuth application to a cloud platform under a subpath (/my-app/), and ran into a classic web development issue: static assets and API calls that worked perfectly on localhost were returning 404 errors in production. […]