-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
201 lines (198 loc) · 7.04 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./style.css" />
<link
rel="stylesheet"
media="only screen and (max-width: 1600px)"
href="./mobile.css"
/>
<title>Charlie's Projects</title>
</head>
<body>
<header>
<h1>Charles Batten</h1>
</header>
<div id="container">
<a href="./Pendulearn/index.html">
<div id="item">
<h2>Pendulearn with Tensorflow</h2>
</div>
</a>
<a href="./Raycasting/index.html">
<div id="item">
<h2>2D and 3D Raycasting</h2>
</div>
</a>
<a href="./Neuro-Flap/index.html">
<div id="item">
<h2>Flappy Bird with Tensorflow</h2>
</div>
</a>
<a href="./TicTacToeMinimax/index.html">
<div id="item">
<h2>TicTacToe with Minimax</h2>
</div>
</a>
<a href="./PhasmoGhostTracker/index.html">
<div id="item">
<h2>Phasmophobia Ghost Tracker</h2>
</div>
</a>
<a href="./Coding-Challenges/106_XOR-Problem-with-TensorflowJS/index.html">
<div id="item">
<h2>XOR Problem with Tensorflow</h2>
</div>
</a>
<a
href="./Coding-Challenges/105_Polynomial-Regression-with-TensorflowJS/index.html"
>
<div id="item">
<h2>Polynomial Regression with Tensorflow</h2>
</div>
</a>
<a href="./Coding-Challenges/104_Linear-Regression-with-TensorflowJS/index.html">
<div id="item">
<h2>Linear Regression with Tensorflow</h2>
</div>
</a>
<a href="./GameOfLife/index.html">
<div id="item">
<h2>Game of Life Simulation</h2>
</div>
</a>
<a href="./SnakeTF/index.html">
<div id="item">
<h2>Snake with Tensorflow</h2>
</div>
</a>
<a href="./Doodle-Classifier/DoodleClassifier/index.html">
<div id="item">
<h2>Doodle Classifier</h2>
</div>
</a>
<a href="./Coding-Challenges/CC_003_Hilbert-Curve/index.html">
<div id="item">
<h2>Hilbert Curve Visualiser</h2>
</div>
</a>
<a href="./Pose-Estimator/index.html">
<div id="item">
<h2>PoseNet Pose Estimator</h2>
</div>
</a>
<a href="./Coding-Challenges/CC_004_Worley-Noise/index.html">
<div id="item">
<h2>Worley Noise Generator</h2>
</div>
</a>
<a href="./TeachableMachines/index.html">
<div id="item">
<h2>Teachable Machines</h2>
</div>
</a>
<a href="./Coding-Challenges/062_PlinkoMatterJS/index.html">
<div id="item">
<h2>Plinko with Matter.js</h2>
</div>
</a>
<a href="./Fourier/Fourier/index.html">
<div id="item">
<h2>Fourier Series Visualiser</h2>
</div>
</a>
<a href="./Coding-Challenges/012_Lorenz-Attractor/index.html">
<div id="item">
<h2>Lorenz Attractor</h2>
</div>
</a>
<a href="./Coding-Challenges/CC_002_Collatz-Conjecture/index.html">
<div id="item">
<h2>Collatz Conjecture Visualiser</h2>
</div>
</a>
<a href="./CPacking/index.html">
<div id="item">
<h2>Circle Packing</h2>
</div>
</a>
<a href="./Coding-Challenges/086_Cubes/index.html">
<div id="item">
<h2>Cube Animation</h2>
</div>
</a>
<a href="./Coding-Challenges/059_Steering-Behaviours/index.html">
<div id="item">
<h2>Steering Behaviour</h2>
</div>
</a>
<a href="./Coding-Challenges/001_Starfield/index.html">
<div id="item">
<h2>Starfield</h2>
</div>
</a>
<a href="./Coding-Challenges/002_Menger-Sponge/index.html">
<div id="item">
<h2>Menger Sponge</h2>
</div>
</a>
<a href="./Coding-Challenges/014_Fractal-Trees-Recursive/index.html">
<div id="item">
<h2>Fractal Trees</h2>
</div>
</a>
<a href="./Coding-Challenges/029_Smart_Rockets/index.html">
<div id="item">
<h2>Smart Rockets</h2>
</div>
</a>
<a href="./Coding-Challenges/011_Terrain-Generation-Perlin-Noise/index.html">
<div id="item">
<h2>Perlin Noise Terrain</h2>
</div>
</a>
<a href="./Coding-Challenges/055_Mathematical-Rose-Patterns/index.html">
<div id="item">
<h2>Mathmatical Rose Patterns</h2>
</div>
</a>
<a href="./Coding-Challenges/CC_001_Maurer-Rose/index.html">
<div id="item">
<h2>Maurer Rose Visualiser</h2>
</div>
</a>
<a href="./Coding-Challenges/151_Ukulele-Tuner/index.html">
<div id="item">
<h2>Pitch Detection</h2>
</div>
</a>
<a href="./Coding-Challenges/149_TicTacToe/index.html">
<div id="item">
<h2>Tic Tac Toe</h2>
</div>
</a>
<a href="./Coding-Challenges/114_Bubble-Sort-Visualisation/index.html">
<div id="item">
<h2>Bubble Sort Visualisation</h2>
</div>
</a>
<a href="./Coding-Challenges/095_Approximating-the-Value-of-Pi/index.html">
<div id="item">
<h2>Approxmiating Pi</h2>
</div>
</a>
<a href="./GravityThing/index.html">
<div id="item">
<h2>Gravity Thing</h2>
</div>
</a>
</div>
<footer>
<h4>Copyright © Charles Batten 2019</h4>
</footer>
</body>
</html>