-
Notifications
You must be signed in to change notification settings - Fork 4
/
content-mock.json
3626 lines (3626 loc) · 159 KB
/
content-mock.json
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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"pagesPieceOfTexts": {
"event__descr": "<p>JSNation is going to be the main happening of the JS scene in 2020. Want to know the future of the JavaScript ecosystem and get connected to the stellar crowd? The conference unites library authors and core teams with engineers having a summer Amsterdam as a background. We recognize JavaScript development as an art of engineering, and that's why the conference offers both a JS-driven art exhibition and audiovisual performances powered with JavaScript during the afterparty. The next day after the event, we'll explore the well-known Amsterdam museums together, and later on, we'll gather for a picnic/hangout in the Vondelpark. </p>\n",
"faq__descr": "<p>Our team is always striving to provide the best support to help you with any questions related to conference attendance and to make information more transparent and instantly accessible, we've started gathering most frequently asked questions on the page below.</p>\n<p>If you can't find an answer to your question below - contact us via hi@nodeday,uk.</p>\n",
"performance__descr": "<p>In 2019, we initiated a Call for JavaScript Artists which allowed us to deliver a state-of-the-art afterparty program with audiovisual acts powered by NodeJS, WebGL, WebAudioAPI. Want to know the programme for 2020? <a href=\"#subscribe\">Follow us</a></p>\n"
},
"pages": {
"main": {
"titleSeo": "Node Day UK Conference, Coming 2021",
"keywords": "",
"description": null,
"seoDescription": "Fully packed day of your favorite Node.js content, covering most up-to-date insights from the community.",
"key": "main",
"titlePage": "Node Day UK",
"pageSlogan": "Fully packed day of your favorite Node.js content, covering most up-to-date insights from the community.",
"pageStatistics": {
"hero": [
{
"num": "20+",
"title": "speakers",
"descr": "High-load, Serverless,<br/>GraphQL, IoT"
},
{
"num": 3,
"title": "days",
"descr": "Conference<br/>Workshops"
}
],
"techScope": [
{
"image": "/img/fastify.png",
"title": "Fastify"
},
{
"image": "https://media.graphcms.com/mkPnhEJETVJMOTS7Xl8Q",
"title": "TypeScript"
}
]
},
"locInfo": [
{
"icon": "calendar",
"desc": "Coming 2021"
},
{
"icon": "location",
"desc": "London"
}
],
"themeColor": null,
"pageNavigation": {
"headerNav": [
{
"text": "location",
"href": "#location"
},
{
"text": "OS Awards",
"href": "#awards"
},
{
"text": "diversity",
"href": "#diversity"
},
{
"text": "sponsors",
"href": "#sponsors"
},
{
"text": "workshops",
"href": "/workshops"
},
{
"text": "FAQ",
"href": "/faq"
},
{
"text": "contact us",
"href": "#contact"
}
]
},
"pageSections": {
"sponsorsSection": {
"title": "Sponsors",
"descr": "Looking for a company that cares about developer communities and invests into personal development?<br/> Check out the <a href=\"/js-jobs\">job placements from our partners</a>."
},
"locationSection": {
"title": "Summertime JS festival",
"showArrows": false
},
"mcSection": {
"title": "Your hosts",
"showArrows": false
},
"performance": {
"title": "Last year's JS performances"
},
"committee": {
"title": "Programme Committee"
},
"speakers": {
"todo": "rename to team",
"title": "First speakers"
},
"adviceLounge": {
"title": "Advice lounge"
},
"team": {
"title": "First speakers",
"cpf": true
}
}
},
"faq": {
"titleSeo": null,
"description": null,
"seoDescription": null,
"key": "faq",
"titlePage": "FAQ",
"pageSlogan": null,
"pageStatistics": null,
"themeColor": null,
"keywords": "",
"pageNavigation": null,
"pageSections": null
},
"jobs": {
"titleSeo": null,
"description": null,
"seoDescription": null,
"key": "jobs",
"titlePage": "Amsterdam JSNation Conference 2020",
"pageSlogan": null,
"pageStatistics": null,
"themeColor": null,
"keywords": "",
"pageNavigation": null,
"pageSections": null
},
"workshops": {
"titleSeo": "Workshops at Amsterdam JSNation Conference",
"description": null,
"seoDescription": null,
"key": "workshops",
"titlePage": "Learn from the best cherry-picked trainers",
"pageSlogan": "JavaScript is #1 on demand programming language in the world with 25 millions of developers behind it. Meet the ones who shape out the now and the future of the prospering nation.",
"pageStatistics": null,
"themeColor": null,
"keywords": "javascript, conference, workshops, jsnation, amsterdamjs, vuejs, react, angular, frameworks",
"pageNavigation": {
"headerNav": [
{
"text": "Conference page",
"href": "/"
},
{
"text": "FAQ",
"href": "/faq"
}
]
},
"pageSections": {
"title": "Workshops <br/>on June 3 and 4",
"trainers": {
"title": "Trainers"
},
"team": {
"title": "Trainers",
"cpf": false
}
}
},
"extended": {
"titleSeo": null,
"description": null,
"seoDescription": null,
"key": "extended",
"titlePage": "Extended program",
"pageSlogan": null,
"pageStatistics": null,
"themeColor": null,
"keywords": "",
"pageNavigation": null,
"pageSections": null
},
"coc": {
"titleSeo": null,
"description": null,
"seoDescription": null,
"key": "coc",
"titlePage": "Code of conduct",
"pageSlogan": null,
"pageStatistics": null,
"themeColor": null,
"keywords": "",
"pageNavigation": null,
"pageSections": null
}
},
"conference": {
"id": "ck0zi9xnrpi2z0b54q0n7clnr",
"status": "PUBLISHED",
"city": "Amsterdam",
"url": "https://nodeday.uk",
"title": "Node Day UK Conference 2020",
"slackUrl": "",
"twitterUrl": "https://twitter.com/nodedayuk",
"facebookUrl": "https://www.facebook.com/nodedayuk",
"mediumUrl": "",
"youtubeUrl": "",
"codeOfConductIntro": "\n",
"codeOfConductMain": "\n"
},
"speakers": {
"main": [
{
"id": "ck444j0qbo0ou0b32nya7r457",
"name": "Charlie Gerard",
"company": "Netlify, Netherlands",
"country": "Netherlands",
"githubUrl": "https://github.com/charliegerard",
"twitterUrl": "https://twitter.com/devdevcharlie",
"mediumUrl": null,
"ownSite": "https://charliegerard.github.io/",
"status": "PUBLISHED",
"label": "Machine Learning",
"isNightSpeaker": false,
"order": 10,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/0EkXq8vRTK7ZQ4HQFXUQ",
"bio": "<p>Charlie is a front-end developer at Netlify, a Mozilla Tech Speaker and Google Developer Expert in Web Technologies. She is passionate about creative coding and building interactive prototypes mixing science, art and technology. She also spends time giving back to the community by mentoring new developers, contributing to open-source projects, and speaking at conferences. </p>\n",
"socials": [
{
"link": "https://github.com/charliegerard",
"icon": "gh"
},
{
"link": "https://twitter.com/devdevcharlie",
"icon": "tw"
},
{
"link": "https://charliegerard.github.io/",
"icon": "site"
}
],
"tagBG": "black",
"color": "white",
"activities": {
"talks": [
{
"title": "Acoustic Activity Recognition - Exploring the Hidden Potential of Sound Data in JavaScript",
"description": "Even though we don’t really think about it, sound is a very rich source of information.\n\nLeveraging the properties of sound with machine learning, we can gain insights about an environment or an activity performed.\n\nAcoustic activity recognition has the potential to create new interactions and better smart systems, and in this talk, we explore how to experiment with this technology in JavaScript, using the Web audio API and Tensorflow.js. ",
"timeString": null,
"isLightning": null,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "acoustic-activity-recognition-exploring-the-hidden-potential-of-sound-data-in-java-script"
}
]
},
"slug": "charlie-gerard"
},
{
"id": "ck38s81rz28ki0b66keep3ghk",
"name": "Matteo Collina",
"company": "NearForm, Italy",
"country": "Italy",
"githubUrl": "https://github.com/mcollina",
"twitterUrl": "https://twitter.com/matteocollina",
"mediumUrl": "http://matteocollina.com/",
"ownSite": "",
"status": "PUBLISHED",
"label": "NodeJS",
"isNightSpeaker": null,
"order": 9,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/4LTWaL5SpOCr2oBbS8rq",
"bio": "<p>Node.js TSC member, PhD, Technical Director @ NearForm, IoT Expert, Consultant, author of Pino and Fastify. Co-author of the book \"Node.js Cookbook, Third Edition\" edited by Packt.</p>\n",
"socials": [
{
"link": "https://github.com/mcollina",
"icon": "gh"
},
{
"link": "https://twitter.com/matteocollina",
"icon": "tw"
},
{
"link": "http://matteocollina.com/",
"icon": "med"
}
],
"tagBG": "#7AB464",
"color": "#fff",
"activities": {
"talks": [
{
"title": "Beware of Promise.all",
"description": "Promise.all is a fantastic utility to wait for a list of promises to complete. Developers around the globe use it daily in Node.js applications to parallelise tasks and reduce latency. Most of the time, it works as expected. Sometimes, it causes so much memory allocation that it slows your process to a crawl or results in an out-of-memory error. Why? Let's dig in together.",
"timeString": "",
"isLightning": false,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "beware-of-promise-all"
}
]
},
"slug": "matteo-collina"
},
{
"id": "ck38sgfs929210b6654p3jpg0",
"name": "Tobias Koppers",
"company": "Webpack, Germany",
"country": "Germany",
"githubUrl": "https://github.com/sokra",
"twitterUrl": "https://twitter.com/wSokrav",
"mediumUrl": "https://medium.com/@sokra",
"ownSite": null,
"status": "PUBLISHED",
"label": "Ecosystem",
"isNightSpeaker": null,
"order": 8,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/3PwPQYRMRDKMjoQX05Bk",
"bio": "<p>Creator of webpack. Working full time on Open Source. Father of two children. Likes to play board games.</p>\n",
"socials": [
{
"link": "https://github.com/sokra",
"icon": "gh"
},
{
"link": "https://twitter.com/wSokrav",
"icon": "tw"
},
{
"link": "https://medium.com/@sokra",
"icon": "med"
}
],
"tagBG": "#fff40d",
"color": "#ae4f01",
"activities": {
"talks": [
{
"title": "Webpack 5 Build Caching. \"To cache or not to cache\"",
"description": null,
"timeString": "",
"isLightning": null,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "webpack-5-build-caching-to-cache-or-not-to-cache"
}
]
},
"slug": "tobias-koppers"
},
{
"id": "ck38sj3w7qkgv0b73xvr4zraj",
"name": "Mr.doob",
"company": "Three.js, Spain",
"country": "Spain",
"githubUrl": "https://github.com/mrdoob",
"twitterUrl": "https://twitter.com/mrdoob",
"mediumUrl": "",
"ownSite": "https://mrdoob.com/",
"status": "PUBLISHED",
"label": "WebGL",
"isNightSpeaker": null,
"order": 7,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/h7xLULGR2uFiZUbcWyKe",
"bio": "<p>Author of Three.js.</p>\n",
"socials": [
{
"link": "https://github.com/mrdoob",
"icon": "gh"
},
{
"link": "https://twitter.com/mrdoob",
"icon": "tw"
},
{
"link": "https://mrdoob.com/",
"icon": "site"
}
],
"tagBG": "#ff7302",
"color": "#ffffff",
"activities": {
"talks": [
{
"title": "Fake Title it just a template",
"description": null,
"timeString": "14:45",
"isLightning": false,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "fake-title-it-just-a-template"
}
]
},
"slug": "mr-doob"
},
{
"id": "ck5wcjhfif16l0b753eqy3w9r",
"name": " Alan Faubert",
"company": "Core member of Svelte, US",
"country": "US",
"githubUrl": "https://github.com/Conduitry",
"twitterUrl": null,
"mediumUrl": null,
"ownSite": null,
"status": "PUBLISHED",
"label": "Svelte",
"isNightSpeaker": false,
"order": 6,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/rBzXz8MRwmFwvCWJjkPD",
"bio": "<p>Core member of Svelte since 2017. These days Alan is mostly a JavaScript programmer, the rest of the time he also enjoys hiking, skiing, and listening to music.</p>\n",
"socials": [
{
"link": "https://github.com/Conduitry",
"icon": "gh"
}
],
"tagBG": "#ff5200",
"color": "#fff",
"activities": {},
"slug": "alan-faubert"
},
{
"id": "ck2wz494viqmx0b73yobzoe5w",
"name": "Sarah Drasner",
"company": "Netlify, USA",
"country": "USA",
"githubUrl": "https://github.com/sdras",
"twitterUrl": "https://twitter.com/sarah_edo",
"mediumUrl": "",
"ownSite": "https://sarah.dev/",
"status": "PUBLISHED",
"label": "Vue.js",
"isNightSpeaker": null,
"order": 5,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/S46QV4WvTlefyYEg3I0I",
"bio": "<p>Head of Developer Experience at Netlify, Vue core team member, and Staff Writer at CSS-Tricks. Sarah is formerly Principal Lead of Emerging Markets, Cloud Advocates at Microsoft and Manager of UX & Engineering at Trulia/Zillow Group. She’s the author of SVG Animations from O’Reilly and has given Frontend Masters workshops. Sarah is a co-organizer of ConcatenateConf, a free conference for Nigerian and Kenyan developers.</p>\n",
"socials": [
{
"link": "https://github.com/sdras",
"icon": "gh"
},
{
"link": "https://twitter.com/sarah_edo",
"icon": "tw"
},
{
"link": "https://sarah.dev/",
"icon": "site"
}
],
"tagBG": "black",
"color": "white",
"activities": {
"talks": [
{
"title": "An Animated Guide to Vue 3 Reactivity and Internals",
"description": "There is a lot of talk about Reactivity in the frontend landscape of late, but what is it? And how does Vue use reactive premises to manage state in an application? In this talk, we'll go over what reactivity is in general, and how that applies to the upcoming changes in Vue 3. We'll cover proxies, the virtual DOM, and watchers along the way.",
"timeString": "",
"isLightning": null,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "an-animated-guide-to-vue-3-reactivity-and-internals"
}
]
},
"slug": "sarah-drasner"
},
{
"id": "ck5miip5wmdqz0b7535julaeu",
"name": "Orta Therox",
"company": "Microsoft, USA",
"country": "USA",
"githubUrl": "https://github.com/orta",
"twitterUrl": "https://twitter.com/orta",
"mediumUrl": null,
"ownSite": null,
"status": "PUBLISHED",
"label": "TypeScript",
"isNightSpeaker": null,
"order": 4,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/NPpzhbjmTU2x6vl9kySi",
"bio": "<p>TypeScript compiler team at Microsoft. For the last decade has worked on large-scale open source projects across the native and JavaScript ecosystem.</p>\n",
"socials": [
{
"link": "https://github.com/orta",
"icon": "gh"
},
{
"link": "https://twitter.com/orta",
"icon": "tw"
}
],
"tagBG": "#61DAFB",
"color": "#030303",
"activities": {
"talks": [
{
"title": "How TypeScript embraces and extends JavaScript",
"description": "There are stats coming out that in 2020 about 50% of all JavaScript projects using npm will be using TypeScript, how did this come to be and what systems are in place to keep the TypeScript team in Microsoft from trying to extinguish JavaScript?",
"timeString": null,
"isLightning": null,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "how-type-script-embraces-and-extends-java-script"
}
]
},
"slug": "orta-therox"
},
{
"id": "ck42w9tfl8hfx0b73mk2myam3",
"name": "Kamil Mysliwiec",
"company": "NestJS | Trilon.io, Poland",
"country": "Poland",
"githubUrl": "https://github.com/kamilmysliwiec",
"twitterUrl": "https://twitter.com/kammysliwiec",
"mediumUrl": null,
"ownSite": null,
"status": "PUBLISHED",
"label": "NestJS",
"isNightSpeaker": null,
"order": 3,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/9SEIZ7SueIgj7GiUs9Zg",
"bio": "<p>Creator of NestJS, Co-Founder of Trilon.io, Google Developer Expert in Web Technologies and Angular, international speaker, trainer, consultant, and open source contributor.</p>\n",
"socials": [
{
"link": "https://github.com/kamilmysliwiec",
"icon": "gh"
},
{
"link": "https://twitter.com/kammysliwiec",
"icon": "tw"
}
],
"tagBG": "#ea2845",
"color": "#fff",
"activities": {
"talks": [
{
"title": "Unlocking New Capabilities for Node.js with TypeScript and NestJS",
"description": "TypeScript continues its growth journey and is slowly taking over JavaScript world. Types inference, powerful expressivity, strict compile-time checks, all these features make building complex JavaScript apps a breeze. In this session, you will see how TypeScript’s hidden features helped us to build NestJS, the fastest growing Node.js technology in 2019.",
"timeString": "",
"isLightning": null,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "unlocking-new-capabilities-for-node-js-with-type-script-and-nest-js"
}
]
},
"slug": "kamil-mysliwiec"
},
{
"id": "ck38st939qlbr0b7389hxibkh",
"name": "Olivia Jack",
"company": "Hydra, Colombia",
"country": "Colombia",
"githubUrl": "https://github.com/ojack",
"twitterUrl": "https://twitter.com/_ojack_",
"mediumUrl": null,
"ownSite": "https://ojack.github.io/",
"status": "PUBLISHED",
"label": "WebGL",
"isNightSpeaker": null,
"order": 2,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/izWu7SWFQwSdP8wBthcK",
"bio": "<p>Programmer and artist who works frequently with open-source software, cartography, live coding, and experimental interfaces. She is the developer of Hydra, a platform for live-coding visuals inspired by analog video synthesis. She works with the performance laboratory ATI-erra, creating interactive visuals for dance and theater. She has also created software and interactive installations for CultureHub Art & Technology Center, el Museo de Bogotá, and Oakland Museum of California. Originally from San Francisco, she currently lives and works in Bogotá, Colombia.</p>\n",
"socials": [
{
"link": "https://github.com/ojack",
"icon": "gh"
},
{
"link": "https://twitter.com/_ojack_",
"icon": "tw"
},
{
"link": "https://ojack.github.io/",
"icon": "site"
}
],
"tagBG": "#ff7302",
"color": "#ffffff",
"activities": {
"talks": [
{
"title": "code - notation - score",
"description": "Live-coded audiovisual presentation that will delve into musical notation and visual scores as a language for human-computer improvisation. What does it mean when an instruction is open-ended rather than precise? How can algorithmic uncertainty open up creative possibilities to improvise using code? Olivia will use javascript to explore a live relationship between code, image, and sound as intertwined creative languages.",
"timeString": null,
"isLightning": null,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "code-notation-score"
}
]
},
"slug": "olivia-jack"
},
{
"id": "ck38szh6b23ar0b20tqzvzm0f",
"name": "Tierney Cyren",
"company": "Microsoft, USA",
"country": "USA",
"githubUrl": "https://github.com/bnb",
"twitterUrl": "https://twitter.com/bitandbang",
"mediumUrl": "https://medium.com/@bitandbang",
"ownSite": null,
"status": "PUBLISHED",
"label": "NodeJS",
"isNightSpeaker": null,
"order": 1,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/jyad5bupSCe8c8Qj1uYX",
"bio": "<p>Member and Chairperson of the Node.js Community Committee, and a contributor to multiple Node.js working groups and initiatives focusing on the continued growth and success of the Node.js community. He is a Regular Member of the OpenJS Foundation Cross-Project Council, and a TC39 delegate. He has been contributing to open-source since he was 16.</p>\n",
"socials": [
{
"link": "https://github.com/bnb",
"icon": "gh"
},
{
"link": "https://twitter.com/bitandbang",
"icon": "tw"
},
{
"link": "https://medium.com/@bitandbang",
"icon": "med"
}
],
"tagBG": "#7AB464",
"color": "#fff",
"activities": {
"talks": [
{
"title": "import { modules } as esm from “nodejs”",
"description": "After years of hard work from the Modules Team, ESM is shipping in Node.js. In this talk we'll go over the distinct patterns you'll want to use when adopting ESM as a first-class module system in Node.js.",
"timeString": null,
"isLightning": false,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "import-modules-as-esm-from-nodejs"
}
]
},
"slug": "tierney-cyren"
},
{
"id": "ck38smgd51zks0b32z5nmzg3y",
"name": "Mikeal Rogers",
"company": "Protocol Labs, USA",
"country": "USA",
"githubUrl": "https://github.com/mikeal",
"twitterUrl": "https://twitter.com/mikeal",
"mediumUrl": "https://medium.com/@mikeal",
"ownSite": null,
"status": "PUBLISHED",
"label": "NodeJS",
"isNightSpeaker": null,
"order": -1,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/zXDRIVADSmqdqh9PIRWU",
"bio": "<p>Сreator of request and NodeConf. He was a leader in the io.js project and lead the Node.js Foundation through the merger of io.js and Node.js. He now works at Protocol Labs leading the IPLD project.</p>\n",
"socials": [
{
"link": "https://github.com/mikeal",
"icon": "gh"
},
{
"link": "https://twitter.com/mikeal",
"icon": "tw"
},
{
"link": "https://medium.com/@mikeal",
"icon": "med"
}
],
"tagBG": "#7AB464",
"color": "#fff",
"activities": {
"talks": [
{
"title": "Decentralized Universal JavaScript",
"description": "Dive into the world of decentralized data structures and learn how these open up new paths to JavaScript that can run anywhere, from anywhere, without a compiler.",
"timeString": null,
"isLightning": null,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "decentralized-universal-java-script"
}
]
},
"slug": "mikeal-rogers"
},
{
"id": "ck6ap7ezvpr6n0b753q2nkyfv",
"name": "Romulo Cintra",
"company": "Caixabank, Spain",
"country": "Spain",
"githubUrl": "https://github.com/romulocintra",
"twitterUrl": "https://twitter.com/romulocintra",
"mediumUrl": null,
"ownSite": null,
"status": "PUBLISHED",
"label": "PWA",
"isNightSpeaker": null,
"order": null,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/jHnuBGMGQFeFmQqIYV1T",
"bio": "<p>Romulo is a Senior Software Architect at Caixabank</p>\n<p>Technology enthusiast, working in Software development and Architectures for more than 10 years. Contributor in Open Source projects, TC39 and blogger in part-time.</p>\n<p>His main goal is to have a more democratic technology and empower developers, teams and companies mostly in the financial sector to build better products. His main focuses are the Web, Mobile and Cloud. He loves and advocates for the future of the internet and decentralised technology culture where all the globe is connected.</p>\n",
"socials": [
{
"link": "https://github.com/romulocintra",
"icon": "gh"
},
{
"link": "https://twitter.com/romulocintra",
"icon": "tw"
}
],
"tagBG": "#d400fa",
"color": "#fff",
"activities": {
"talks": [
{
"title": "PWA – Hidden Stories About Future",
"description": "This talk is about the adoption of PWA, how they can solve important use cases in the web industry. Deep technical travel by all the tricks and features that can improve Engagement, Performance, Resilience to make the future of the web apps better. The talk will include all new upcoming cross-platform features to improve PWA's, Project FUGU, WASM, etc.",
"timeString": null,
"isLightning": null,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "pwa-hidden-stories-about-future"
}
]
},
"slug": "romulo-cintra"
},
{
"id": "ck6jfkxagmplp0b75pvfyqa9c",
"name": "Bert Belder",
"company": "deno.land, Netherlands",
"country": "Netherlands",
"githubUrl": "https://github.com/piscisaureus",
"twitterUrl": "https://twitter.com/piscisaureus",
"mediumUrl": null,
"ownSite": null,
"status": "PUBLISHED",
"label": "Deno",
"isNightSpeaker": null,
"order": null,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/CtnTvLD4Qx2gMdKztyCf",
"bio": "<p>Bert was an early <a href=\"https://nodejs.org/en/\">Node.js</a> core team member, mainly responsible for creating the platform abstraction layer (<a href=\"https://github.com/libuv/libuv\">libuv</a>). In 2013 he co-founded <a href=\"https://strongloop.com/\">StrongLoop</a>, which created the open-source API framework LoopBack. Last year he started working on <a href=\"https://github.com/denoland/deno\">Deno</a>, the new way to do server-side JavaScript, together with <a href=\"https://github.com/ry\">Ryan Dahl</a>. </p>\n",
"socials": [
{
"link": "https://github.com/piscisaureus",
"icon": "gh"
},
{
"link": "https://twitter.com/piscisaureus",
"icon": "tw"
}
],
"tagBG": "black",
"color": "white",
"activities": {
"talks": [
{
"title": "Deno – the Most Recent Developments on NodeJS Alternative",
"description": "Things are changing fast in deno land – final topic details will be published in May.",
"timeString": null,
"isLightning": null,
"track": {
"name": "General",
"isPrimary": true
},
"slug": "deno-the-most-recent-developments-on-node-js-alternative"
}
]
},
"slug": "bert-belder"
}
],
"performanceTeam": [
{
"id": "ck409iejwh7280b66z4zwmecf",
"name": "Polyop",
"company": "WebGL, React, Web Audio API, and Web MIDI API, UK",
"country": "UK",
"githubUrl": null,
"twitterUrl": "https://twitter.com/polyopuk",
"mediumUrl": null,
"ownSite": null,
"decor": true,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/dahQDMISFeJOqjrMXKII",
"bio": "<p>An electronic music and audiovisual group from London, established by producer Jack Driscoll and visual artist Alex Kempton in 2016. The visuals in their show have been created entirely in Javascript using WebGL. Polyop have developed a spectacular audiovisual show set in an alternate universe. The show follows a mysterious demi-god across the polyhedral-plane, inhabited by strange planets, entities and nomad aliens, to the sound of 90’s techno breakbeat and acid performed live on hardware synthesisers and drum machines.</p>\n",
"socials": [
{
"link": "https://twitter.com/polyopuk",
"icon": "tw"
}
],
"activities": {},
"slug": "polyop"
},
{
"id": "ck409n5zch7cx0b66swo5bswb",
"name": "AliceEffekt — ORCA",
"company": "Node.js, Japan",
"country": "Japan",
"githubUrl": null,
"twitterUrl": "https://twitter.com/neauoire",
"mediumUrl": null,
"ownSite": "https://aliceffekt.bandcamp.com/",
"decor": true,
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/WzjuPUZSvaWQ9TQlPiHw",
"bio": "<p>AliceEffekt is formed by Devine Lu Linvega, a true digital nomad and a polymath working on a series of experimental tools and applications. Devine has created a set of live coding tools for rapid iteration and creation of rythms based on Node.js. His latest creation: ORCA is a full blown text based sequencer with impressive cappabilities and distinct aesthetic that engulfs the user in a textual fashion rarely seen in live performance.</p>\n",
"socials": [
{
"link": "https://twitter.com/neauoire",
"icon": "tw"
},
{
"link": "https://aliceffekt.bandcamp.com/",
"icon": "site"
}
],
"activities": {},
"slug": "alice-effekt-orca"
}
],
"workshops": [
{
"id": "ck10spj7l552h0b710k3pu92r",
"name": "Kurtis Kemple",
"company": "AWS, USA",
"country": "USA",
"githubUrl": "https://github.com/kkemple",
"twitterUrl": "https://twitter.com/kurtiskemple",
"mediumUrl": null,
"ownSite": null,
"talks": [],
"workshops": [],
"workshopsActivity": [
{
"title": "Building Web Applications with React & AWS Amplify",
"slug": "building-web-applications-with-react-aws-amplify"
}
],
"slug": "kurtis-kemple",
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/J1KtkQdeSmuZnbvtv1P8",
"bio": "<p>Web / Mobile / GraphQL enthusiast. DevRel at Amazon AWS. Co-organizer of NYC GraphQL meetup.</p>\n",
"socials": [
{
"link": "https://github.com/kkemple",
"icon": "gh"
},
{
"link": "https://twitter.com/kurtiskemple",
"icon": "tw"
}
],
"activities": {
"workshops": [
{
"title": "Building Web Applications with React & AWS Amplify",
"slug": "building-web-applications-with-react-aws-amplify"
}
]
}
},
{
"id": "ck60gduudqlr30b75qyumd2is",
"name": "Nader Dabit",
"company": "Amazon AWS, USA",
"country": "USA",
"githubUrl": "https://github.com/dabit3",
"twitterUrl": "https://twitter.com/dabit3",
"mediumUrl": null,
"ownSite": null,
"talks": [],
"workshops": [],
"workshopsActivity": [
{
"title": "Building Web Applications with React & AWS Amplify",
"slug": "building-web-applications-with-react-aws-amplify"
}
],
"slug": "nader-dabit",
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/glrjtl9T5awAzyT0DZVd",
"bio": "<p>Nader has been developing with React Native for over 2.5 years. He has worked with and trained developers from fortune 500 companies like Amazon, Visa, American Express, and Microsoft, helping them to get up to speed with React Native as quickly as possible.</p>\n",
"socials": [
{
"link": "https://github.com/dabit3",
"icon": "gh"
},
{
"link": "https://twitter.com/dabit3",
"icon": "tw"
}
],
"activities": {
"workshops": [
{
"title": "Building Web Applications with React & AWS Amplify",
"slug": "building-web-applications-with-react-aws-amplify"
}
]
}
},
{
"id": "ck10teywmv6940b541heiz22b",
"name": "Alex Lobera",
"company": "React GraphQL Academy, UK",
"country": "UK",
"githubUrl": "https://github.com/alexlbr",
"twitterUrl": "https://twitter.com/alex_lobera",
"mediumUrl": null,
"ownSite": null,
"talks": [],
"workshops": [],
"workshopsActivity": [
{
"title": "GraphQL API – From Zero to Production",
"slug": "graph-ql-api-from-zero-to-production"
}
],
"slug": "alex-lobera",
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/jx66c2DKQ3KhZSOiLxXS",
"bio": "<p>Founder at React GraphQL Academy and LeanJS. Developer and Coach passionate about JavaScript, React and GraphQL. Organizer of the JavaScript London Meetup and other popular meetups in the EU.</p>\n",
"socials": [
{
"link": "https://github.com/alexlbr",
"icon": "gh"
},
{
"link": "https://twitter.com/alex_lobera",
"icon": "tw"
}
],
"activities": {
"workshops": [
{
"title": "GraphQL API – From Zero to Production",
"slug": "graph-ql-api-from-zero-to-production"
}
]
}
},
{
"id": "ck10t71go59pg0b71iw2zrad5",
"name": "Kitze",
"company": "React Academy, Poland",
"country": "Poland",
"githubUrl": "https://github.com/kitze",
"twitterUrl": "https://twitter.com/thekitze",
"mediumUrl": null,
"ownSite": null,
"talks": [],
"workshops": [
{
"title": "React Advanced",
"slug": "react-advanced"
}
],
"workshopsActivity": [
{
"title": "React Advanced",
"slug": "react-advanced"
}
],
"slug": "kitze",
"avatar": "https://media.graphcms.com/output=format:jpg/resize=fit:crop,height:500,width:500/sDbtalRTKQ7lQXzPARHp",
"bio": "<p>Kitze founded <a href=\"https://reactacademy.io/\">React Academy</a> to teach React and GraphQL around the world. He's the maker of <a href=\"https://sizzy.co/\">Sizzy</a> - the browser for designers and developers. He's documenting his journey <a href=\"https://youtube.com/kitze\">on YouTube</a>. He made products like <a href=\"https://github.com/kitze/JSUI\">JSUI</a>, <a href=\"https://twizzy.app/\">Twizzy</a>, <a href=\"https://luckyretweet.co/\">Lucky Retweet</a>, <a href=\"https://ok-google.io/\">OK Google</a>, etc.</p>\n",
"socials": [
{
"link": "https://github.com/kitze",
"icon": "gh"
},
{