Skip to content
View polgfred's full-sized avatar
  • Colorado Springs, CO
Block or Report

Block or report polgfred

Block user

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. checkers-js checkers-js Public

    Checkers. In JavaScript.

    TypeScript 7 2

  2. gameOfLife gameOfLife Public

    A simple Conway's Game of Life implementation in HTML5+ES6.

    JavaScript

  3. js1k js1k Public

    My 2014 JS1K submission that won 7th place

    HTML 1

  4. checkers-elixir checkers-elixir Public

    An Elixir port of my Checker player

    Elixir

  5. Extremely fast Game of Life implemen... Extremely fast Game of Life implementation in 30 lines of JavaScript
    1
    function gameOfLife(pop) {
    2
    	const newpop = {};
    3
    	for (const coord in pop) {
    4
    		const parts = coord.split(',');
    5
    		const x = Number(parts[0]);