forked from hakimel/reveal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagile-reading.html
More file actions
636 lines (597 loc) · 23.2 KB
/
agile-reading.html
File metadata and controls
636 lines (597 loc) · 23.2 KB
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Fun with ChatGPT (AgileReading) - v3.0 - 15/03/2023</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/black.css">
<!--<link rel="stylesheet" href="custom.css">-->
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css">
</head>
<body>
<style>
.blur {
filter: brightness(25%) blur(4px);
}
.focus {
filter: brightness(100%) blur(0px);
}
</style>
<script>
// Defines the custom element with our appropriate name, <apocalyptic-warning>
async function queryGPT (context, messages, input, output, processVoice) {
try {
const post = {
system: context,
examples: messages,
prompt: input
}
// We can also have an array of "examples" which will basically be the conversation
/*
{
"system": "You are a famous cartoon character, and I have to guess who you are.",
"examples": [
"What do I have to do?",
"I'm a famous character. You have to guess who I am"
],
"prompt": "Are you in a movie?"
}
*/
//const response = await fetch('http://localhost:3000/api/raw', {
const response = await fetch('https://ai-prompt-writer.vercel.app/api/raw', {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify(post)
});
const data = await response.json();
const outputData = data.output;
console.log(outputData);
if(output) output.value = outputData;
if(processVoice) {
//ElevenLabs voice?
getAudio(outputData);
}
return data;
} catch (ex) {
console.error(ex);
if(output) output.value = ex;
}
}
async function getAudio(input) {
var res = await fetch('https://ai-prompt-writer.vercel.app/api/voice', {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({input})
})
var blob = await res.blob()
var blobURL = URL.createObjectURL(blob);
console.log("AUDIO URL", blobURL);
var audio0 = new Audio(blobURL);
audio0.play();
}
customElements.define("gpt-input",
// Ensures that we have all the default properties and methods of a built in HTML element
class extends HTMLElement {
// Called anytime a new custom element is created
constructor() {
// Calls the parent constructor, i.e. the constructor for `HTMLElement`, so that everything is set up exactly as we would for creating a built in HTML element
super();
// Grabs the <template> and stores it in `warning`
let rawTemplate = document.getElementById("GPT");
// Stores the contents of the template in `mywarning`
let myTemplate = rawTemplate.content;
const shadowRoot = this.attachShadow({mode: "open"}).appendChild(myTemplate.cloneNode(true));
console.log("constructed");
this.sendGPT = this.sendGPT.bind(this);
}
sendGPT() {
const { shadowRoot } = this;
const showConversation = this.getAttribute("data-show-conversation") === 'true';
const processVoice = this.getAttribute("data-process-voice");
const contextValue = shadowRoot.querySelector('.context')?.assignedNodes()[0].innerText;
const inputValue = shadowRoot.querySelector('#input').value;
let messages = [];
const output = shadowRoot.querySelector('.output');
output.value = "";
output.setAttribute('placeholder', "...loading...");
console.log("sendGPT", contextValue, inputValue, output);
if(showConversation) {
console.log(shadowRoot?.querySelector('.context-conversation'));
var conversation = shadowRoot?.querySelector('.context-conversation')?.assignedNodes()[0];
console.log(conversation);
messages = [...conversation.children].map(x => x.innerText);
console.log(messages);
}
queryGPT(contextValue, messages, inputValue, output, processVoice);
}
connectedCallback() {
const { shadowRoot } = this;
const button = shadowRoot.querySelector('button');
button.addEventListener('click', this.sendGPT);
console.log("attr", this.getAttribute("data-show-conversation"), shadowRoot, this);//.getAttribute('data-show-input'));
if(this.getAttribute("data-show-input") !== 'true') {
shadowRoot.querySelectorAll(".input").forEach(x => x.setAttribute('class', "hidden"));
}
if(this.getAttribute("data-show-conversation") !== 'true') {
shadowRoot.querySelectorAll(".conversation").forEach(x => x.setAttribute('class', "hidden"));
}
}
});
</script>
<template id="GPT" data-show-input="true">
<style>
.hidden {
display: none;
}
small {
font-size: medium;
}
.gpt-form {
display: grid;
grid-template-columns: 200px 1fr;
grid-gap: 16px;
}
label {
text-align: right;
grid-column: 1 / 2;
}
input, button, textarea {
grid-column: 2 / 3;
}
</style>
<div class="gpt-form">
<label>Context</label>
<div><slot class="context" name="context">Example</slot></div>
<label class="conversation">Chat</label>
<div class="conversation"><slot class="context-conversation" name="conversation">Example</slot></div>
<label class="input">Input</label>
<textarea class="input" style="font-size: 1.6rem;" placeholder="your input" id="input"></textarea>
<button>go</button>
<label>Output</label>
<textarea id="output" style="font-size: 1rem;" class="output"></textarea>
</div>
</template>
<div class="reveal">
<div class="slides">
<section data-state="intro">
<section data-auto-animate data-state="focus-bg">
<h2>Adam Hall</h2>
</section>
<section data-auto-animate data-state="blur-bg">
<h2>Adam Hall</h2>
<p>Former Agile Coach</p>
</section>
<section data-auto-animate>
<h2>Adam Hall</h2>
<p>Former Agile Coach</p>
<p>Amateur Artist</p>
</section>
<section data-auto-animate>
<h2>Adam Hall</h2>
<p>Former Agile Coach</p>
<p>Amateur Artist</p>
<p>Talkative Technophile</p>
</section>
<section data-background="black">
when suddenly...
</section>
</section>
<section data-state="robots">
<section data-state="focus-bg">
<img src="assets/OpenAI_Logo.png" />
<aside class="notes">
On June 11, 2020, an AI research and deployment company OpenAI – founded by Elon Musk, Sam Altman, and others – announced its revolutionary language model, GPT-3. The news quickly created buzz in tech circles with demo videos of early GPT-3 prototypes going viral on Twitter, Reddit, and Hacker News.
</aside>
</section>
<section data-auto-animate data-state="blur-bg">
<img src="assets/openai.png" />
</section>
<section data-auto-animate>
<img src="assets/openai.png" />
<img src="assets/Bloomberg-News.jpg" width="250" height="100" style="float: right;" />
</section>
<section>
<iframe width="560" height="315" data-src="https://www.youtube.com/embed/Zm9B-DvwOgw" title="YouTube video player"
frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</section>
<section data-background="black">
CAN. NOT. WAIT.
</section>
</section>
<section data-state="art">
<section data-state="focus-bg">
<h1>Art</h1>
</section>
<section data-auto-animate data-state="blur-bg">
<img src="assets/art-example.jpg" style="width: 50%; height: 50%" />
</section>
<section data-auto-animate data-state="blur-bg">
<img src="assets/art-example.jpg" style="width: 50%; height: 50%" />
<p>2 likes</p>
</section>
<section data-auto-animate data-state="blur-bg">
<img src="assets/art-example2.jpg" style="width: 50%; height: 50%" />
</section>
<section data-auto-animate data-state="blur-bg">
<img src="assets/art-example2.jpg" style="width: 50%; height: 50%" />
<p>11 likes</p>
</section>
<section data-auto-animate data-state="blur-bg">
<img src="assets/example-wes1.jpeg" />
</section>
<section data-auto-animate data-state="blur-bg">
<img src="assets/example-wes1.jpeg" />
<p>417,865 likes</p>
</section>
<section data-state="blur-bg">
<img src="assets/press.png" />
</section>
<section data-state="blur-bg">
<img src="assets/example-wes2.jpeg" />
</section>
<section data-state="blur-bg">
<img src="assets/example-wes3.jpeg" />
</section>
<section data-state="blur-bg">
<img src="assets/example-wes4.jpeg" />
</section>
<section data-background="black">
<p>what i learnt</p>
<aside class="notes">
Haters gonna Hate
Fear of change
Misunderstanding of what its doing
Learnt more about art as a result
Felt more of a community a a result
</aside>
</section>
</section>
<section data-state="openai">
<section data-state="focus-bg">
<h1>Invite</h1>
</section>
<section data-state="blur-bg">
<img src="assets/invite-openai.png" />
</section>
<section data-state="blur-bg">
<gpt-input data-show-input="true">
<span slot="context" style="font-size: 1.6rem">You are writing an award winning rap. The rap should be about...</span>
</gpt-input>
</section>
<section data-auto-animate>
<img src="assets/chat-gpt-adoption1.png">
</section>
<section data-auto-animate>
<img src="assets/chat-gpt-adoption1.png">
<img src="assets/chat-gpt-adoption2.png">
</section>
<section data-auto-animate>
<img src="assets/chat-gpt-adoption1.png">
<img src="assets/chat-gpt-adoption2.png">
<img src="assets/chat-gpt-adoption3.png">
</section>
<section data-auto-animate>
<img src="assets/chat-gpt-adoption1.png">
<img src="assets/chat-gpt-adoption3.png">
<img src="assets/chat-gpt-adoption4.png">
</section>
<section data-auto-animate>
<img src="assets/chat-gpt-adoption1.png">
<img src="assets/chat-gpt-adoption4.png">
<img src="assets/chat-gpt-adoption5.png">
</section>
<section data-auto-animate data-background="black">
<img src="assets/chat-gpt-adoption1.png">
<img src="assets/chat-gpt-adoption5.png">
<img src="assets/chat-gpt-adoption6.png">
</section>
</section>
<section data-state="app">
<section data-state="focus-bg">
<h1>My First App</h1>
</section>
<section data-state="blur-bg">
<gpt-input data-show-conversation="true" data-show-input="true">
<div slot="context" style="font-size: 1.6rem; text-align: left;">
<p>
You are working with a product team. I would like you to write a user story for each idea the team comes up with
</p>
</div>
<div slot="conversation" style="font-size: 1.6rem; text-align: left;">
<p>Wedding seating plan app</p>
<pre>As a busy bride to be
I want to create a seating plan for the wedding
So everyone will know their place, and the day will be amazing</pre>
<i>New direct debit payment system on the app</i>
<pre>As user on the app
I want setup an automatic monthly payment system
So I don't have to log in every month to pay manually</pre>
</div>
</gpt-input>
</section>
<section data-background="black">
doesn't this miss the point of user stories?
<aside class="notes">
Card
Conversation
Confirmation
</aside>
</section>
</section>
<section data-state="upskilling">
<section data-state="focus-bg">
<h1>Upskilling</h1>
</section>
<section data-state="blur-bg">
<gpt-input>
<span slot="context">Write the intro to a blog post about sprint planning</span>
</gpt-input>
</section>
<section>
<gpt-input>
<span slot="context">Write the intro to a popular blog post about sprint planning by starting with a dramatic story, and then teasing the golden rule</span>
</gpt-input>
</section>
<section>
<gpt-input>
<span slot="context">Write the intro to a popular blog post about how scrum teams should never forget about sprint planning in the style of an angry gangster who is fed up with teams who forget to do it.</span>
</gpt-input>
</section>
<section>
<gpt-input>
<div slot="context" style="text-align: left;"><p style="font-size: 1.6rem">On my todo list I have the following items...</p>
<pre>* Paint the dining room
* Buy a leaf blower
* Buy a present for mother's day</pre>
<p style="font-size: 1.6rem">Tell me which one I should be prioritising in the style of an angry gangster who is fed up with me always forgetting to do things on my todo list.</p></pre>
</gpt-input>
</section>
<section>
<gpt-input data-show-input="false" data-process-voice="true">
<span slot="context">I want you to respond as if you are the joker. How would the joker intervene in the way twitter is managed?</span>
</gpt-input>
</section>
<section data-background="black">
Your scientists were so preoccupied with whether they could, they didn't stop to think if they should
</section>
</section>
<section data-state="sterotypes">
<section data-state="focus-bg"><h1>Stereotypes</h1></section>
<section data-state="blur-bg">
<gpt-input>
<p slot="context">I'm writing a movie about a careworker. I want you to create a short chracter bio. Include their name, demographic and their appearence.</p>
</gpt-input>
</section>
<section>
<gpt-input>
<p slot="context">I'm writing a movie about a Director of Technology. I want you to create a short chracter bio. Include their name, demographic and their appearence.</p>
</gpt-input>
</section>
<section data-background="black">
Actively pursue diversity
</section>
</section>
<section data-state="misinformation">
<section data-state="focus-bg">
<h1>Misinformation</h1>
</section>
<section data-state="blur-bg" data-auto-animate>
<img src="assets/misinformation1.png">
</section>
<section data-auto-animate>
<img src="assets/misinformation1.png">
<img src="assets/misinformation2.png">
</section>
<section data-auto-animate>
<img src="assets/misinformation2.png">
<img src="assets/misinformation3.png">
</section>
<section data-auto-animate>
<img src="assets/misinformation3.png">
<img src="assets/misinformation4.png">
</section>
<section data-background="black">
Treat OpenAI like a junior
</section>
</section>
<section data-state="jobs">
<section data-state="focus-bg">
<h1>Jobs</h1>
</section>
<section data-state="blur-bg">
Are jobs safe in the new world?
<aside class="notes">
Truck drivers up
accountants up
Data scientists up
</aside>
</section>
</section>
<section data-state="conclusion">
<section data-state="focus-bg">
<h1>Conclusion</h1>
</section>
<section data-state="blur-bg">
<blockquote>
Some people call this artificial intelligence, but the reality is this technology will enhance us. So instead of artificial intelligence, I think we'll augment our intelligence. (Ginni Rometty)
</blockquote>
</section>
<section data-state="blur-bg">
<img src="assets/ai-not-replace.jpg" />
<p>by mitch0zᵍᵐ</p>
</section>
<section data-state="blur-bg">
<img src="assets/go-fast.jpg" style="width: 75%; height: 75%" />
</section>
<section data-state="blur-bg">
<h2>Does it have a sense of humour?</h2>
<iframe data-src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:6935628727208837120" height="656" width="504" frameborder="0" allowfullscreen="" title="Embedded post"></iframe>
</section>
<section data-background="black">
<h2>Any questions?</h2>
</section>
</section>
<section data-state="future">
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<section data-auto-animate data-state="focus-bg">
<h2>Epilogue</h2>
</section>
<section data-auto-animate data-state="blur-bg">
<h2>Epilogue</h2>
<p>GPT-4</p>
</section>
<section data-auto-animate>
<p>GPT-4</p>
<ul>
<li>Much better content understanding</li>
</ul>
<aside class="notes">
Much better content understanding parsing and processing. It can read terms and conidtions in complicated tax law, and do reasoning and run calulations on the stuff it understands (along with how it arrived at )
</aside>
</section>
<section data-auto-animate>
<p>GPT-4</p>
<ul>
<li>Much better content understanding</li>
<li>Much longer content (~100 pages of content)</li>
</ul>
<aside class="notes">
Much longer content output (~100 pages of content)
</aside>
</section>
<section data-auto-animate>
<p>GPT-4</p>
<ul>
<li>Much better content understanding</li>
<li>Much longer content (~100 pages of content)</li>
<li>Image recognition (coming soon)</li>
</ul>
<aside class="notes">
Ability to understand images, handwriting, layouts, intent
</aside>
</section>
<section>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I don’t care that it’s not AGI, GPT-4 is an incredible and transformative technology. <br><br>I recreated the game of Pong in under 60 seconds. <br>It was my first try. <br><br>Things will never be the same. <a href="https://twitter.com/hashtag/gpt4?src=hash&ref_src=twsrc%5Etfw">#gpt4</a> <a href="https://t.co/8YMUK0UQmd">pic.twitter.com/8YMUK0UQmd</a></p>— Pietro Schirano (@skirano) <a href="https://twitter.com/skirano/status/1635736107949195278?ref_src=twsrc%5Etfw">March 14, 2023</a></blockquote>
</section>
<section>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I just watched GPT-4 turn a hand-drawn sketch into a functional website.<br><br>This is insane. <a href="https://t.co/P5nSjrk7Wn">pic.twitter.com/P5nSjrk7Wn</a></p>— Rowan Cheung (@rowancheung) <a href="https://twitter.com/rowancheung/status/1635744529587359756?ref_src=twsrc%5Etfw">March 14, 2023</a></blockquote>
</section>
<section>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I dumped a live Ethereum contract into GPT-4. <br><br>In an instant, it highlighted a number of security vulnerabilities and pointed out surface areas where the contract could be exploited. It then verified a specific way I could exploit the contract <a href="https://t.co/its5puakUW">pic.twitter.com/its5puakUW</a></p>— Conor (@jconorgrogan) <a href="https://twitter.com/jconorgrogan/status/1635695064692273161?ref_src=twsrc%5Etfw">March 14, 2023</a></blockquote>
</section>
<section>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">DoNotPay is working on using GPT-4 to generate "one click lawsuits" to sue robocallers for $1,500. Imagine receiving a call, clicking a button, call is transcribed and 1,000 word lawsuit is generated. GPT-3.5 was not good enough, but GPT-4 handles the job extremely well: <a href="https://t.co/gplf79kaqG">pic.twitter.com/gplf79kaqG</a></p>— Joshua Browder (@jbrowder1) <a href="https://twitter.com/jbrowder1/status/1635720431091974157?ref_src=twsrc%5Etfw">March 14, 2023</a></blockquote>
</section>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
Reveal.initialize({
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
parallaxBackgroundImage: 'assets/adamhall.jpg',
parallaxBackgroundSize: "1578px 1578px",
parallaxBackgroundHorizontal: 0,
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
Reveal.addEventListener( 'blur-bg', function() {
[...document.getElementsByClassName("backgrounds")].forEach(x => {
x.classList.add("blur")
})
});
Reveal.addEventListener( 'focus-bg', function() {
[...document.getElementsByClassName("backgrounds")].forEach(x => {
x.classList.remove("blur")
})
});
Reveal.addEventListener( 'intro', function() {
// Called each time the slide with the "stats" state is made visible
Reveal.configure({
parallaxBackgroundImage: 'assets/adamhall.jpg',
parallaxBackgroundSize: "1578px 1578px",
});
});
Reveal.addEventListener( 'robots', function() {
// Called each time the slide with the "stats" state is made visible
Reveal.configure({
parallaxBackgroundImage: 'assets/robot-wannabe.png',
parallaxBackgroundSize: "1696px 928px"
});
});
Reveal.addEventListener( 'art', function() {
// Called each time the slide with the "stats" state is made visible
Reveal.configure({
parallaxBackgroundImage: 'assets/robot-art.png',
parallaxBackgroundSize: "1696px 928px"
});
});
Reveal.addEventListener( 'openai', function() {
// Called each time the slide with the "stats" state is made visible
Reveal.configure({
parallaxBackgroundImage: 'assets/robot-welcome.png',
parallaxBackgroundSize: "1696px 928px"
});
});
Reveal.addEventListener( 'app', function() {
// Called each time the slide with the "stats" state is made visible
Reveal.configure({
parallaxBackgroundImage: 'assets/robot-dance.png',
parallaxBackgroundSize: "1696px 928px"
});
});
Reveal.addEventListener( 'upskilling', function() {
// Called each time the slide with the "stats" state is made visible
Reveal.configure({
parallaxBackgroundImage: 'assets/celebrate2.png',
parallaxBackgroundSize: "1696px 928px"
});
});
Reveal.addEventListener( 'sterotypes', function() {
// Called each time the slide with the "stats" state is made visible
Reveal.configure({
parallaxBackgroundImage: 'assets/robot-bully.png',
parallaxBackgroundSize: "1696px 928px"
});
});
Reveal.addEventListener( 'misinformation', function() {
// Called each time the slide with the "stats" state is made visible
Reveal.configure({
parallaxBackgroundImage: 'assets/robot-sad.png',
parallaxBackgroundSize: "1696px 928px"
});
});
Reveal.addEventListener( 'jobs', function() {
// Called each time the slide with the "stats" state is made visible
Reveal.configure({
parallaxBackgroundImage: 'assets/robot-worry.png',
parallaxBackgroundSize: "1696px 928px"
});
});
Reveal.addEventListener( 'conclusion', function() {
// Called each time the slide with the "stats" state is made visible
Reveal.configure({
parallaxBackgroundImage: 'assets/robot-future.png',
parallaxBackgroundSize: "1728px 864px"
});
});
Reveal.addEventListener( 'future', function() {
// Called each time the slide with the "stats" state is made visible
Reveal.configure({
parallaxBackgroundImage: 'assets/robot-future2.png',
parallaxBackgroundSize: "1696px 928px"
});
});
</script>
</body>
</html>