Skip to content

Instantly share code, notes, and snippets.

View dbanetto's full-sized avatar
🐦

David Barnett dbanetto

🐦
View GitHub Profile
@dbanetto
dbanetto / version.xml
Created February 20, 2012 06:10
An example of the .xml file that RSS-updater reads
<?xml version="1.0" encoding="UTF-8" ?>
<xml>
<ver>1.0.0.0</ver>
<app>Updater</app>
<loc>NULL</loc>
</xml>
@dbanetto
dbanetto / tic-tac-toe.cpp
Created January 1, 2012 04:25
Tic Tac Toe
#include <iostream>
#include <string>
using namespace std;
//defines
#define tablehieght 3
#define tablewidth 3
#define player1 -32