~/|
blog|projects|toys|links

blog.

thoughts on programming, and technology.

PythonJan 12, 2026

Understanding Python Bytecode to Optimize Performance

An introduction to how the Python Virtual Machine executes bytecode and tips we can learn from it.

PythonJan 10, 2026

Using Generators to Simplify Recursion

A useful pattern in python to handle recursive problems using generators.

PythonJan 5, 2026

How to Publish a Python Package with uv

A step-by-step guide to publishing a Python package using uv.

GoDec 27, 2025

Bitwise Operations

Common bitwise operations in Go.