Skip to content

Instantly share code, notes, and snippets.

View richieairgreater's full-sized avatar

rich richieairgreater

View GitHub Profile
@roachhd
roachhd / README.md
Created December 8, 2014 23:09
Games on GitHub

Games on GitHub

Below is a list of open source games and game-related projects that can be found on GitHub - old school text adventures, educational games, 8-bit platform games, browser-based games, indie games, GameJam projects, add-ons/maps/hacks/plugins for commercial games, libraries, frameworks, engines, you name it.

Contributing

If you'd like to add a repository to the list, please create an Issue, or fork this repository and submit a pull request.

Help: MarkDown Help, Markdown Cheatsheet

@dstreet
dstreet / tictactoe.js
Last active July 28, 2022 05:52
Simple Tic Tac Toe Game in Node
var readline = require('readline');
var TicTacToe = function(readline) {
/*
* Private API
* ------------------------------------------------------------------------
*/
var _rl = null