Browsing Tag
python
471 posts
I Built NimPacket, a Raw Packet Crafting Library in Nim, and It Turned Into One of My Best Cyber Projects
For my cybersecurity masters work, I wanted to go deeper than running tools and reading packet captures. I…
From PyInstaller to Nuitka: Convert Python to EXE Without False Positives
As a Python developer, I ran into an annoying problem: my PyInstaller-compiled executables kept getting flagged as viruses…
So I Wrote My Own Compiler, SDK, and Node Package To Revive A Minecraft Mod
This is a post mortem of the “Minecraft Visual Novel Framework mod” a mod that puts a visual…
The Shopify products.json Trick: Scrape Any Store 25x Faster with Python
If you’ve ever done any web scraping, you know how annoying it is to parse HTML: finding parents…
Mastering Python Code Quality: A No-Nonsense Guide to Tools That Actually Prevent Technical Debt
Hey fellow engineers—tired of codebases that start clean and end up as tangled messes? You’re not alone. Most…
Versioning Your Database with SQLAlchemy and Alembic: From Models to Safe Migrations
SQLAlchemy and Alembic give you a safer, more controlled way to evolve your schema over time. In the…
SQL as Contract vs. Python as Procedure — a Short Note on Atlas vs. Alembic
SQL as Contract vs. Python as Procedure — a Short Note on Atlas vs. Alembic The useful question…
AI Amnesia: Erasing Knowledge Without a Trace
AI Amnesia: Erasing Knowledge Without a Trace Imagine your AI model accidentally learned something it shouldn’t have –…
Migrating Metabase Content Between Instances: A Production-Ready Solution for Data Teams
Overview Migrating Metabase dashboards, questions, and collections between instances is notoriously difficult due to database ID mismatches, permission…
Python by Structure: Context Managers and the With Statement
Timothy stared at his screen in frustration. His script had crashed halfway through processing a batch of log…