Code & Create: A Web Dev Journey
Sharing my journey through tech - what I'm building, learning, and exploring along the way.
What Is a Use Case Diagram?
A Use Case Diagram is a type of Unified Modeling Language (UML) diagram that visually represents the interactions between users (called actors) and a system. …...
Read more →
How to Show a Cookie-Based Consent Banner Before Loading Google Analytics in Django Using HTMX
To comply with GDPR and privacy laws, you must get user consent before loading tracking tools like Google Analytics. This post shows how to create …...
Read more →
How to Add Google Analytics to Your Django Blog
Google Analytics helps you track and understand your website traffic. In this guide, we’ll walk through how to integrate Google Analytics into a Django-powered blog …...
Read more →
How to Use django-hosts for Subdomain Routing in Django Projects
django-hosts is a Django library that allows you to manage multiple subdomains within a single Django project by mapping each subdomain to its own URL …...
Read more →
Building a Simple Python Chat Room with Multi-Client Socket Programming
This guide walks you through creating a basic chat room in Python using sockets and threading. You will learn how to design the architecture, implement …...
Read more →