Tag
Tag:python
All the articles with the tag "python".
Mar 06, 2026 · 6 min readAI
Demystifying AI: Learning LLMs Through 200 Lines of MicroGPT
Large Language Models seem like magic, but they are just math. Let's break down Andrej Karpathy's MicroGPT to understand the core mechanics.
Continue reading →Feb 23, 2026 · 6 min readpython
Building a Telegram bot to babysit 24,000 developers
How I built PythonID-bot to manage the Indonesian Python community on Telegram.
Continue reading →Feb 20, 2026 · 6 min readairflow
4 Root Causes Hiding Behind One Airflow Error
A debugging session that started with one Airflow error and uncovered four cascading failures across Docker images, Kubernetes caching, namespace boundaries, and Python string iteration.
Continue reading →Feb 18, 2026 · 4 min readdev
Building Almanac Games: Scraping PSN with Duct Tape and Playwright
I wanted to show my PlayStation trophies on my blog. It took a Python scraper, Cloudflare cookie theft, and way too many regex fixes.
Continue reading →Feb 13, 2024 · 3 min readPython
Several Cool Things You Can Do with F-Strings in Python
F-strings are a powerful and easy-to-use way to format strings in Python.
Continue reading →Jul 23, 2018 · 1 min readPython
Your Own Python Calendar
The Python calendar module defines the Calendar class. This is used for various date calculations as well as TextCalendar and HTMLCalendar classes with their local subclasses, used for rendering pre-formatted output.
Continue reading →Jul 22, 2018 · 1 min readPython
Get the Most of Floats
Floats also have several additional methods useful in various scenarios
Continue reading →Jul 21, 2018 · 1 min readPython
Format text paragraphs with textwrap
Python's textwrap module is useful for rearranging text, e.g. wrapping and filling lines.
Continue reading →