Recent Posts

Blank White Screen

2 minute read

Allow me to introduce the world’s smallest-possible blank web page: Blank White Screen 2.0. Blank White Screen 2.0 is surprisingly whiter than the Blank Whi...

Birdpress

1 minute read

Last week I started to prototype BirdPress after imagining the power of a Flutter-based blogging platform.

A Study of Recursive Programs

13 minute read

I’m going to analyze a certain type of program which I’ll call recursive programs and then I’ll attempt to learn something interesting about them.

Cube by Squares

7 minute read

This video by ananabananna on TikTok taught me a really fascinating equation showing the relationship between sums of cubes and a square of sums.

Max Length String in a List in Python

1 minute read

The max function in Python supports an optional “key” parameter which can be used to either access a property of the elements of a List or permute the elemen...

Sidewalk Chalk Album

less than 1 minute read

I decided to stop hoarding songs I’ve written over the last ten years and publish a bunch of songs. There’s a mix of instrumental and synth driven tunes. C...

Pymba - Python functional statements

1 minute read

Pymbda is a library that I wrote which turns a few Python statements into functions. It’s not quite Hylang, but it’s as functional as Python can be.

Python Yield From

9 minute read

yield from is a powerful feature of Python 3 that allows for recursion with generators. When a function has a yield statement, it ends up returning a genera...