Calling Rust code from Python with ctypes

Background Recently I’ve been learning Rust, which is a programming language that aims to be as fast as C but absolutely memory-safe. It feels like a mix of the best features from many languages, including Python (format! vs. f-strings), Java (iter vs. stream), C (speed), C++ (references), and JavaScript (mutability?). And as I was learning, … Read more

MIT App Inventor Summer Appathon recap

This summer I participated in the MIT App Inventor Summer Appathon, which the official website described as “a marathon-like event to build apps.” As my first year in the event, I built a simple app that generates stories for children with AI power. And to my big surprise, I actually earned an Honorable Mention! In … Read more

Project Phoenix: Redesign of the House System

Preface At my school, BASIS International School Nanjing (BINJ), there is a house system. It is stolen borrowed straight from Harry Potter, but with the four houses named after the four seasons (Spring, Summer, Fall, Winter) and no giant floating automatic magical tubes. Instead, teachers hand out actual physical House Points (colored plastic chips), and … Read more

Contributor to CPython! Yay!

Yeah, I’m now a contributor to CPython 🙂 I caught an extremely significant bug in CPython that affected the coding experience of each and every Python programmer. The bug was so obvious that I was so surprised that no one already found out! Look: Look at line 904 of the typing.py library. How is it … Read more