-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
211 lines (183 loc) · 5.77 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
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jolav - BetaZone</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="where ideas and prototypes go to wait" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="./assets/jolav32.png">
</head>
<body>
<header class="header">
<h1 class="small centerText">
<div>
<img class="verticalImage" src="./assets/idea48.png" alt="jolav">
<span> BetaZone</span>
</div>
</h1>
<h1 class="big centerText">
<img class="verticalImage" src="./assets/idea64.png" alt="jolav">
<span> BetaZone</span>
</h1>
<div class="headerText centerText">
<span>Where ideas and prototypes go to wait.</span>
</div>
</header>
<section class="tools">
<div class="tool service">
<a href="./apiDoc/apiDoc.html">
<div class="toolTile">
<div class="title centerText">
<img class="verticalImage" src="./assets/doc48.png">
<strong>API docs</strong>
</div>
<p>
Documentation for Betazone API, which has no frontend.
</p>
</div>
</a>
</div>
<div class="tool service">
<a href="./mapGenerator/mapGen.html">
<div class="toolTile">
<div class="title centerText">
<img class="verticalImage" src="./assets/map48.png">
<strong>Map Generator</strong>
</div>
<p>
Procedural Map Generator using Voronoi diagram with Euclidean, Manhattan and Minkowski Metrics
</p>
</div>
</a>
</div>
<div class="tool service">
<a href="./dungeonMap/dungeonMap.html">
<div class="toolTile">
<div class="title centerText">
<img class="verticalImage" src="./assets/rogue32.png">
<strong>Dungeon Map Generator</strong>
</div>
<p>
Map Generator using Dungeon-Building Algorithm from roguebasin.
</p>
</div>
</a>
</div>
<div class="tool service">
<a href="./gameOfLife/life.html">
<div class="toolTile">
<div class="title centerText">
<img class="verticalImage" src="./assets/life48.png">
<strong>Game Of Life</strong>
</div>
<p>
John Conway's Game of life
</p>
</div>
</a>
</div>
<div class="tool service">
<a href="./tsp/travelling.html">
<div class="toolTile">
<div class="title centerText">
<img class="verticalImage" src="./assets/traveller32.png">
<strong>Travelling Salesman Problem</strong>
</div>
<p>
Given a list of cities and the distances between each pair of cities, what is the shortest possible route
that visits each city at least once and returns to the origin city.
</p>
</div>
</a>
</div>
<div class="tool service">
<a href="./tetris/tetris.html">
<div class="toolTile">
<div class="title centerText">
<img class="verticalImage" src="./assets/tetris32.png">
<strong>Tetris</strong>
</div>
<p>
The great classic game. Play now. Can you beat the high score?
</p>
</div>
</a>
</div>
<div class="tool service">
<a href="#">
<!--"./sp500/sp500.html">-->
<div class="toolTile">
<div class="title centerText">
<img class="verticalImage" src="./assets/stock32.png" alt="stock">
<strong>SP 500</strong>
</div>
<p>
<strong>UPDATE 2020-07-31 <br>
IEX CLOUD FREE DATA DEPLETED.</strong><br>
Real Time Standard & Poor's 500 common stocks issued by 500 large-cap companies and traded on American stock
exchanges.<br>
</p>
</div>
</a>
</div>
</section>
<br>
<!-- Begin Footer-->
<footer class="footer">
<hr>
<a href="//jolav.github.io">
<img class="verticalImage" alt="goHome" src="./assets/home24.png"> Home
</a>
<br>
<span>You can submit your questions, feedbacks, ideas and feature requests opening a issue on github or
<strong><a class="m mail32" alt="href="
#">97fdf8fbf6e1b9f3f2e1d7f8e2e3fbf8f8fcb9f4f8faO631216062e02090c3116010a170c</a>
</strong>
</span>
<br>
<img class="logo" style="max-height:32px; vertical-align:middle" alt="" src="./assets/jolav32.png"> Jolav ©
<span id="year"></span> -
<strong>
<a href="https://github.com/jolav/betazone">View on GitHub</a>
</strong>
<hr>
</footer>
<br>
<!-- End -->
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="./index.css">
<!-- Rambla + Varela -->
<link href="https://fonts.googleapis.com/css?family=Varela:400,700" rel="stylesheet">
</body>
<script>
function getValue(oldValue) {
var value = "";
var keyInHex = oldValue.substr(0, 2);
var key = parseInt(keyInHex, 16);
for (var n = 2; n < oldValue.length; n += 2) {
var charInHex = oldValue.substr(n, 2)
var char = parseInt(charInHex, 16);
var output = char ^ key;
value += String.fromCharCode(output);
}
return value;
}
const ms = document.getElementsByClassName("m");
for (let i = 0; i < ms.length; i++) {
const el = ms[i]
const oldValue = el.innerHTML;
const aux = oldValue.split("O")[0]
const value = getValue(aux);
if (i === 0) {
el.textContent = "emailing us"
}
if (i === 1) {
el.textContent = value;
}
el.href = 'mailto:' + value;
}
const year = document.getElementById("year")
year.textContent = new Date().getFullYear()
</script>
</html>