Vanity RSA public key

How to generate RSA keys with custom text embedded in the base64 representation by carefully selecting prime numbers.

Read More

False test coverage

Code coverage can be misleading when code is executed but not actually tested. Here’s how to use coverage filtering to get more accurate metrics.

Read More

Lazy sorting in Python

Exploring lazy sorting algorithms in Python using generators. Partial quicksort beats built-in sorted(), but heapq outperforms both.

Read More

Avatars for non-users in Django

Generating unique SVG background patterns for non-user entities like case files, using seeded randomness for tiling patterns and color schemes.

Read More