We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
⭐ Beginning Programming Environment - Start Here!
TypeScript
Checkers. In TypeScript.
TypeScript 8 2
Dungeon of Doom Retro Crawler
TypeScript 1
A simple Conway's Game of Life implementation in HTML5+ES6.
JavaScript
My 2014 JS1K submission that won 7th place
HTML 1
function gameOfLife(pop) {
const newpop = {};
for (const coord in pop) {
const [x, y] = coord.split(',').map(Number);
for (let dx = -1; dx <= 1; ++dx) {
There was an error while loading. Please reload this page.