Skip to content

Instantly share code, notes, and snippets.

View geocachecs's full-sized avatar

geocachecs

View GitHub Profile
@geocachecs
geocachecs / Index.php
Created October 23, 2015 01:50
Anime database
<?php
?>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
function get_title()
@geocachecs
geocachecs / chess.cpp
Created October 22, 2015 21:53
2 Player Chess Game C++
#include "chess.h"
Square::Square()
{
piece = EMPTY;
color = NONE;
}
void Square::setSpace(Square* space)