-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (41 loc) · 2.56 KB
/
index.html
File metadata and controls
42 lines (41 loc) · 2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<head>
<title>DerekWilliams.us - Bots</title>
</head>
<body>
<p>Here are "game bot" solutions from <i>Friday Fragments</i>.</p>
<p>The most interesting ones are the "man vs. machine" versions of Reversi:
<a href="./reversi/playreversi.php" target="_blank">Server (PHP)</a> or
<a href="./reversi/reversiajax.php" target="_blank">AJAX (Javascript)</a>.</p>
<table border="1" cellpadding="7">
<tr>
<th>Game</th>
<th>Blog Posts</th>
<th>Bot Web Service and Source</th>
<th>Control/Scoring Code and Source</th>
<th>Play Along Code and Source</th>
</tr>
<tr>
<td>Rock, Paper, Scissors</td>
<td><a href="http://derekwilliams.us/?p=3516">Oct 15, 2010</a>, <a href="http://derekwilliams.us/?p=3669">Oct 29, 2010</a></td>
<td><a href="./rps">rps</a> (<a href="./rps/index.php.txt">rps source</a>)</td>
<td><a href="./rps/scorerps.php">scorerps</a> (<a href="./rps/scorerps.php.txt">scorerps source</a>)</td>
<td> </td>
</tr>
<tr>
<td>Tic, Tac, Toe</td>
<td><a href="http://derekwilliams.us/?p=3754">Nov 5, 2010</a>, <a href="http://derekwilliams.us/?p=3838">Nov 12, 2010</a>,<br /><a href="http://derekwilliams.us/?p=4072">Dec 10, 2010</a></td>
<td><a href="./tictactoe?board=| |">tictactoe</a> (<a href="./tictactoe/index.php.txt">tictactoe source</a>)</td>
<td><a href="./tictactoe/scorettt.php">scorettt</a> (<a href="./tictactoe/scorettt.php.txt">scorettt source</a>)</td>
<td><a href="./tictactoe/playttt.php">playttt</a> (<a href="./tictactoe/playttt.php.txt">playttt source</a>)</td>
</tr>
<tr>
<td>Reversi</td>
<td><a href="http://derekwilliams.us/?p=3915">Nov 19, 2010</a>, <a href="http://derekwilliams.us/?p=3943">Nov 26, 2010</a>,<br />
<a href="http://derekwilliams.us?p=4173">Dec 17, 2010</a>, <a href="http://derekwilliams.us?p=4196">Dec 24, 2010</a></td>
<td><a href="./reversi?board=...........................OX......XO...........................&piece=X">reversi</a> (<a href="./reversi/index.php.txt">reversi source</a>)</td>
<td><a href="./reversi/scorereversi.php">scorereversi</a> (<a href="./reversi/scorereversi.php.txt">scorereversi source</a>,<br /><a href="./reversi/reversimove.php.txt">reversimove source</a>)</td>
<td><a href="./reversi/playreversi.php">playreversi</a> (<a href="./reversi/playreversi.php.txt">playreversi source</a>)<br/>
<a href="./reversi/reversiajax.php">reversiajax</a> (<a href="./reversi/reversiajax.js.txt">reversiajax.js source</a>,<br /><a href="./reversi/reversiajax.php.txt">reversiajax.php source</a>)</td>
</tr>
</table>
</body>