Welcome

Welcome to the web home of Ray Minge. Here I will document my exploits in programming, travel, and anything else that happens to seem relevant at the time.

Voxel Shape Generator

08:49 am 12/15/2019

Open in a new window Use this tool to make spheres for Minecraft and the like. Idea originally stolen from Neil Fraser, but more recently inspired by friendly competition with my friend Jesse, whose Circle Generator seems a little two dimensional. Update (12/15/2019) I have obviously not touched this in a while, but I think my beta version from like 5 years ago has everything and more of what ...

Conway's Game of Life

06:57 pm 7/18/2012

Conway's Game of Life is a very basic artificial life simulator. It arranges a grid of dead or alive cells, and for each generation, applies a set of rules to determine if the cell will be dead or alive. The rules are as follows: If the cell is alive and has more than three neighbors, it dies from overcrowding. If the cell is alive and has less than two neighbors, it dies from loneliness. If ...