-
Notifications
You must be signed in to change notification settings - Fork 0
/
default-firebase-data.json
2102 lines (2100 loc) · 103 KB
/
default-firebase-data.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
{
"gallery": [
"https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/0.jpg?alt=media&token=07dde3df-f18f-48f0-a1a6-1db5b01e7d8f",
"https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/1.jpg?alt=media&token=e1fb930d-3678-4806-a851-42ba8fb3413e",
"https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/2.jpg?alt=media&token=f4f99883-4193-48b2-8345-6dfcc709288c",
"https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/3.jpg?alt=media&token=64fba9ca-42c6-427d-a338-9b743108775a",
"https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/4.jpg?alt=media&token=ff85d87b-57ec-459f-8f12-a76dc3473ab9",
"https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/5.jpg?alt=media&token=c0a199f0-0f2e-4d43-87a1-eebea8b7a122",
"https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/6.jpg?alt=media&token=650855ad-7b06-44aa-912d-4e2d62255b97",
"https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/7.jpg?alt=media&token=ff8e67a5-02e0-4c02-bbae-776ffc01ca23"
],
"notifications": {
"config": {
"icon": "",
"timezone": "+03:00"
},
"messages": {},
"subscribers": {},
"test": {},
"users": {}
},
"partners": [
{
"logos": [
{
"order": 0,
"logoUrl": "../images/logos/google.svg",
"name": "Google",
"url": "https://www.google.com.ua/intl/en/about/"
},
{
"order": 1,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/google_lockup_cloud_rgb.png?alt=media&token=77bcd139-1cb0-4678-bd49-2cff17e62674",
"name": "Google Cloud",
"url": "https://www.google.com.ua/intl/en/about/"
}
],
"order": 0,
"title": "Powered By"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/rsz_pickme_engineering_logo.png?alt=media&token=8fb2f2a6-2bd3-4ac6-96cc-883248e20c68",
"name": "PickMe Engineering",
"url": "https://pickme.lk"
}
],
"order": 1,
"title": "Platinum sponsor"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/cncf-color%20(1).png?alt=media&token=fe7346df-75b1-45d9-b362-1dc7cc084f05",
"name": "The Cloud Native Computing Foundation",
"url": "https://www.cncf.io"
},
{
"order": 1,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/yaalaLabs.jpg?alt=media&token=0acb7f77-76e1-4c07-9410-1687c091471f",
"name": "Yaala Labs",
"url": "https://www.yaalalabs.com/"
}, {
"order": 1,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/Ideamart-logo%20(1).png?alt=media&token=4fee3da2-41db-4c67-a6c6-54d3e9e75ac8",
"name": "Ideamart",
"url": "http://www.ideamart.lk/"
}
],
"order": 2,
"title": "Silver Sponsor "
},
{
"logos": [
{
"order": 0,
"logoUrl": "../images/logos/jetbrains-variant-3.svg",
"name": "Jetbrains",
"url": "https://www.jetbrains.com"
},
{
"order": 1,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/elastic-logo-h-full-color-5do6e.png?alt=media&token=f889322f-4b3a-4590-88f7-a7ea987359bc",
"name": "elastic",
"url": "https://www.elastic.co"
},
{
"order": 2,
"logoUrl": "https://walls.io/build/downloads/presskit/logo-variations/logo-transparent.png",
"name": "Walls.io",
"url": "https://walls.io/"
}
],
"order": 3,
"title": "General partners "
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/steinstudio%20(1).jpg?alt=media&token=c5ae2310-139b-4ab9-99b6-796adf2a3aa0",
"name": "Steinstudios",
"url": "http://steinstudios.lk/"
}
],
"order": 4,
"title": "Venue Partners"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/logo.png?alt=media&token=bd4d5c1b-07a5-4a88-b586-012c719a696d",
"name": "Eticketing.lk",
"url": "https://eticketing.lk/"
}
],
"order": 5,
"title": "Digital Ticketing Partner"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/devfestlk18.appspot.com/o/logos%2Foutput.png?alt=media&token=19960e4d-eae8-4fd4-b7d8-4842ddc42ae8",
"name": "RSVP.lk",
"url": "http://rsvp.lk/"
}
],
"order": 6,
"title": "Registration Partner"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/sliit-foss-logo.png?alt=media&token=258a588d-f13e-4553-af4f-3802914ba10d",
"name": "SLIIT FOSS",
"url": ""
}
],
"order": 7,
"title": "Community Partner"
}
],
"schedule": {
"2019-11-23": {
"dateReadable": "November 23",
"timeslots": [
{
"startTime": "08:30",
"endTime": "09:30",
"sessions": [
{
"items": [600]
}
]
},
{
"startTime": "9:30",
"endTime": "10:30",
"sessions": [
{
"items": [201]
},
{
"items": [302]
},
{
"items": [401]
},
{
"items": [501]
},
{
"items": [701]
},
{
"items": [801]
}
]
},
{
"startTime": "10:30",
"endTime": "11:00",
"sessions": [
{
"items": [602]
},
{
"items": [502]
}
]
},
{
"startTime": "11:00",
"endTime": "12:30",
"sessions": [
{
"items": [202]
},{
"items": [301]
}, {
"items": [402]
},
{
"items": [503]
},
{
"items": [702]
},
{
"items": [801]
}
]
},
{
"startTime": "12:30",
"endTime": "13:30",
"sessions": [
{
"items": [601]
}
]
},
{
"startTime": "13:30",
"endTime": "14:30",
"sessions": [
{
"items": [203]
},
{
"items": [303]
},
{
"items": [403]
},
{
"items": [504]
},
{
"items": [703]
},
{
"items": [801],
"extend" : 2
}
]
},
{
"startTime": "14:30",
"endTime": "15:30",
"sessions": [
{
"items": [204]
},
{
"items": [304]
},
{
"items": [404]
},
{
"items": [704]
}
]
}
],
"tracks": [
{
"title": "Class Room A"
},
{
"title": "Class Room B"
},
{
"title": "Class Room C"
},{
"title": "Class Room D"
},
{
"title": "Class Room E"
},
{
"title": "Class Room F"
}
]
},
"2019-11-24": {
"dateReadable": "November 24",
"timeslots": [
{
"startTime": "08:30",
"endTime": "09:30",
"sessions": [
{
"items": [600]
}
]
},
{
"startTime": "9:30",
"endTime": "10:15",
"sessions": [
{
"items": [603]
}
]
},
{
"startTime": "10:15",
"endTime": "10:45",
"sessions": [
{
"items": [607]
}
]
},
{
"startTime": "11:00",
"endTime": "11:45",
"sessions": [
{
"items": [101]
}
]
},
{
"startTime": "11:45",
"endTime": "12:15",
"sessions": [
{
"items": [102]
}
]
},
{
"startTime": "12:15",
"endTime": "13:00",
"sessions": [
{
"items": [103]
}
]
},
{
"startTime": "13:00",
"endTime": "13:45",
"sessions": [
{
"items": [601]
}
]
},
{
"startTime": "14:00",
"endTime": "14:30",
"sessions": [
{
"items": [104]
}
]
},
{
"startTime": "14:35",
"endTime": "15:05",
"sessions": [
{
"items": [105]
}
]
},
{
"startTime": "15:10",
"endTime": "15:40",
"sessions": [
{
"items": [106]
}
]
},
{
"startTime": "15:45",
"endTime": "16:15",
"sessions": [
{
"items": [107]
}
]
}
],
"tracks": [
{
"title": "Conference hall"
}
]
}
},
"sessions": {
"101": {
"complexity": "Intermediate",
"description": "Cloud computing has revolutionized the way developers implement and deploy applications. By running applications on large-scale compute infrastructures and programming platforms that are remotely accessible as utility services, cloud computing provides scalability, high-availability, and increased user productivity.\n\nIn this talk we will look at the nuts and bolts of real world cloud platforms. We will talk about the hardware and the data centers that physically make up the cloud, and some of the scheduling and control software that help keep cloud platforms operate continuously at scale. Finally, we will discuss the symbiotic relationship between cloud computing and mobile apps, and look at how platforms like Google Firebase make it easier to develop world-class apps powered by the cloud.",
"language": "English",
"speakers": ["Hiranya_Jayathilaka"],
"tags": ["Firebase","Cloud"],
"title": "Anatomy of the Cloud"
},
"102": {
"complexity": "Beginner",
"description": "TBD",
"language": "English",
"speakers": ["Kirill_Shmakov"],
"tags": ["Android","Kotlin"],
"title": "Kotlin Multiplatform for Mobile Development"
},
"103": {
"complexity": "Beginner",
"description": "TBD",
"language": "English",
"speakers": ["Albert_Padin"],
"tags": ["Cloud","ML"],
"title": "GCP AI Product Introduction"
},
"104": {
"complexity": "Beginner",
"description": "In this session, various tools and technologies which are used to test Gitlab will be discussed. Also it will be explained how engineering productivity is increased by using few built-in automations. There are few features of Gitlab which we in turn use to test Gitlab itself. Also, there are some automations that we did in the Quality team which proved to be so useful that it was incorporated as a feature in Gitlab! This talk will give a glimpse of the \"Inception\" effect of testing and building Gitlab. ",
"language": "English",
"speakers": ["Ramya_Authappan"],
"tags": ["Web","CI/CD"],
"title": "Quality Engineering @ Gitlab"
},
"105": {
"complexity": "Intermediate",
"description": "TBD",
"language": "English",
"speakers": [],
"tags": ["Cloud"],
"title": "TBD"
},
"106": {
"complexity": "Intermediate",
"description": "TBD",
"language": "English",
"speakers": [],
"tags": ["Cloud"],
"title": "PickMe Engineering 's Journey to Google Cloud Platform "
},
"107": {
"complexity": "Intermediate",
"description": "This talk will be a crash course on Themes and Styles. Demystify how styles work and how to read platform/support libraries values.xml file. Decipher which style a View uses, what attributes it exposes and how to customize them. We’ll also see how you can organize your own theme and styles to offer a consistent look and feel across your app and make branding updates a breeze.\n",
"language": "English",
"speakers": ["Saurabh_Arora"],
"tags": ["Android"],
"title": "Platform, AppCompat & now Material"
},
"201": {
"complexity": "Intermediate",
"description": "TBD",
"language": "English",
"presentation": "",
"speakers": [],
"tags": ["Kotlin"],
"title": "Intro to Kotlin Native"
},
"202": {
"complexity": "Intermediate",
"description": "TBD",
"language": "English",
"presentation": "",
"speakers": ["Kirill_Shmakov"],
"tags": ["Kotlin"],
"title": "Kotlin Multiplatform for Mobile Development"
},
"203": {
"complexity": "Intermediate",
"description": "",
"language": "English",
"presentation": "",
"speakers": ["Kamal_Vaid"],
"tags": ["Android"],
"title": "Architecture Components and MVVM In Android"
},
"204": {
"complexity": "Intermediate",
"description": "",
"language": "English",
"presentation": "",
"speakers": ["Saurabh_Arora"],
"tags": ["Android"],
"title": "Constraint Layout and Motion Layout"
},
"301": {
"complexity": "Intermediate",
"description": "Firebase makes it easy to build feature-rich apps. How easy? Let's try it out together! In this session we will develop an interactive web app that supports user authentication, data storage, real time updates, offline support, push notifications and more. In the process you will be introduced to Firebase Authentication, Cloud Firestore, Cloud Messaging, and several other Firebase services that are designed to make app development easy and fun. We will also briefly look at some of the newest additions to the Firebase platform such as Firebase Extensions and Remote Config for web, that allow developers to take their apps to the next level.",
"language": "English",
"presentation": "",
"speakers": ["Hiranya_Jayathilaka"],
"tags": ["Web","Firebase"],
"title": "Zero to app with Firebase"
},
"302": {
"complexity": "Intermediate",
"description": "",
"language": "English",
"speakers": ["Sajeetharan_Sinnathurai"],
"tags": ["Web","Angular"],
"title": "How to Leverage Angular Schematics"
},
"303": {
"complexity": "Beginner",
"description": "",
"language": "English",
"presentation": "",
"speakers": [""],
"tags": ["Web"],
"title": ""
},
"304": {
"complexity": "Beginner",
"description": "",
"language": "English",
"presentation": "",
"speakers": ["Vrijraj_Singh"],
"tags": ["Web"],
"title": "Progressive Web Apps"
},
"401": {
"complexity": "Intermediate",
"description": "",
"language": "English",
"presentation": "",
"speakers": ["Nilesh_Jayanandana"],
"tags": ["Cloud","Kubernetes","Istio"],
"title": "Getting started with Istio with Google Kubernetes Engine"
},
"402": {
"complexity": "Intermediate",
"description": "TBD",
"language": "English",
"presentation": "",
"speakers": ["Milindu_Sanoj"],
"tags": ["Cloud","GCP"],
"title": ""
},
"403": {
"complexity": "Intermediate",
"description": "TBD",
"language": "English",
"presentation": "",
"speakers": ["Albert_Padin"],
"tags": ["Cloud"],
"title": "Cloud Run Codelab"
},
"404": {
"complexity": "Intermediate",
"description": "",
"shortDescription": "",
"language": "English",
"presentation": "",
"speakers": [""],
"tags": ["Cloud","GCP"],
"title": "Hello Cloud Run"
},
"501": {
"complexity": "",
"description": "",
"language": "English",
"speakers": ["Vaibhavi_Desai"],
"tags": ["WTM"],
"title": "WTM Breakfast"
},
"502": {
"complexity": "",
"description": "",
"language": "English",
"presentation": "",
"speakers": [""],
"tags": ["IamRemarkable","WTM"],
"title": "IamRemarkable",
"videoId": ""
},
"503": {
"complexity": "Beginner",
"description": "TBD",
"language": "English",
"speakers": [],
"tags": ["WTM"],
"title": "TBD"
},
"504": {
"complexity": "",
"description": "",
"language": "English",
"speakers": [""],
"tags": ["AOG","DialogFlow","WTM"],
"title": "Create own voice application"
},
"701": {
"complexity": "Intermediate",
"description": "TBD",
"language": "English",
"speakers": ["keshan_sodimana"],
"tags": ["ML"],
"title": "TBD"
},
"702": {
"complexity": "Intermediate",
"description": " TBD",
"language": "English",
"speakers": ["Shweta_Bhatt"],
"tags": ["ML"],
"title": "Introduction to word vector representations"
},
"703": {
"complexity": "Intermediate",
"description": "",
"language": "English",
"speakers": ["Irum_Zahra"],
"tags": ["ML"],
"title": "TBD"
},
"704": {
"complexity": "Beginner",
"description": "",
"language": "English",
"speakers": [""],
"tags": ["ML"],
"title": "TBD"
},
"801": {
"complexity": "Intermediate",
"description": "",
"language": "English",
"presentation": "",
"speakers": ["Srimal_Nishantha","Nipuna_Pathirana","Aruna_Prabhashwara","Wishwa_Prasad"],
"tags": ["Go"],
"title": "Go Zero to Hero"
}, "802": {
"complexity": "Intermediate",
"description": "",
"language": "English",
"presentation": "",
"speakers": [""],
"tags": ["Go"],
"title": "TBD"
}, "803": {
"complexity": "Intermediate",
"description": "",
"language": "English",
"presentation": "",
"speakers": [""],
"tags": ["Go"],
"title": "TBD"
}, "804": {
"complexity": "Intermediate",
"description": "",
"language": "English",
"presentation": "",
"speakers": [""],
"tags": ["Go"],
"title": "TBD"
},
"130": {
"complexity": "Intermediate",
"description": "Wearable devices are one of the most popular things nowadays. Specially, after the Apple Watch, we finally get the whole picture of the entire list of products and their features. Now, we can talk about how we can design a user experience for this type of devices.\nEvery platform has it's own design principles and approaches. But, in the core, they all need to follow same core rules. So, how we combine this core requirements with Google's Material Design and use them on an Android Wear device? Let's learn!",
"language": "English",
"speakers": ["constantine_mars"],
"tags": ["Android"],
"title": "Designing an Android Wear Application"
},
"131": {
"complexity": "Intermediate",
"description": "In this talk, I will reveal you all the deepest secrets of using MVVM architecture in Android. \nWe will discuss on how to organise your application, views, models, how to retrieve data from the model requested from the view via data binding. \nLightweight Activities and Fragments, is it even possible? \n\nYes, and I will show you how to achieve this with MVVM and DataBinding!",
"language": "English",
"presentation": "https://speakerdeck.com/gdglviv/roman-herasymenko-deal-with-it-android-databinding-explained",
"speakers": ["resul_caner__yildirim"],
"tags": ["Android"],
"title": "Deal with it: Android DataBinding explained"
},
"600": {
"description": "Get your badge and enjoy talking with tech edicts around",
"icon": "registration",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fregistration.jpg?alt=media&token=27328646-d323-4cca-904c-75f021bc3ffe",
"title": "Registration"
},
"601": {
"description": "Foooooooood!",
"icon": "lunch",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Flunch.jpg?alt=media&token=bc82aaff-92cc-4dcc-a00e-2b6f30a40225",
"title": "Lunch"
},
"602": {
"description": "Coffeeeeeee!",
"icon": "coffee-break",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fcoffee-break.jpg?alt=media&token=7c2c929b-cb94-4be8-a05a-b3f678136cb7",
"title": "Coffee break"
},
"603": {
"description": "Coffeeeeeee!",
"icon": "coffee-break",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fmorning.jpg?alt=media&token=d0da3d64-fc63-48c6-9d41-1460451dca64",
"title": "Morning coffee"
},
"604": {
"description": "Official start of the conference. Greetings from the organizers, sponsors and partners.",
"icon": "opening",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fopening.jpg?alt=media&token=aa52dd45-50c9-4e36-9485-c1f9138ecd6b",
"language": "English",
"title": "GDG DevFest Sri Lanka 2019 Opening"
},
"605": {
"description": "Afterparty is a great time to have some fun and meet new people",
"icon": "party",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fparty.jpg?alt=media&token=8e413f01-373a-40bf-bb87-1dcf1d8e6af1",
"title": "Afterparty & Networking"
},
"606": {
"description": "Make sure you won't miss closing ceremony, all gifts from out sponsors and partners will find their owners during this session.",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fclosing.jpg?alt=media&token=f02d014a-09ee-407e-88c7-b74093e00fed",
"title": "Conference closing and contest winners announcements"
},
"607": {
"description": "Which covers advancements in AI, how AI is helping citizens, Edge AI and Edge TPUs, potential AI unlocks, and the future of AI",
"language": "English",
"title": "Keynote - Cruising on AI Wave",
"speakers": ["Siddhant_Agarwal"],
"tags": ["AI","ML"]
},
"140": {
"description": "TBD",
"language": "English",
"title": "TBD"
}
},
"speakers": {
"Hiranya_Jayathilaka": {
"bio": "Hiranya is a tech lead on the Google Firebase team. He works on the Firebase Admin SDKs, which enable server-side and backend integrations of Firebase. Prior to joining Google, Hiranya worked as a software engineer at WSO2, where he developed open source enterprise integration and API management technologies. He is a committer and a project management committee member for several Apache projects.\n\nHiranya earned a bachelor’s degree in engineering from University of Moratuwa. He also received a Ph.D. in computer science from University of California, Santa Barbara. Hiranya’s dissertation focuses on the governance of cloud applications via policies, SLOs and programming language techniques. He has published original research in numerous peer-reviewed journals and conferences specialized in cloud computing and web services",
"company": "Google",
"companyLogo": "../images/logos/google.svg",
"companyLogoUrl": "../images/logos/google.svg",
"country": "Mountain View, California",
"featured": true,
"name": "Hiranya Jayathilaka",
"photo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/hkj.jpg?alt=media&token=09243e79-8cdd-48b6-85f7-d2d21ddca4a6",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/hkj.jpg?alt=media&token=09243e79-8cdd-48b6-85f7-d2d21ddca4a6",
"shortBio": "Hiranya is a tech lead on the Firebase team. He works on Firebase Admin SDKs that enable backend integrations of Firebase.",
"socials": [
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/hiranyajayathilaka",
"name": "LinkedIn"
}
],
"badges": [
{
"description": "Senior Software Engineer",
"link": "",
"name": "google"
}
],
"title": "Senior Software Engineer"
},
"Siddhant_Agarwal": {
"bio": "He lead Google Developer Expert Program and Broader Developer Communities Program as part of Google Developer Relations team in India. His roles include:\n- Identify, work closely and build relationship with 45+ Google Developer Experts in India.\n- Working closely with internal stakeholders and Product Area POCs involved in running the program.\n- Deliver trainings, sessions at Google Developers led or 3rd party conferences.\n- Identify, work closely and build relationship with other third party communities in India.\n- Establish relationship between 1P Developer communities (40+ GDG and GDG Cloud communities in India) and 3P communities in India.\n- Leading strategic efforts towards Build for Digital India Program to enable student entrepreneurs and student developers \"Solve for India\"\n- Working closely with various Product Areas POCs and developers in the region to understand the state of technology/product area in India",
"company": "Google",
"companyLogo": "../images/logos/google.svg",
"companyLogoUrl": "../images/logos/google.svg",
"country": "India",
"featured": true,
"name": "Siddhant Agarwal",
"photo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/1.jpg?alt=media&token=d85429d8-156b-424d-98fa-3883711c84f0",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/1.jpg?alt=media&token=d85429d8-156b-424d-98fa-3883711c84f0",
"shortBio": "He lead Google Developer Expert Program and Broader Developer Communities Program as part of Google Developer Relations team in India.",
"socials": [
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/siddhantagarwal",
"name": "LinkedIn"
}
],
"badges": [
{
"description": "Program Coordinator, Google Developer Relations",
"link": "https://www.linkedin.com/in/siddhantagarwal",
"name": "google"
}
],
"title": "Program Coordinator, Google Developer Relations"
},
"Vaibhavi_Desai": {
"bio": "Vaibhavi leads the Machine Learning and Women Techmakers programs as a part of Google's DevRel team in Southeast Asia.",
"company": "Google",
"companyLogo": "../images/logos/google.svg",
"companyLogoUrl": "../images/logos/google.svg",
"country": "Singapore",
"featured": true,
"name": "Vaibhavi Desai",
"photo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/VB.jpeg?alt=media&token=857aa7de-7e74-404f-b2ff-0bb1ecff3992",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/VB.jpeg?alt=media&token=857aa7de-7e74-404f-b2ff-0bb1ecff3992",
"shortBio": "Vaibhavi leads the Machine Learning and Women Techmakers programs as a part of Google's DevRel team in Southeast Asia",
"socials": [
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/vaibhavihdesai",
"name": "LinkedIn"
}
],
"badges": [
{
"description": "DevRel Programs Specialist, Southeast Asia",
"link": "",
"name": "google"
}
],
"title": "DevRel Programs Specialist, Southeast Asia"
},
"Shweta_Bhatt": {
"bio": "Data Scientist, currently working in the AI team at Youplus, a startup based out of Bangalore and headquartered in New York City. She specializes in building a range of machine learning based products mostly within the NLP domain. She holds an undergraduate degree from Birla Institute of Technology and Science, Pilani in Information Systems and a Master's degree from King's College London in Artificial Intelligence. She has previously worked as a Software Developer at Cisco Systems and Apigee (acquired by Google in 2016) before transitioning into her AI career. She also has research experience at King's College London within the NetSys and the Biostatistics & Health Informatics research groups and has a paper - Illuminating and ecosystem of partisan websites published at the Web Conference 2018. Apart from this, she likes to contribute to the ML community by writing tech blogs which have been published in KDnuggets and TowardsDataScience on Medium. She is a mentor at Springboard, an online learning platform, through which she helps aspiring learners get started with their Data Science and AI/ML careers. She is also an AI consultant for a retail startup called SprintAI. Her interests within AI include Natural Language Processing, Deep Learning, Reinforcement Learning and Game Theory.",
"company": "Youplus",
"companyLogo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/google-developers-logo-png-google-developers-daldhaldhaldhalhdlahdlahdlahdlahdlah-800.png?alt=media&token=1dd29559-26bd-473b-8547-185bd4b1af96",
"companyLogoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/google-developers-logo-png-google-developers-daldhaldhaldhalhdlahdlahdlahdlahdlah-800.png?alt=media&token=1dd29559-26bd-473b-8547-185bd4b1af96",
"country": "Bangalore, India.",
"featured": true,
"name": "Shweta Bhatt",
"photo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/1%20-%20Shweta%20Bhatt.jpg?alt=media&token=868bc1e6-97bb-4127-8ae8-2105f145f0f9",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/1%20-%20Shweta%20Bhatt.jpg?alt=media&token=868bc1e6-97bb-4127-8ae8-2105f145f0f9",
"shortBio": "Data Scientist, currently working in the AI team at Youplus, a startup based out of Bangalore and headquartered in New York City. She specializes in building a range of machine learning based products mostly within the NLP domain.",
"socials": [
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/shweta-bhatt-1a930b12",
"name": "LinkedIn"
}
],
"badges": [
{
"description": "Machine Learning Google Developer Expert",
"link": "",
"name": "gde"
}
],
"title": "Data Scientist"
},
"Kirill_Shmakov": {
"bio": "He has been a member of the JetBrains team since the beginning of 2019. Being part of the Kotlin project, he works on IDE support for Kotlin/Native. Before Jetbrains he was at the geo division at yandex for 6 years, where he supported the backend of Yandex. He worked on Maps with the focus on visual data serving and interaction with the mobile team. His master's degree is in mathematics from SPb SU was accopanied by a two year experience in applied mathematics in a gradute study of McGill University.",
"company": "Jetbrains",
"companyLogo": "https://devfest19.gdgsrilanka.org/images/logos/jetbrains-variant-3.svg",
"companyLogoUrl": "https://devfest19.gdgsrilanka.org/images/logos/jetbrains-variant-3.svg",
"country": "St. Petersburg, Russia",
"featured": true,
"name": "Kirill Schmakov",
"photo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/kirill_schmakov.jpg?alt=media&token=4883c8aa-d44c-49d4-bcc7-da5dbaa3392c",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/kirill_schmakov.jpg?alt=media&token=4883c8aa-d44c-49d4-bcc7-da5dbaa3392c",
"shortBio": "He is a member of the IDE support team for Kotlin in JetBrains",
"socials": [
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/kirill-shmakov-22069567/",
"name": "LinkedIn"
}
],
"badges": [],
"title": "Software Engineer"
},"Ramya_Authappan": {
"bio": "Ramya is passionate about building and designing test frameworks. She has around 10 years of experience and is currently enjoying her role as Quality Engineering Manager at Gitlab. Prior to Gitlab, she has worked with PayPal and Amazon. “Simple, but powerful” is her slogan for building test frameworks/tools. She is also the Director of WomenWhoCode, Chennai and helps in organising meetups for the same, encouraging women in technology. When she's not working, you can find her spending time with her kid and hanging out with friends.\n",
"company": " Gitlab",
"companyLogo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/rsz_gitlab-logo-gray-rgb.png?alt=media&token=078a437a-b0df-4f42-ab6f-94c743783023",
"companyLogoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/rsz_gitlab-logo-gray-rgb.png?alt=media&token=078a437a-b0df-4f42-ab6f-94c743783023",
"country": "Chennai,India",
"featured": true,
"name": "Ramya Authappan",
"photo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/headshot.jpg?alt=media&token=aafcaa0e-ffcb-4038-b6ef-655bf48346bf",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/headshot.jpg?alt=media&token=aafcaa0e-ffcb-4038-b6ef-655bf48346bf",
"shortBio": "Ramya is passionate about building and designing test frameworks. She has around 10 years of experience and is currently enjoying her role as Quality Engineering Manager at Gitlab.",
"socials": [
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/ramyaat",
"name": "LinkedIn"
}
],
"badges": [],
"title": "Engineering Manager"
},
"Albert_Padin": {
"badges": [
{
"description": "Google Cloud Platform, Machine Learning",
"link": "https://developers-dot-devsite-v2-prod.appspot.com/community/experts/directory/profile/profile-albert_padin",
"name": "gde"
}
],
"bio": "Albert is a developer and entrepreneur who's worked on consumer, enterprise, and government software products. He is the co-founder and CTO of Symph, a design, development, and startup studio. At Symph, he has architected and developed solutions for 500 Startups, Office of the President of the Philippines, and the World Bank. Albert leads a diverse team of developers in creating software solutions. He ensures that the team's output is high quality and performs well at scale. Albert is also passionate about empowering startups and has been involved in the Philippine Startup Ecosystem, by facilitating and mentoring at Startup Weekends and other events. Prior to that, Albert started SpellDial, directed plays, and mentored street children. He studied Information Technology at the Centre for International Education Global Colleges. He lives in Cebu City, Philippines with his wife. His interests include theatre, performing arts, and the non-trivial act of eradicating poverty.",
"company": "Symph",
"companyLogo": "https://media.licdn.com/dms/image/C510BAQE376nsMXIYQA/company-logo_400_400/0?e=1577923200&v=beta&t=Ux1sCQwFZipLWdH7YSFlMKxCGKoOArrWbbWurkOxuJE",
"companyLogoUrl": "https://media.licdn.com/dms/image/C510BAQE376nsMXIYQA/company-logo_400_400/0?e=1577923200&v=beta&t=Ux1sCQwFZipLWdH7YSFlMKxCGKoOArrWbbWurkOxuJE",
"country": "Cebu, Philippines",
"featured": true,
"name": "Albert Padin",
"photo": "https://lh5.googleusercontent.com/-tmpLMtYWiVE/AAAAAAAAAAI/AAAAAAAAMJw/5D7JvbPNprg/s172-c/photo.jpg",
"photoUrl": "https://lh5.googleusercontent.com/-tmpLMtYWiVE/AAAAAAAAAAI/AAAAAAAAMJw/5D7JvbPNprg/s172-c/photo.jpg",
"shortBio": "Albert is a developer and entrepreneur who's worked on consumer, enterprise, and government software products. He is the co-founder and CTO of Symph, a design, development, and startup studio.",
"socials": [
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/albertpadin/",
"name": "LinkedIn"
}
],
"title": "Co-Founder & CTO"
},
"keshan_sodimana": {
"bio": "Keshan is the former country engineering consultant for Google Sri Lanka. Keshan was the GDG lead and founder for GDG Sri Lanka. Before joining Google, he was a Software Developer for IFS, and he is a co-founder of Siyomek Holdings",
"company": "Open Data",
"companyLogo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/google-developers-logo-png-google-developers-daldhaldhaldhalhdlahdlahdlahdlahdlah-800.png?alt=media&token=1dd29559-26bd-473b-8547-185bd4b1af96",
"companyLogoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/google-developers-logo-png-google-developers-daldhaldhaldhalhdlahdlahdlahdlahdlah-800.png?alt=media&token=1dd29559-26bd-473b-8547-185bd4b1af96",
"country": "Sri Lanka",
"featured": false,
"name": "Keshan Sodimana",
"photo": "https://firebasestorage.googleapis.com/v0/b/devfestlk18.appspot.com/o/pre_speakers%2F1901173_10203074120595094_1450286311_n.jpg?alt=media&token=aad38900-f8e7-4f71-9bca-f9c64157c75c",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/devfestlk18.appspot.com/o/pre_speakers%2F1901173_10203074120595094_1450286311_n.jpg?alt=media&token=aad38900-f8e7-4f71-9bca-f9c64157c75c",
"shortBio": "Keshan is the former country engineering consultant for Google for Sri Lanka. Keshan was the GDG lead and founder for GDG Sri Lanka. Before joining Google, he was a Software Developer for IFS, and he is a co-founder of Siyomek Holdings",
"socials": [
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/keshan",
"name": "LinkedIn"
}
],
"badges": [
{
"description": "Machine Learning Google Developer Expert",
"link": "",
"name": "gde"
}
],
"order": 0,
"title": "GDE Machine Learning"
},
"Sajeetharan_Sinnathurai": {
"badges": [
{
"description": "Angular Google Developer Expert",
"link": "https://developers.google.com/experts/people/sajeetharan-sinnathurai",
"name": "gde"
}
],
"bio": "With over 8 years of experience in the ICT industry, Sajeetharan Sinnathurai is a full stack developer, an enthusiast in Cloud and Web Development. He currently works at Microsoft as a Technical Evangelist. His skill in Web Application Architecture, Cloud and more has seen him become a Microsoft MVP in Developer Technologies, Google developer expert in Web technology. Sajeetharan is also the top contributor on stack Overflow in Sri Lanka and he ranks among the top 10 contributors in the world on Angular, Cosmos DB, etc. He is also a reviewer on https://www.packtpub.com/ .He now focuses on channeling his knowledge into open source projects and sharing it with the community by mentoring,creating POCS,running workshops,writing blogs to help make the world a better and more developed place.",
"company": "Microsoft",
"companyLogo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/Microsoft-Logo-PNG.png?alt=media&token=48c6415b-2af6-42fc-9635-a3b812d221dd",
"companyLogoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/Microsoft-Logo-PNG.png?alt=media&token=48c6415b-2af6-42fc-9635-a3b812d221dd",
"country": "Colombo , Sri Lanka",
"featured": false,
"name": "Sajeetharan Sinnathurai",
"photo": "https://firebasestorage.googleapis.com/v0/b/devfestlk18.appspot.com/o/speakers%2F29025393_10155092599246441_7284857292248571903_n%20-%20Sajeetharan%20Sinnathurai.jpg?alt=media&token=70bf3519-554d-46cf-8ea9-20b030e0d6ce",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/devfestlk18.appspot.com/o/speakers%2F29025393_10155092599246441_7284857292248571903_n%20-%20Sajeetharan%20Sinnathurai.jpg?alt=media&token=70bf3519-554d-46cf-8ea9-20b030e0d6ce",
"shortBio": "Sajeetharan is a full stack developer with over 8 years of experience.",
"socials": [
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/sajeetharan",
"name": "LinkedIn"
}
],
"title": "Cloud Solution Architect"
},
"Kamal_Vaid": {
"bio": "He is working as a Technology Lead in Infosys Limited at Chandigarh, where he is exploring Android. he is been working on Android for more 6 years now. he also handle teams for Android and Flutter here.Apart from working experience,he is community lover. he is the organizer for GDG Chandigarh and GDE for Google Assistant. he write blogs on Android and Google Assistant on regular basis. ",
"company": "Infosys Limited",
"companyLogo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/400px-Infosys_logo.svg.png?alt=media&token=ed371161-246e-499a-9f12-be82d867f1a2",
"companyLogoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/400px-Infosys_logo.svg.png?alt=media&token=ed371161-246e-499a-9f12-be82d867f1a2",
"country": "Chandigarh, India",
"featured": false,
"name": "Kamal Vaid",
"photo": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/IMG_20190729_022015_012%20(1)%20-%20smart%20solutions.jpg?alt=media&token=33367668-6d7a-4fd2-8c82-b77fcbcdaf3e",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/devfest2019-e86e2.appspot.com/o/IMG_20190729_022015_012%20(1)%20-%20smart%20solutions.jpg?alt=media&token=33367668-6d7a-4fd2-8c82-b77fcbcdaf3e",
"shortBio": "He is working as a Technology Lead in Infosys Limited at Chandigarh, where he is exploring Android. he is been working on Android for more 6 years now.",
"socials": [
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/kamal-vaid",
"name": "LinkedIn"
}
],
"badges": [
{
"description": "Google Assistant Google Developer Expert",
"link": "",
"name": "gde"
}
],
"title": "Technology Lead"
},
"Saurabh_Arora": {