PAX: Compiling Perl Again, This Time for Real
A sober look at PAX for Perl developers who have heard the compiled-Perl pitch before, focused on what already works, where the hybrid model matters, and why the webapp-plus-Docker proof changes the conversation.
Introducing Developer Dashboard: A Terminal-First Workspace for Local Developer Operations
A practical introduction to Developer Dashboard for terminal-first developers who want one command surface, layered local context, and less shell-history archaeology.
Python Type Hints: From Perl's Moose to mypy
Perl developers know the power of Moose's runtime type constraints. This guide contrasts that with Python's static type checking, covering generics, Optional types, and mypy-driven feedback before runtime.
FastAPI for Perl Developers: From Dancer to Modern Python APIs
A side-by-side look at Dancer and FastAPI covering validation, dependency injection, async patterns, auto-generated docs, and how Perl developers can map old habits onto Python's modern API stack.
Python Context Managers: Resource Management for Perl Developers
A practical bridge from explicit cleanup and Scope::Guard-style thinking in Perl to Python's `with` statement, `__enter__`, `__exit__`, and `@contextmanager` patterns.
Python List Comprehensions: From Perl's map/grep to Python's with Statement
A translation guide for Perl developers moving from `map` and `grep` to Python comprehensions, with a focus on readability, filtering, transformation, and common mistakes.