This repository has been archived by the owner on Jun 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
speakers.ts
8393 lines (8386 loc) · 206 KB
/
speakers.ts
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
export interface Speaker {
objectID: string;
fullName: string;
tags: string[];
email: string | null;
website: string | null;
social: {
twitter: string | null;
github: string | null;
blog: string | null;
linkedin: string | null;
};
talks: Array<{
title: string;
description: string | null;
eventName: string;
date: string;
videoUrl: string | null;
slidesUrl: string | null;
location: Location | null;
}>;
talkLanguages: string[];
availableForHire: boolean | null;
readyToTravelAtOwnExpense: boolean | null;
currentLocation: Location;
profileImageUrl?: string;
}
interface Location {
continent: string;
country: string;
city: string | null;
}
const speakers: Speaker[] = [
{
objectID: 'vnovick',
fullName: 'Vladimir Novick',
tags: [
'JavaScript',
'React',
'React Native',
'ReasonML',
'GraphQL',
'Vue.js',
'Angular',
'VR',
'AR',
'IoT',
],
email: '[email protected]',
website: 'https://vnovick.com/',
social: {
twitter: 'VladimirNovick',
github: 'vnovick',
blog: 'https://medium.com/@VladimirNovick',
linkedin: 'https://www.linkedin.com/in/vnovick/',
},
talks: [
{
title: 'Redux Reconfiguration in Runtime Techniques',
description: null,
eventName: 'ReactNext',
date: '2016-09-15',
videoUrl:
'https://www.youtube.com/watch?v=ZvbZTXs3Y3E&index=22&list=PL28aKhmSneX8KsmkaSFFZWJCHqw4deSf5',
slidesUrl: null,
location: {
continent: 'Asia',
country: 'Israel',
city: 'Tel Aviv',
},
},
{
title: 'Getting into Physical web with React of Things',
description:
'Physical Web taking the world by a storm. More and more applications interact with physical devices using Beacons and low energy bluetooth. In this talk I will cover how to interact with physical world from inside React Native application.',
eventName: 'React Native EU',
date: '2017-09-06',
videoUrl:
'https://www.youtube.com/watch?v=m3J-vOouaB4&index=17&list=PL28aKhmSneX8KsmkaSFFZWJCHqw4deSf5',
slidesUrl: null,
location: {
continent: 'Europe',
country: 'Poland',
city: 'Wroclaw',
},
},
{
title:
'Building data driven mobile applications with React Native and GraphQL',
description: null,
eventName: 'DevExperience',
date: '2018-09-15',
videoUrl:
'https://www.youtube.com/watch?v=4Q1ElPWh2w8&index=12&list=PL28aKhmSneX8KsmkaSFFZWJCHqw4deSf5',
slidesUrl: null,
location: {
continent: 'Europe',
country: 'Romania',
city: 'Iasi',
},
},
{
title: 'State of WebVR',
description: null,
eventName: 'DevTalks Romania',
date: '2018-09-18',
videoUrl:
'https://www.youtube.com/watch?v=54_iK9ruP7E&index=10&list=PL28aKhmSneX8KsmkaSFFZWJCHqw4deSf5',
slidesUrl: null,
location: {
continent: 'Europe',
country: 'Romania',
city: 'Bucharest',
},
},
{
title: 'Building AR Apps with React Native',
description:
'With the release of ARKit and ARCore by Apple and Google we see various Augmented reality apps created for iOS and Android. Have you ever wondered how you can create such apps in React Native? In this talk we will see how it can be done fairly easily.',
eventName: 'Byteconf',
date: '2018-08-31',
videoUrl:
'https://www.youtube.com/watch?v=1GToikXnNaw&index=7&list=PL28aKhmSneX8KsmkaSFFZWJCHqw4deSf5',
slidesUrl: null,
location: null,
},
{
title: 'Building AR Apps with React Native',
description:
'With the release of ARKit and ARCore by Apple and Google we see various Augmented reality apps created for iOS and Android. In this talk we will see how we can build AR apps with React Native, ARKit and ARCore.',
eventName: 'React Boston',
date: '2018-09-30',
videoUrl:
'https://www.youtube.com/watch?v=lN1DnHhludY&index=5&list=PL28aKhmSneX8KsmkaSFFZWJCHqw4deSf5',
slidesUrl: null,
location: {
continent: 'North America',
country: 'USA',
city: 'Boston',
},
},
{
title: 'Reasonable GraphQL',
description:
'ReasonML and GraphQL is a match made in heaven. Imagine getting type error if you have mistake in your GraphQL type even before compiling your client code. How cool is that? In this talk we will see how you can use GraphQL with Reason and what benefits it will bring.',
eventName: 'Byteconf',
date: '2018-11-30',
videoUrl:
'https://www.youtube.com/watch?v=wEjUjlZwbGU&index=3&list=PL28aKhmSneX8KsmkaSFFZWJCHqw4deSf5',
slidesUrl: null,
location: null,
},
{
title: 'Building AR apps with React Native',
description: null,
eventName: 'FRONTEND CON',
date: '2018-12-04',
videoUrl:
'https://www.youtube.com/watch?v=gWKUtXiskW0&index=2&list=PL28aKhmSneX8KsmkaSFFZWJCHqw4deSf5',
slidesUrl: null,
location: {
continent: 'Europe',
country: 'Poland',
city: 'Wroclaw',
},
},
{
title:
'Demystifying complex animations creation process in React Native',
description:
'While Animations can be created in React Native pretty easily, real world mobile apps require a combination of several layers of animations, gestures and micro interaction animations to make user experience stand out. In this talk we will walk through the process from defining complex animation, to implementing it by going through all stages of animation creation process.',
eventName: 'React Native EU',
date: '2018-09-05',
videoUrl:
'https://www.youtube.com/watch?v=PAbHIsRoqb8&index=2&list=PL28aKhmSneX--DLlOysrzAHXCJpES2Otn',
slidesUrl: null,
location: {
continent: 'Europe',
country: 'Poland',
city: 'Wroclaw',
},
},
{
title: 'Building AR Apps with React Native',
description:
'With the release of ARKit and ARCore by Apple and Google we see various Augmented reality apps created for iOS and Android. Have you ever wondered how you can create such apps in React Native? In this talk we will see how it can be done fairly easily.',
eventName: 'Chain React',
date: '2018-07-11',
videoUrl:
'https://www.youtube.com/watch?v=WYCZgWEnHkg&index=5&list=PL28aKhmSneX--DLlOysrzAHXCJpES2Otn',
slidesUrl: null,
location: {
continent: 'North America',
country: 'United States',
city: 'Portland',
},
},
{
title: 'Let`s write React Native in Reason',
description: null,
eventName: 'ReasonConf',
date: '2018-06-05',
videoUrl:
'https://www.youtube.com/watch?v=fuOxPzoqfz8&index=7&list=PL28aKhmSneX--DLlOysrzAHXCJpES2Otn',
slidesUrl: null,
location: {
continent: 'Europe',
country: 'Austria',
city: 'Vienna',
},
},
{
title: 'Controlling Smart Homes With React Native',
description:
'Smart homes become more and more popular. With this we still use applications that come with smart products to control them. In this talk I will show you an alternative how you can create your own apps with React Native, that control smart home appliances.',
eventName: 'React Amsterdam',
date: '2018-04-13',
videoUrl:
'https://www.youtube.com/watch?v=HW9zpD4q82E&index=9&list=PL28aKhmSneX--DLlOysrzAHXCJpES2Otn',
slidesUrl: null,
location: {
continent: 'Europe',
country: 'Netherlands',
city: 'Amsterdam',
},
},
{
title: 'React Native bridging into a physical world',
description: null,
eventName: 'ReactNative Camp',
date: '2018-03-31',
videoUrl:
'https://www.youtube.com/watch?v=kcg2CKSUMl4&index=10&list=PL28aKhmSneX--DLlOysrzAHXCJpES2Otn',
slidesUrl: null,
location: {
continent: 'Europe',
country: 'Ukraine',
city: 'Kiev',
},
},
{
title: 'Things You Didn`t Know You Can Do With React Native',
description:
'React Native framework is a popular solution nowadays of creating real Native apps with React. But what are it’s limits? In this talk I will cover things you probably haven’t thought about creating in React Native. We will see how Native code can be easily bridged into JavaScript world to create stunning visuals, connecting to wearables and much more.',
eventName: 'ReactNext',
date: '2017-09-15',
videoUrl:
'https://www.youtube.com/watch?v=1InokWxYGnE&index=12&list=PL28aKhmSneX--DLlOysrzAHXCJpES2Otn',
slidesUrl: null,
location: {
continent: 'Asia',
country: 'Israel',
city: 'Tel Aviv',
},
},
],
talkLanguages: ['English', 'Hebrew', 'Russian'],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'Israel',
city: null,
},
},
{
objectID: 'sndrs',
fullName: 'Alex Sanders',
tags: ['JavaScript', 'Progressive Web Apps', 'CSS', 'Performance'],
email: null,
website: null,
social: {
twitter: 'asanders',
github: null,
blog: null,
linkedin: null,
},
talks: [
{
title: 'Progressive Webapps at the Guardian',
description: null,
eventName: 'WebProgressions',
date: '2016-05-09',
videoUrl: 'https://www.youtube.com/watch?v=-r1kH7s6tMg',
slidesUrl:
'https://speakerdeck.com/sndrs/progressive-webapps-at-the-guardian',
location: {
continent: 'Europe',
country: 'United Kingdom',
city: 'London',
},
},
],
talkLanguages: ['English'],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Europe',
country: 'United Kingdom',
city: 'Norwich',
},
},
{
objectID: 'codebeast',
fullName: 'Christian Nwamba',
tags: [
'JavaScript',
'React',
'Vue',
'Angular',
'Progressive Web Apps',
'CSS',
'Standards',
],
email: null,
website: null,
social: {
twitter: 'codebeast',
github: 'christiannwamba',
blog: 'https://medium.com/@codebeast_',
linkedin: 'https://www.linkedin.com/in/chris-nwamba-032b04b2/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: { continent: 'Africa', country: 'Nigeria', city: 'Lagos' },
},
{
objectID: 'opesanyaadebayo',
fullName: 'Adebayo Opesanya',
tags: ['JavaScript', 'Node.js', 'TypeScript', 'Testing'],
email: '[email protected]',
website: null,
social: {
twitter: 'onejsninja',
github: 'OpesanyaAdebayo',
blog: null,
linkedin: 'https://www.linkedin.com/in/adebayo-opesanya-16166bb0/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: { continent: 'Africa', country: 'Nigeria', city: 'Lagos' },
},
{
objectID: 'ireaderinokun',
fullName: 'Ire Aderinokun',
tags: [
'Progressive Web Apps',
'HTML',
'CSS',
'Javascript',
'Standards',
'Accessibility',
],
email: null,
website: 'https://ireaderinokun.com',
social: {
twitter: 'ireaderinokun',
github: 'ireade',
blog: 'https://bitsofco.de',
linkedin: 'https://www.linkedin.com/in/iaderinokun',
},
talks: [],
talkLanguages: ['English'],
availableForHire: false,
readyToTravelAtOwnExpense: false,
currentLocation: { continent: 'Africa', country: 'Nigeria', city: 'Lagos' },
},
{
objectID: 'alexasomba',
fullName: 'Alexander Asomba',
tags: [
'Progressive Web Apps',
'Javascript',
'React',
'React Native',
'Node.js',
'Accessibility',
'Python',
],
email: '[email protected]',
website: 'http://alexasomba.com',
social: {
twitter: 'alexasomba',
github: 'alexasomba',
blog: 'http://alexasomba.com',
linkedin: 'https://www.linkedin.com/in/alexasomba',
},
talks: [],
talkLanguages: ['English'],
availableForHire: true,
readyToTravelAtOwnExpense: false,
currentLocation: { continent: 'Africa', country: 'Nigeria', city: 'Lagos' },
},
{
objectID: 'unicodeveloper',
fullName: 'Prosper Otemuyiwa',
tags: [
'JavaScript',
'React',
'Vue',
'Angular',
'Progressive Web Apps',
'PHP',
'Laravel',
],
email: '[email protected]',
website: null,
social: {
twitter: 'unicodeveloper',
github: 'unicodeveloper',
blog: null,
linkedin: 'https://www.linkedin.com/in/prosperotemuyiwa/',
},
talks: [
{
title: 'Authentication and Authorization in Next.js',
description: null,
eventName: 'ZEIT Day',
date: '2018-04-28',
videoUrl: 'https://www.youtube.com/watch?v=bo4BbGwZsWo',
slidesUrl:
'https://speakerdeck.com/unicodeveloper/authentication-and-authorization-in-next-dot-js',
location: {
continent: 'North America',
country: 'United States',
city: 'San Francisco',
},
},
{
title: 'Webpack 4: Lighting The Fire',
description: `Elon's Falcon Heavy Rocket had side boosters that launched it powerfully into space and returned back to Earth. Webpack is a build booster that can skyrocket your app's performance if understood and harnessed properly. With Webpack 4, your app will be on a Falcon Heavy rollercoaster. I'll share the state of the union with Webpack 4 and how you can leverage its simplicity and power in your apps!`,
eventName: 'CodeFest',
date: '2018-04-01',
videoUrl: 'https://www.youtube.com/watch?v=usPzBRsxo2s',
slidesUrl:
'https://speakerdeck.com/codefest/codefest-2018-prosper-otemuyiwa-unicode-labs-llc-webpack-4-lighting-the-fire',
location: {
continent: 'Europe',
country: 'Russia',
city: 'Moscow',
},
},
{
title: 'Making Rich Media Smarter',
description: `The web's ubiquity is making it possible to distribute engaging media experiences to users around the world. In this talk, Prosper will show the audience how to leverage different techniques to serve images and videos with optimal performance with Angular.`,
eventName: 'AngularNYC',
date: '2017-10-31',
videoUrl: 'https://www.youtube.com/watch?v=4kHPcDqTRfI',
slidesUrl:
'https://speakerdeck.com/unicodeveloper/making-rich-media-smarter',
location: {
continent: 'North America',
country: 'United States',
city: 'New York',
},
},
{
title: 'Building Modern Media Experiences in React Apps',
description: null,
eventName: 'ReactNYC',
date: '2017-10-30',
videoUrl: 'https://www.youtube.com/watch?v=_uUaU84XNtQ',
slidesUrl:
'https://speakerdeck.com/unicodeveloper/building-a-modern-media-experience-in-react-apps',
location: {
continent: 'North America',
country: 'United States',
city: 'New York',
},
},
{
title: 'Progressive Web Apps For CakePHP Developers',
description: null,
eventName: 'CakeFest 2017',
date: '2017-06-10',
videoUrl: 'https://www.youtube.com/watch?v=j03sjWhfpZA',
slidesUrl:
'https://speakerdeck.com/unicodeveloper/progressive-web-apps-for-cakephp-developers-1',
location: {
continent: 'North America',
country: 'United States',
city: 'New York',
},
},
],
talkLanguages: ['English'],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: { continent: 'Africa', country: 'Nigeria', city: 'Lagos' },
},
{
objectID: 'olivierjm',
fullName: 'Olivier JM Maniraho',
tags: ['JavaScript', 'React', 'Functional Programming'],
email: '[email protected]',
website: null,
social: {
twitter: 'olivierjmm',
github: 'olivierjm',
blog: 'https://medium.com/@olivierjm',
linkedin: 'https://www.linkedin.com/in/olivierjm/',
},
talks: [],
talkLanguages: [],
availableForHire: true,
readyToTravelAtOwnExpense: null,
currentLocation: { continent: 'Africa', country: 'Zambia', city: 'Lusaka' },
},
{
objectID: 'riggaroo',
fullName: 'Rebecca Franks',
tags: ['Android', 'Android Things', 'Firebase', 'IoT'],
email: null,
website: 'https://riggaroo.co.za/',
social: {
twitter: 'riggaroo',
github: 'riggaroo',
blog: null,
linkedin: null,
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Africa',
country: 'South Africa',
city: 'Johannesburg',
},
},
{
objectID: 'ahsan_ayz',
fullName: 'Ahsan Ayaz',
tags: [
'JavaScript',
'Angular',
'Node.js',
'Ionic',
'Firebase',
'Stencil',
'Progressive Web Apps',
],
email: '[email protected]',
website: null,
social: {
twitter: 'ahsan_ayz',
github: 'ahsanayaz',
blog: 'https://medium.com/@ahsan.ayaz',
linkedin: 'https://www.linkedin.com/in/ahsanayaz/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'Pakistan',
city: 'Karachi',
},
},
{
objectID: 'mashhoodr',
fullName: 'Mashhood Rastgar',
tags: [
'Progressive Web Apps',
'Angular',
'Firebase',
'Google Developer Expert Web',
],
email: '[email protected]',
website: 'http://imars.info/',
social: {
twitter: 'mashhoodr',
github: 'mashhoodr',
blog: null,
linkedin: 'https://www.linkedin.com/in/mashhoodr/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'Pakistan',
city: 'Karachi',
},
},
{
objectID: 'smkamranqadri',
fullName: 'Muhammad Kamran',
tags: [
'Angular',
'Redux',
'RxJS',
'Flutter',
'Dart',
'React Native',
'JavaScript',
'TypeScript',
'Linux',
],
email: '[email protected]',
website: 'https://kamranqadri.me/',
social: {
twitter: 'smkamranqadri',
github: 'smkamranqadri',
blog: 'https://medium.com/@muhammadkamranqadri',
linkedin: 'https://www.linkedin.com/in/smkamranqadri/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'Pakistan',
city: 'Karachi',
},
},
{
objectID: 'narainsagar',
fullName: 'Narain Sagar',
tags: [
'Angular',
'JavaScript',
'TypeScript',
'Node.js',
'Docker',
'Continuous Integration',
'Tooling',
'Automation Testing',
],
email: '[email protected]',
website: 'https://narainsagar.com/',
social: {
twitter: 'narainsagar',
github: 'narainsagar',
blog: null,
linkedin: 'https://www.linkedin.com/in/narainsagar/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'Pakistan',
city: 'Karachi',
},
},
{
objectID: 'i_am_the_dev',
fullName: 'Nasir Hussain',
tags: [
'Blockchain',
'Smart Contracts',
'JavaScript',
'Databases',
'Python',
'Arduino',
'Continous Integration',
],
email: '[email protected]',
website: 'http://nasirhussain.me/',
social: {
twitter: 'i_am_the_dev',
github: 'nasirhm',
blog: null,
linkedin: 'https://www.linkedin.com/in/nasirhm/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'Pakistan',
city: 'Karachi',
},
},
{
objectID: 'ashrith_kulai',
fullName: 'Ashrith Kulai',
tags: [
'Progressive Web Apps',
'Polymer',
'Web Components',
'Web Performance',
'Build Tools',
],
email: null,
website: null,
social: {
twitter: 'ashrith_kulai',
github: 'ashrithkulai',
blog: null,
linkedin: 'https://www.linkedin.com/in/ashrithkulai/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'India',
city: 'Bengaluru',
},
},
{
objectID: 'kranirudha',
fullName: 'Kumar Anirudha',
tags: ['Python', 'Node.js', 'Blockchain', 'Architecture', 'Cryptocurrency'],
email: '[email protected]',
website: 'https://anirudha.org/',
social: {
twitter: 'kranirudha',
github: 'anistark',
blog: null,
linkedin: 'https://www.linkedin.com/in/kranirudha',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'India',
city: 'Bengaluru',
},
},
{
objectID: 'siddharthkp',
fullName: 'Siddharth Kshetrapal',
tags: ['React', 'Design Systems', 'Web Performance'],
email: null,
website: 'https://sid.studio/',
social: {
twitter: 'siddharthkp',
github: 'siddharthkp',
blog: 'https://sid.studio/newsletter',
linkedin: null,
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'India',
city: 'Bengaluru',
},
},
{
objectID: 'jayeshkattar',
fullName: 'Jayesh Katta Ramalingaiah',
tags: [
'Rust',
'Android',
'Angular',
'React',
'Web VR',
'Project Things',
'Common Voice',
'Web Compatibility',
],
email: '[email protected]',
website: 'https://jayeshkattar.github.io/',
social: {
twitter: 'jayeshkattar',
github: 'jayeshkattar',
blog: null,
linkedin: 'https://www.linkedin.com/in/jayeshkattar/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'India',
city: 'Mumbai',
},
},
{
objectID: 'manjula_dube',
fullName: 'Manjula Dube',
tags: ['JavaScript', 'React', 'Progressive Web Apps', 'Node', 'Testing'],
email: '[email protected]',
website: 'https://www.manjuladube.com/',
social: {
twitter: 'manjula_dube',
github: 'manjula91',
blog: 'https://medium.com/@manjuladube',
linkedin: 'https://www.linkedin.com/in/manjula-dube-9b5b3550/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Europe',
country: 'Germany',
city: 'Berlin',
},
},
{
objectID: 'neeharv',
fullName: 'Neehar Venugopal',
tags: ['Code Splitting', 'Standards'],
email: '[email protected]',
website: null,
social: {
twitter: 'neeharv',
github: 'neeharv',
blog: null,
linkedin: 'https://www.linkedin.com/in/neehar-venugopal-97278334/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'India',
city: 'Mumbai',
},
},
{
objectID: 'chatsidhartha',
fullName: 'Sidhartha Chatterjee',
tags: ['React', 'Progressive Web Apps', 'Web Performance'],
email: '[email protected]',
website: 'https://sidharthachatterjee.com/',
social: {
twitter: 'chatsidhartha',
github: 'sidharthachatterjee',
blog: null,
linkedin: null,
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'India',
city: 'Mumbai',
},
},
{
objectID: 'amdsouza92',
fullName: 'Arun Michael Dsouza',
tags: [
'JavaScript',
'Modern Browser APIs',
'Web Performance',
'React',
'Webpack',
'ES6',
'Tooling',
'CSS',
'Open Source',
],
email: '[email protected]',
website: 'https://arunmichaeldsouza.com/',
social: {
twitter: 'amdsouza92',
github: 'ArunMichaelDsouza',
blog: 'https://arunmichaeldsouza.com/blog',
linkedin: 'https://www.linkedin.com/in/arunmichaeldsouza/',
},
talks: [
{
title: 'Houdini - What lies ahead',
description: null,
eventName: 'JSConf Iceland 2018',
date: '2018-03-02',
videoUrl: 'https://www.youtube.com/watch?v=BalUlHBwwlM',
slidesUrl:
'https://speakerdeck.com/arunmichaeldsouza/houdini-what-lies-ahead-jsconf-iceland-2018',
location: {
continent: 'Europe',
country: 'Iceland',
city: 'Reykjavik',
},
},
{
title: 'The Era of Module Bundlers',
description: null,
eventName: 'JSConf Belgium 2017',
date: '2017-06-29',
videoUrl: 'https://www.youtube.com/watch?v=umqy8Fu3j0Q',
slidesUrl:
'https://speakerdeck.com/arunmichaeldsouza/the-era-of-module-bundlers-jsconf-belgium-2017',
location: {
continent: 'Europe',
country: 'Belgium',
city: 'Brugge',
},
},
],
talkLanguages: ['English'],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'India',
city: 'New Delhi',
},
},
{
objectID: 'sarasoueidan',
fullName: 'Sara Soueidan',
tags: ['CSS', 'SVG', 'UI', 'Accessibility'],
email: '[email protected]',
website: 'https://www.sarasoueidan.com/',
social: {
twitter: 'sarasoueidan',
github: 'SaraSoueidan',
blog: 'https://www.sarasoueidan.com/blog/',
linkedin: null,
},
talks: [],
talkLanguages: [],
availableForHire: true,
readyToTravelAtOwnExpense: false,
currentLocation: {
continent: 'Asia',
country: 'Lebanon',
city: 'Tyre',
},
},
{
objectID: 'RenettaRenula',
fullName: 'Aysha Anggraini',
tags: ['Animations', 'CSS'],
email: '[email protected]',
website: 'https://aysha.me/',
social: {
twitter: 'RenettaRenula',
github: 'renettarenula',
blog: null,
linkedin: 'https://www.linkedin.com/in/aysha-anggraini-a05a8249/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'Singapore',
city: 'Singapore',
},
},
{
objectID: 'hj_chen',
fullName: 'Chen Hui Jing',
tags: ['CSS'],
email: null,
website: 'https://www.chenhuijing.com/',
social: {
twitter: 'hj_chen',
github: 'huijing',
blog: 'https://www.chenhuijing.com/blog/',
linkedin: 'https://www.linkedin.com/in/huijingchen/',
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',
country: 'Singapore',
city: 'Singapore',
},
},
{
objectID: 'zellwk',
fullName: 'Zell Liew',
tags: ['CSS', 'JavaScript'],
email: '[email protected]',
website: 'https://zellwk.com/',
social: {
twitter: 'zellwk',
github: 'zellwk',
blog: 'https://zellwk.com/blog',
linkedin: null,
},
talks: [],
talkLanguages: [],
availableForHire: null,
readyToTravelAtOwnExpense: null,
currentLocation: {
continent: 'Asia',