MinMaxMoe and DJTickyTack

MinMaxMoe and DJTickyTack are two small but non-trivial python programs I built as a coding sample, and as a prototype for a more useful correspondence-based game server for chess.

MinMaxMoe is a python program that uses the minimax concept from game theory to play Tic Tac Toe.

You can play against MinMaxMoe right now if you have an ssh client:

   ssh moe@michaljwallace.com
   password: MinMaxMoe!!!

DJTickyTack is the prototype Django application for playing tic-tac-toe.

Note: The next item on my list is a nice REST API so that the bot can actually log in and play against you. In the meantime, you play against other people by creating an account, or just logging in as a guest:

    http://djtickytack.michaljwallace.com/
    user: guest
    pass: guest

The code for both applications is here:

https://github.com/sabren/Tic-Tac-Toe