Sign in
There are a total of 32 posts.
Published Dec 24, 2025 by whitedec
from __future__ import annotations – The Future of Python Type Hints
Explore how `from __future__ import annotations` enables lazy evaluation of Python type hints, its evolution from PEP 5…
Published Dec 04, 2025 by whitedec
Lightweight Docker Images with Django and Tailwind CSS: A Multi‑Stage Build Strategy
Learn how to keep your Django + Tailwind CSS Docker images lightweight by using a three‑stage multi‑stage build. Node.j…
Published Nov 24, 2025 by whitedec
Anaconda? Miniconda? What Should You Start With? A Practical Guide to Managing conda Environments with Miniconda
When managing Python development environments with conda, this guide explains the differences between Anaconda and Mini…
Published Nov 23, 2025 by whitedec
Understanding `tests.py` for Django Developers
This post summarizes the role and usage of the automatically generated `tests.py` file in Django apps. Explore how to w…
Published Nov 22, 2025 by whitedec
Confronting the Essence of Django - Why `HttpResponse` is the 'Fundamental'
Explore the core reasons and roles of HttpResponse in Django. This article explains how the HttpResponse object connect…
Published Nov 20, 2025 by whitedec
Understanding and Utilizing Python Wheel to Speed Up Docker Builds
This article presents how to significantly improve Docker build speeds using Python Wheel, step by step, including tips…
Published Nov 18, 2025 by whitedec
A Comprehensive Guide to Python's `urlparse()` - The Essential Tool for URL Analysis
This blog post explains how to parse and analyze URLs using Python's `urlparse()` function, covering components, parame…
Published Nov 17, 2025 by whitedec
Why is the pop() Method Everywhere in Python?
The pop() method in Python is one of the most commonly used core functionalities found in lists and dictionaries. This …
Understanding Python `@classmethod` Properly - When and Why Should We Use It?
This article explores the reasons and situations for utilizing the @classmethod decorator in Python. It compares class …
Published Aug 06, 2025 by whitedec
To Developers Obsessed with Python - Sometimes Bash Scripts are Faster and More Powerful
This post introduces the fast and powerful processing capabilities of Bash scripts, often overlooked in a development e…
Published Jul 22, 2025 by whitedec
Creating Your Own Automated Deployment System with GitHub Webhook ④ Deployment Handler Details and Registering as a Systemd Service
Learn how to reliably run a FastAPI-based webhook server as a Systemd service, understand the mechanisms of the deploym…
Published Jul 16, 2025 by whitedec
Is pandas really derived from the panda?
Is the name of pandas really derived from the panda bear? This article interestingly explores the origin of the name pa…
Published Jun 13, 2025 by whitedec
Exploring Class-Based Views (CBV) Series ⑧ - Deep Dive into Pagination and Search Functionality – Extending ListView
This post introduces practical strategies for implementing pagination, search, and sorting functionalities by extending…
Published Jun 11, 2025 by whitedec
Exploring Class-Based Views (CBV) Series ⑦ - Utilizing Mixins and Permission Management
Learn how to modularize common functionalities using Django Mixins and automate permission management with LoginRequire…
Published Jun 09, 2025 by whitedec
Exploring Class-Based Views (CBV) Series ⑥ - How to Use TemplateView & RedirectView
Automate static pages and URL redirection with Django TemplateView and RedirectView. Discover practical view strategies…