-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
475 lines (405 loc) · 20 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
<html>
<head>
<title>JSpardy</title>
<link rel="stylesheet" href="style.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<div id="app">
<div id="board">
<div id="column1" class="column">
<div class="cardheader">
<h1>ES2015+</h1>
<div class="big">
<span>ES2015+</span>
</div>
</div>
<div class="card">
<span>100</span>
<div class="question">
<span>Who is Branden Eich?</span>
</div>
<div class="answer">
<span>Besides his roles as former Mozilla CEO and CTO, he is the creator of JavaScript</span>
</div>
</div>
<div class="card">
<span>200</span>
<div class="question">
<span>What is ES6+?</span>
</div>
<div class="answer">
<span>It is the alternative name of this category that more than 80% of developers still use according to recent polls.</span>
</div>
</div>
<div class="card">
<span>300</span>
<div class="question">
<span>What is a template literal?</span>
</div>
<div class="answer">
<span>It provides syntactic sugar for the construction of strings. It works similar to the string interpolation features in Perl or Python. </span>
</div>
</div>
<div class="card">
<span>400</span>
<div class="question">
<span>What is a promise?</span>
</div>
<div class="answer">
<span>It's a first class representation of a value that may be made available in the future and is a tool for asynchronous programming.</span>
</div>
</div>
<div class="card">
<span>600</span>
<div class="question">
<span>What is an arrow?</span>
</div>
<div class="answer">
<span>Unlike traditional functions, this function shorthand makes the same lexical 'this' available as their surrounding code.</span>
</div>
</div>
<div class="card">
<span>800</span>
<div class="question">
<span>What is a generator?</span>
</div>
<div class="answer">
<span>It's a function which can be exited/halted and later re-entered. Its context will be saved across re-entrances.</span>
</div>
</div>
</div>
<div id="column2" class="column">
<div class="cardheader">
<h1>Internet Edgesplorer</h1>
<div class="big">
<span>Internet<br/>Edgesplorer</span>
</div>
</div>
<div class="card">
<span>100</span>
<div class="question">
<span>What is Safari?</span>
</div>
<div class="answer">
<span>It's the new IE6.</span>
</div>
</div>
<div class="card">
<span>200</span>
<div class="question">
<span>What is border-radius?</span>
</div>
<div class="answer">
<span>Tables with specially crafted images in the corner cells where a frequent substitution for the lack of this popular CSS property in IE8.</span>
</div>
</div>
<div class="card">
<span>300</span>
<div class="question">
<span>What is Trident?</span>
</div>
<div class="answer">
<span>It is the name of the rendering engine that was first introduced with the release of Internet Explorer version 4.0 in October 1997 and was only just recently replaced with the new Edge Browser.</span>
</div>
</div>
<div class="card">
<span>400</span>
<div class="question">
<span>What is ORTC?</span>
</div>
<div class="answer">
<span>This is the name of the web real-time communications API only Microsoft Edge implemented so far, skipping over the existing co-existing standard pioneered by Google.</span>
</div>
</div>
<div class="card">
<span>600</span>
<div class="question">
<span>What is Chakra?</span>
</div>
<div class="answer">
<span>It's the name of Microsoft's new JavaScript engine for its Edge browser. It was open-sourced at JSConf US this morning.</span>
</div>
</div>
<div class="card">
<span>800</span>
<div class="question">
<span>What is quirks mode?</span>
</div>
<div class="answer">
<span>This alternative rendering technique is used by IE for the sake of maintaining backward compatibility instead of strictly complying with W3C and IETF standards.</span>
</div>
</div>
</div>
<div id="column3" class="column">
<div class="cardheader">
<h1>Tools and Frameworks</h1>
<div class="big">
<span>Tools and<br/>Frameworks</span>
</div>
</div>
<div class="card">
<span>100</span>
<div class="question">
<span>What is MVC?</span>
</div>
<div class="answer">
<span>BackboneJS popularized this design pattern on the client-side in 2010.</span>
</div>
</div>
<div class="card">
<span>200</span>
<div class="question">
<span>What is jQuery?</span>
</div>
<div class="answer">
<span>Released in 2006 it's the one framework that heavily popularized JavaScript over the next years. An estimated 65% of websites still use it today.</span>
</div>
</div>
<div class="card">
<span>300</span>
<div class="question">
<span>What is npm?</span>
</div>
<div class="answer">
<span>It was built as a result of the frustrations over working with CommonJS and with inspiration from similar projects like PEAR or CPAN in other languages.</span>
</div>
</div>
<div class="card">
<span>400</span>
<div class="question">
<span>What is AngularJS?</span>
</div>
<div class="answer">
<span>Scope management becomes the most complex job when maintaining growing codebasis of this popular framework.</span>
</div>
</div>
<div class="card">
<span>600</span>
<div class="question">
<span>What is ReactJS?</span>
</div>
<div class="answer">
<span>It is often compared with more complete frameworks such as Angular or Ember, although it focusses mainly on stateful DOM updates.</span>
</div>
</div>
<div class="card">
<span>800</span>
<div class="question">
<span>
<iframe width="854" height="480" src="https://www.youtube.com/embed/GRzLGFpxPjY?start=262" frameborder="0" allowfullscreen></iframe>
</span>
</div>
<div class="answer">
<span>He popularized the data format JSON and developed various JS tools such as JSHint and JSMin.</span>
</div>
</div>
</div>
<div id="column4" class="column">
<div class="cardheader">
<h1>JSConf</h1>
<div class="big">
<span>JSConf</span>
</div>
</div>
<div class="card">
<span>100</span>
<div class="question">
<span>Washington DC?</span>
</div>
<div class="answer">
<span>This city hosted the very first JSConf event.</span>
</div>
</div>
<div class="card">
<span>200</span>
<div class="question">
<span>What are NodeBots, NodeCopter, NodeRockets and NodeBoats?</span>
</div>
<div class="answer">
<span>These are the four robotics events that started at JSConf.</span>
</div>
</div>
<div class="card">
<span>300</span>
<div class="question">
<span>What is Singapore?</span>
</div>
<div class="answer">
<span>This JSPardy game was used as opening of JSConf.Asia in this Southeast Asian city last month.</span>
</div>
</div>
<div class="card">
<span>400</span>
<div class="question">
<span>What is #poopin?</span>
</div>
<div class="answer">
<span>This game of subversive faux posting was started at JSConf US 2010.</span>
</div>
</div>
<div class="card">
<span>600</span>
<div class="question">
<span>What is Scottsdale AZ?</span>
</div>
<div class="answer">
<span>It is the JSConf US location that Paul Irish rode a mechinal bull.</span>
</div>
</div>
<div class="card">
<span>800</span>
<div class="question">
<span>What is JSConf Budapest?</span>
</div>
<div class="answer">
<span>It is the latest addition to the JSConf family of events and kicked off successfully in May this year in Europe.</span>
</div>
</div>
</div>
<div id="column5" class="column">
<div class="cardheader">
<h1>Cats</h1>
<div class="big">
<span>Cats</span>
</div>
</div>
<div class="card">
<span>100</span>
<div class="question">
<span>What is the cats tail?</span>
</div>
<div class="answer">
<span>It's used by our feline companions to control their body roll and direction during jumps.</span>
</div>
</div>
<div class="card">
<span>200</span>
<div class="question">
<span>What is Exploding Kittens?</span>
</div>
<div class="answer">
<span>Elan Lee, Matthew Inman and Shane Small are the names of the creators of this card game that became the most funded Kickstarter campaign of all times.</span>
</div>
</div>
<div class="card">
<span>300</span>
<div class="question">
<span>What is world-domination?</span>
</div>
<div class="answer">
<span>It is the ultimate plan of all cats and the main reason our furry friends created the internet.</span>
</div>
</div>
<div class="card">
<span>400</span>
<div class="question">
<span><img src="img/grumpycat.jpg" height="580" /></span>
</div>
<div class="answer">
<span>Her gray-blue eyes have frowned on many and made her owner a millionaire.</span>
</div>
</div>
<div class="card">
<span>600</span>
<div class="question">
<span>Who is Andrew Lloyd Webber?</span>
</div>
<div class="answer">
<span>He composed the musical "Cats" based on "Old Possum's Book of Practical Cats" by T. S. Eliot which premiered in London in 1981.</span>
</div>
</div>
<div class="card">
<span>800</span>
<div class="question">
<span>What are cat-cafes?</span>
</div>
<div class="answer">
<span>They are popular social hang-outs around Asia and the first if its kind in the US opened in Oakland in November 2014. Their success is largely attributed to social-media.</span>
</div>
</div>
</div>
<div id="column6" class="column">
<div class="cardheader">
<h1>Florida</h1>
<div class="big">
<span>Florida</span>
</div>
</div>
<div class="card">
<span>100</span>
<div class="question">
<span>What is Tallahassee?</span>
</div>
<div class="answer">
<span>It's the capitol of the sunshine state since 1824.</span>
</div>
</div>
<div class="card">
<span>200</span>
<div class="question">
<span>Who is Panama City Beach?</span>
</div>
<div class="answer">
<span>Starting in the late 90's this location began to take the top spot as the #1 Spring Break location. From 2010-2015 an estimated 300,000 students traveled to this destination.</span>
</div>
</div>
<div class="card">
<span>300</span>
<div class="question">
<span>What is Jacksonville?</span>
</div>
<div class="answer">
<span>It is the largest city by population in the state of Florida and the largest city by area in the contiguous United States.</span>
</div>
</div>
<div class="card">
<span>400</span>
<div class="question">
<span>What is a minimum wage?</span>
</div>
<div class="answer">
<span>Florida's constitution establishes this state-wide income law that (unique among its kind) is adjusted for inflation annually.</span>
</div>
</div>
<div class="card">
<span>600</span>
<div class="question">
<span>What is Pa-hay-okee?</span>
</div>
<div class="answer">
<span>The native american tribe of the Seminoles refers to the Everglades tropical wet lands with this word. It literally translated means "Grassy Water".</span>
</div>
</div>
<div class="card">
<span>800</span>
<div class="question">
<span>What is French Creole?</span>
</div>
<div class="answer">
<span>It is the third most spoken first language in Florida after English and Spanish.</span>
</div>
</div>
</div>
</div>
<div id="players">
<div id="player1" class="player">
<input type="text" placeholder="Player 1" value=""/>
<span>0</span>
</div>
<div id="player2" class="player">
<input type="text" placeholder="Player 2" value="" />
<span>0</span>
</div>
<div id="player3" class="player">
<input type="text" placeholder="Player 3" value="" />
<span>0</span>
</div>
</div>
</div>
<script src="js/midi_message.js"></script>
<script src="script.js"></script>
<script src="midi.js"></script>
<audio src="bsound.wav" id="bsound"></audio>
</body>
</html>