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

Organizations

@Retrium

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 Loading

  1. checkers-js checkers-js Public

    Checkers. In TypeScript.

    TypeScript 7 2

  2. gameOfLife gameOfLife Public

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

    JavaScript

  3. checkers-clojure checkers-clojure Public

    A Clojure port of my Checker player. Tooling is a bit out of date, but the code's good.

    Clojure

  4. js1k js1k Public

    My 2014 JS1K submission that won 7th place

    HTML 1

  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 [x, y] = coord.split(',').map(Number);
    5
    		for (let dx = -1; dx <= 1; ++dx) {