-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (43 loc) · 1.46 KB
/
index.html
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
43
44
45
<!DOCTYPE html>
<head>
<title>YoavGames</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>games!</h1>
<h2>By Yoav Sarfaty</h2>
<h3>snakes</h3>
<a href="snake/index.html">Snake!</a>
<br>
<a href="360snake/index.html">Snake: Now in 360°!</a>
<br>
<h3>mazes</h3>
<a href="RecursiveBacktrackerMaze/index.html">Recursive Backtracker Maze Generator</a>
<br>
<a href="RecursiveDivisionMaze/index.html">Recursive Division Maze Generator</a>
<br>
<a href="PrimsAlgorithm/index.html">Maze Generator Using Prim's Algorithm</a>
<br>
<a href="KruskalsAlgorithm/index.html">Maze Generator Using Kruskal's Algorithm</a>
<br>
<a href="RecursiveBacktrackerMazeSolver/index.html">Maze Solver Using Recursive Backtracking</a>
<h3>whatever!</h3>
<a href="CirclesCircles/index.html">The Amazingest game ever: CirclesCircles!</a>
<a href="CirclesCirclesAI/index.html">Or try to beat my 500 lines of code!</a>
<br>
<a href="SteeringBehavior/index.html">Steering Behavior</a>
<br>
<a href="ReactionDiffusion/index.html">Reaction Diffusion</a>
<br>
<a href="LangtonsAnt/index.html">Langton's Ant</a>
<br>
<a href="Reversi/index.html">reversi</a>
<br>
<a href="ReversiAI/index.html">Can you beat the computer in reversi?</a>
<br>
<a href="triangles/index.html">triangles for life!</a>
<br>
<a href="GameOfLife/index.html">Conway's Game of Life!</a>
<br>
<a href="WaveFunctionCollapse/index.html">Wave Function Collapse</a>
</body>