-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
492 lines (459 loc) · 13.4 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
<html>
<head>
<meta charset="utf8">
<title>cubing.net</title>
<link rel="shortcut icon" href="favicon.png" />
<style type="text/css">
body {
background: #ACE;
font-family: Helvetica;
}
#title {
margin-top: 20px;
text-align: center;
font-size: 4em;
font-family: Helvetica;
font-weight: bold;
color: #FFF;
text-shadow: 0px 0px 16px #444;
font-variant: small-caps;
}
.links {
margin-top: 0px;
text-align: center;
line-height: 200%;
font-size: 2em;
font-family: Helvetica;
font-weight: bold;
color: #FFF;
text-shadow: 0px 0px 16px #444;
font-variant: small-caps;
}
a:link,
a:visited {
/* color: #FFF; */
}
a:hover {
color: #CDF;
}
.image {
text-align: center;
}
.image img {
width: 200px;
}
table.competition_table {
margin: 8px auto;
font-size: 14px;
/*width: 70%;*/
border-collapse: collapse;
}
.competition_table thead,
tbody {
border: 1px solid #AAA;
}
.competition_table thead tr {
background: rgb(239, 239, 239);
/* Old browsers */
background: -moz-linear-gradient(top, rgba(239, 239, 239, 1) 0%, rgba(207, 207, 207, 1) 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(239, 239, 239, 1)), color-stop(100%, rgba(207, 207, 207, 1)));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(239, 239, 239, 1) 0%, rgba(207, 207, 207, 1) 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(239, 239, 239, 1) 0%, rgba(207, 207, 207, 1) 100%);
/* Opera11.10+ */
background: -ms-linear-gradient(top, rgba(239, 239, 239, 1) 0%, rgba(207, 207, 207, 1) 100%);
/* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#cfcfcf', GradientType=0);
/* IE6-9 */
background: linear-gradient(top, rgba(239, 239, 239, 1) 0%, rgba(207, 207, 207, 1) 100%);
/* W3C */
}
.competition_table tbody td,
thead td {
font-size: 16px;
padding: 0px 16px;
height: 1.6em;
border: none;
}
.competition_table thead td {
color: #666;
font-weight: bold;
}
.competition_table tbody tr:nth-child(even) {
background: #EEE;
}
.competition_table tbody tr:nth-child(odd) {
background: #FFF;
}
.competition_table tbody tr a {
color: #33F;
text-decoration: none;
font-weight: bold;
}
.competition_table tbody tr a:hover {
color: #229;
}
.competition_table tbody td {}
.competition_table tbody.filler {
border: none;
}
.competition_table tbody.filler tr {
background: none !important;
}
@media (prefers-color-scheme: dark) {
body {
background: #123c66;
color: #DDD;
}
a,
.competition_table tbody tr a {
color: #669df5;
}
a:visited,
.competition_table tbody tr a:visited {
color: #af73d5;
}
.competition_table tbody tr:nth-child(odd) {
background: #191919;
}
.competition_table tbody tr:nth-child(even) {
background: #333;
}
.competition_table thead,
tbody {
border: 1px solid #222;
}
.competition_table thead td {
color: white;
}
.competition_table thead tr {
background: -webkit-linear-gradient(top, rgba(32, 32, 32, 1) 0%, rgba(64, 64, 64, 1) 100%);
}
}
</style>
</head>
<body>
<a href="https://www.cubing.net/">
<div class="image"><img src="single_cube_white_stickers.png" /></div>
</a>
<table class="competition_table">
<thead>
<tr>
<td>Purpose</td>
<td>By</td>
<td>Site</td>
</tr>
</thead>
<tbody>
<tr>
<td>⏯ Twizzle ᴬᴸᴾᴴᴬ</td>
<td>Lucas Garron, Tom Rokicki, etc.</td>
<td><a href="https://twizzle.net/">alpha.twizzle.net</a></td>
</tr>
<tr>
<td>⏯ Alg</td>
<td>Lucas Garron</td>
<td><a href="https://alg.cubing.net/">alg.cubing.net</a></td>
</tr>
<tr>
<td>⏱ Timer</td>
<td>Lucas Garron</td>
<td><a href="https://timer.cubing.net/">timer.cubing.net</a></td>
</tr>
<tr>
<td>🖼️ Icons</td>
<td>Devin Corr-Robinett, et al.</td>
<td><a href="https://icons.cubing.net/">icons.cubing.net</a></td>
</tr>
<tr>
<td>🔀 Scramble</td>
<td>Lucas Garron</td>
<td><a href="https://scramble.cubing.net/">scramble.cubing.net</a></td>
</tr>
<tr>
<td>🔢 WCA Inspection web app</td>
<td>Lucas Garron</td>
<td><a href="https://inspection.cubing.net/">inspection.cubing.net</a></td>
</tr>
<tr>
<td>⏪ Negative Time Solving Contest</td>
<td>Lucas Garron (formerly Shotaro Makisumi)</td>
<td><a href="https://negative-time.cubing.net/">negative-time.cubing.net</a></td>
</tr>
<tr>
<td>🧪 Experiments (cubing.js)</td>
<td>Lucas Garron, Tom Rokicki, etc.</td>
<td><a href="https://experiments.cubing.net/cubing.js/">experiments.cubing.net/cubing.js</a></td>
</tr>
<tr>
<td>↔️ Bluetooth</td>
<td>Lucas Garron</td>
<td><a href="https://bluetooth.cubing.net/">bluetooth.cubing.net</a></td>
</tr>
<tr>
<td>👓 Virtual Reality</td>
<td>Lucas Garron</td>
<td><a href="https://vr.cubing.net/">vr.cubing.net</a></td>
</tr>
<tr>
<td>⚔️ FMC Duel</td>
<td>Lucas Garron</td>
<td><a href="https://fmc-duel.cubing.net/">fmc-duel.cubing.net</a></td>
</tr>
<tr>
<td>🎮 Experimental Javascript Cube Sim</td>
<td>Lucas Garron</td>
<td><a href="twisty.js/">twisty.js</a></td>
</tr>
<tr>
<td>👆 Mobile/Touch Cube Interaction Concept</td>
<td>Lucas Garron</td>
<td><a href="touch/">Touch Cube</a></td>
</tr>
<tr>
<td>PLL Trainer</td>
<td>Lucas Garron</td>
<td><a href="1lpll/">1LPLL</a></td>
</tr>
<tr>
<td>ACube port to Javascript</td>
<td>(Josef Jelinek, et al.)</td>
<td><a href="ACube.js/">ACube.js</a></td>
</tr>
<tr>
<td>ksolve+ port to Javascript</td>
<td>(Kare Krig, Michael Gottlieb, et al.)</td>
<td><a href="ksolve.js/">ksolve.js</a></td>
</tr>
<tr>
<td>ksolve state sim + SVG visualization in JS</td>
<td>Lucas Garron</td>
<td><a href="ksolve-js-svg/">ksolve-js-svg</a></td>
</tr>
<tr>
<td>Javascript WCA-Style Scrambler</td>
<td>Lucas Garron, et al.</td>
<td><a href="mark2/">Mark 2</a></td>
</tr>
<tr>
<td>The WCA's Finest News Source</td>
<td>Shelley Chang</td>
<td><a href="https://carrot.cubing.net/">carrot.cubing.net</a></td>
</tr>
<tr>
<td>Cube Software Archive</td>
<td>Lucas Garron</td>
<td><a href="software">cubing.net/software</a></td>
</tr>
<!--tr>
<td>Unofficial WCA Statistics</td>
<td>Shotaro Makisumi</td>
<td><a href="https://stats.cubing.net/">stats.cubing.net</a></td>
</tr-->
<tr>
<td>CALCubeTimer</td>
<td>Jeremy Fleischman, Ryan Zheng</td>
<td><a href="https://cct.cubing.net/">CCT Homepage</a></td>
</tr>
<tr>
<td>Live Competition Results for the World</td>
<td>Jim Mertens</td>
<td><a href="https://live.cubing.net/">live.cubing.net</a></td>
</tr>
<tr>
<td>Online Timer by Michael Gottlieb</td>
<td>Michael Gottlieb</td>
<td><a href="https://www.qqtimer.net/">qqtimer.net <img src="img/external_link.png"></a></td>
</tr>
<tr>
<td>Cubing on GitHub</td>
<td>-</td>
<td><a href="https://github.com/cubing/">github.com/cubing <img src="img/external_link.png"></a></td>
</tr>
<tr>
<td>JS Cubing</td>
<td>-</td>
<td><a href="https://js.cubing.net/">js.cubing.net</a></td>
</tr>
<tr>
<td>Cubing Archive</td>
<td>-</td>
<td><a href="https://archive.cubing.net/">archive.cubing.net</a></td>
</tr>
<tr>
<td>Cubing Notation</td>
<td>-</td>
<td><a href="https://notation.cubing.net/">notation.cubing.net</a></td>
</tr>
<tr>
<td>AnimCubeJS</td>
<td>Josef Jelínek, Tadeáš Miler, Michael Feather</td>
<td><a href="https://animcubejs.cubing.net/animcubejs.html">animcubejs.cubing.net</a></td>
</tr>
<tr>
<td>Remembering David Singmaster</td>
<td>-</td>
<td><a href="https://singmaster.cubing.net/">singmaster.cubing.net</a></td>
</tr>
<tr>
<td>A place for hosting results from unofficial Rubik's cube competitions.</td>
<td>Deni Mintsaev, et al.</td>
<td><a href="https://cubingcontests.com/">cubingcontests.com</a></td>
</tr>
<!-- <tr>
<td>TNoodle</td>
<td>Jeremy Fleischman, Clément Gallet, etc.</td>
<td><a href="https://tnoodle.cubing.net/">TNoodle Homepage</a></td>
</tr> -->
</tbody>
<tbody class="filler">
<tr>
<td colspan="3"></td>
</tr>
</tbody>
<thead>
<tr>
<td>Purpose</td>
<td>By</td>
<td>Site</td>
</tr>
</thead>
<tbody>
<tr>
<td>Fantasy Cubing</td>
<td>Caleb Hoover</td>
<td><a href="https://fantasy.cubing.net/">fantasy.cubing.net</a></td>
</tr>
<tr>
<td>CubeCast Podcast</td>
<td>Waffo, Ranzha, and Meechay</td>
<td><a href="https://cubecast.cubing.net/">cubecast.cubing.net</a></td>
</tr>
<tr>
<td>BLD practice tool</td>
<td><a href="https://github.com/adimare">adimare</a></td>
<td><a href="https://scrambld.cubing.net/">ScramBLD.cubing.net</a></td>
</tr>
<!--tr>
<td>Cubing Site</td>
<td>Arthur Adams</td>
<td><a href="https://arthur.cubing.net/">arthur.cubing.net</a></td>
</tr-->
<tr>
<td>Cubing Site</td>
<td>Aron Puddy-Mathew</td>
<td><a href="https://aronpm.cubing.net/">aronpm.cubing.net</a></td>
</tr>
<!--tr>
<td>Cubing Site</td>
<td>Rob ("Brest")</td>
<td><a href="https://brest.cubing.net/">brest.cubing.net</a></td>
</tr-->
<!--tr>
<td>Cubing Site</td>
<td>Bruce Norskog</td>
<td><a href="https://bruce.cubing.net/">bruce.cubing.net</a></td>
</tr-->
<!--tr>
<td>Cubing Site</td>
<td>Chester Lian</td>
<td><a href="https://chester.cubing.net/">chester.cubing.net</a></td>
</tr-->
<!--tr>
<td>Cubing Site</td>
<td>Cornelius Dieckmann</td>
<td><a href="https://corny.cubing.net/">corny.cubing.net</a></td>
</tr-->
<!--tr>
<td>Cubing Site</td>
<td>Erik Akkersdijk</td>
<td><a href="https://erik.cubing.net/">erik.cubing.net</a></td>
</tr-->
<!--tr>
<td>Cubing Site</td>
<td>Tim Sun</td>
<td><a href="https://esk.cubing.net/">erik.cubing.net</a></td>
</tr-->
<!--tr>
<td>Cubing Site</td>
<td>Feliks Zemdegs</td>
<td><a href="https://faz.cubing.net/">faz.cubing.net</a></td>
</tr-->
<tr>
<td>Cubing Site</td>
<td>Stefan Huber</td>
<td><a href="https://hubi.cubing.net/blog/">hubi.cubing.net</a></td>
</tr>
<tr>
<td>Cubing Site</td>
<td>Mike Hughey</td>
<td><a href="https://hughey.cubing.net/">hughey.cubing.net</a></td>
</tr>
<!--tr>
<td>Cubing Site</td>
<td>India</td>
<td><a href="https://inda.cubing.net/">india.cubing.net</a></td>
</tr-->
<tr>
<td>Cubing Site</td>
<td>Kris de Asis</td>
<td><a href="https://meep.cubing.net/">meep.cubing.net</a></td>
</tr>
<!--tr>
<td>Cubing Site</td>
<td>Prisma Puzzle Timer</td>
<td><a href="https://prisma.cubing.net/">prisma.cubing.net</a></td>
</tr-->
<!--tr>
<td>Cubing Site</td>
<td>Robert Yau</td>
<td><a href="https://robert.cubing.net/">robert.cubing.net</a></td>
</tr-->
<tr>
<td>Cubing Site</td>
<td>Brandon "Ranzha" Harnish</td>
<td><a href="https://ranzha.cubing.net/">ranzha.cubing.net</a></td>
</tr>
<!--tr>
<td>Cubing Site</td>
<td>Rowe Hessler</td>
<td><a href="https://rowe.cubing.net/">rowe.cubing.net</a></td>
</tr-->
<!--tr>
<td>Cubing Site</td>
<td>Sarah Strong</td>
<td><a href="https://sarah.cubing.net/">sarah.cubing.net</a></td>
</tr-->
<tr>
<td>Cubing Site</td>
<td>Stachu Korick</td>
<td><a href="https://stachu.cubing.net/">stachu.cubing.net</a></td>
</tr>
<!--tr>
<td>Cubing Site</td>
<td>Tim Reynolds</td>
<td><a href="https://tim.cubing.net/">tim.cubing.net</a></td>
</tr-->
<!--tr>
<td>Cubing Site</td>
<td>Jules Manalang</td>
<td><a href="https://waffle.cubing.net/">waffle.cubing.net</a></td>
</tr-->
<tr>
<td>Cubing Site</td>
<td>Ben Streeter</td>
<td><a href="https://speedy.cubing.net/">speedy.cubing.net</a></td>
</tr>
</tbody>
</table>
<br><br>
<center>
If you have something to share and would like a <code>cubing.net</code>
subdomain for it, feel free to email <a href="https://garron.net/">Lucas
Garron</a>.
</center>
<br><br>
</body>
</head>