I've written a handout on synthetic geometry with a philosophy that focuses on underlying ideas and constructions instead of theorems, and I included many hand-picked problems grouped by common ideas. The handout totals to nearly 120 pages, and was first released in January of 2022. Here is the main handout, solution to examples, and solution to problems.
I've written two esoteric programming languages, titled L3 and dungeon journey, along with code-golf challenges for the languages. The languages were used in the 2023 and 2024 Carnegie Mellon Informatics and Mathematics Competition’s programming contest. You may find the original languages specifications and problems on the CMIMC website. Alternatively, you may find a slightly updated version of L3 here.
L3 consists of program code that manipulates a variable of 10 registers, with operations roughly corresponding to that of a Minsky machine. The program code and control flow is laid out on a 2D grid. L3X extends L3 by introducing streams and allowing multiple pieces of data to flow around the program simultaneously. Much of the interest for coding in L3/L3X is the routing aspect, placing the program on the grid efficiently and perhaps elegantly. You can see the web-based visualizer and some example code.
Shown below is an interpreter for a normal 8-registry Minsky machine holding up to 16 instructions. The memory size can be easily expanded. You can find the code along with a simple Fibonacci number program that runs on the Minsky machine in the examples.
Dungeon Journey is best described as a Turing machine with a 2D tape, two tape heads, and no internal state. The two tape head part somewhat resembles real computers, which maintain at least an instruction pointer and a stack pointer. The 2D tape part resembles Langton's ant and Turmites. Indeed, Dungeon Journey can also exhibit similar chaotic behavior on an empty tape, though chaotic behavior is generally much harder to encounter due to the lack of internal state. On the flip side, with two tape heads one can intentionally draw shapes much easier.
Shown in figure 3 are various patterns drawn in Dungeon Journey, from orderly to chaotic. Shown in figure 4 is one of the most interesting Dungeon Journey program, as it alternates between the regular double pyramid pattern and chaos after collisions. See more discussion about chaotic behavior on the problem handout.
Within a group of four, I made the OpenGL-based game Swordmaster for the course CMU 15-466 computer game programming. The game uses collision physics for sword collisions. The sword animations, scene and sound effects are all handmade. See its itch.io page.