forked from gdg-x/hoverboard
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefault-firebase-data.json
More file actions
executable file
·3540 lines (3540 loc) · 162 KB
/
Copy pathdefault-firebase-data.json
File metadata and controls
executable file
·3540 lines (3540 loc) · 162 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
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
{
"blog": {
"callforspeaker": {
"backgroundColor": "#3647a5",
"brief": "We\u2019re looking for speakers! ",
"content": "DevFest Calgary is bringing over 100 developers together **November 3** together in Calgary in the beautiful Riddel Library at MRU. Our focus is the content. **We\u2019re looking for speakers like you**, who are ready to rock the stage and deliver the best talk or workshop in the field. <div layout horizontal center-justified> <a href=\"http://gdgyyc.link/devfest18callforspeakersdoc\" rel=\"noopener noreferrer\"> <paper-button primary>Submit a proposal</paper-button> </a> </div> </br> Why is it cool to speak at the DevFest? </br>DevFest Calgary is not an ordinary tech conference, besides selecting only the best speakers, we help them to succeed in delivering an exceptional quality talk on the stage. Here are few perks that all our speakers get: </br>**Exposure**. By being a speaker, you are proving your level of expertise to a potential business partners or employers. Your talk will be promoted in our online resources and recording published in YouTube channel. </br>**Unique networking**. Being a speaker means you\u2019ll have the unique chance to network with other speakers - the best experts in the industry. </br>**Coaching**. We're in the same boat, after being selected as a speaker our program committee will help you to deliver the best talk possible. We provide information about the audience, presentation templates, feedback on the slides, all to help you to prepare.<br> What are we looking for? We're looking for **experience-based talks**, the information that can not be found in the documentation or easily googled. We're looking for your stories, your struggles, research results and experiences with the frontier tools or technologies. Check the [list of topics](https://codelabs.developers.google.com/devfest18) we're interested in (it is not full and updated all the time). You can submit as many talks as you want. This year we accept submissions in two formats: </br> - 45 minutes sessions </br>- 10 Minute Lightning Talks </br>- 1-2 hour workshops </br></br>Talks that will not pass initial review: </br>- Talks about a specific tool/library/project explaining how it works or how to use it. </br>- Talks whose focus is pitching a company or project. It\u2019s cool that you mention your company during the presentation, but it shouldn\u2019t be the focus of the talk. </br>- Proposals that are not in English. </br>- Recruitment talks to attract talent. </br></br>We strongly recommend you check out [speaking.io](http://speaking.io) website from Zach Holman. It includes good tips and guidelines for speakers. </br>Timeline ** Call for Papers submission deadline is October 15, 2018**. Submission results will be announced by October 20. Any questions? Email organizers at speakers@gdgyyc.com <div layout horizontal center-justified> <a href=\"http://gdgyyc.link/devfest18callforspeakersdoc\" rel=\"noopener noreferrer\"> <paper-button primary>Submit a proposal</paper-button> </a> </div>",
"image": "/images/posts/callforspeaker.jpg",
"published": "2019-07-10",
"source": "/data/posts/2017-02-12-c4p.md",
"title": "We're looking for speakers"
},
"dfca18-announced": {
"backgroundColor": "#2196F3",
"brief": "It is official. DevFestYYC 2019 will take place in Calgary, November 22-23.",
"content": "It is official. DevFestYYC 2019 will take place in **Calgary, on November 22-23**. Described as \"Where Alberta's future is launching!\", DevFestYYC 2019 is bringing world-class Google Cloud and Cloud Native experts to Calgary. Building on the success of DevFestYYC 2018, we've grown from a small 100-people event to the biggest Google technology celebration in Western Canada. This year, we expect over 330+ developers, data scientists, cloud architects, technologists and entrepreneurs from around the world to join us to learn about about cutting edge Android, Web and Google Cloud technologies. We combine this incredible learning opportunity with a phenomenal atmosphere and the gorgeous Calgary Central Libray, and DevFestYYC is sure to be unforgettable! </br></br> What to expect? **4 parallel Tracks: Learn about Cloud Infrastructure, Data & Analytics, Code and Development and Developer programs.** You will hear and learn from speakers and presenters from leading companies like Google, SoftServe, Flexera, ATB and AIRIA. </br></br> We are stoked to see yo all there! <div layout horizontal center-justified> <a href=\"http://devfestyyc.com\" rel=\"noopener noreferrer\"> <paper-button primary>Register</paper-button> </a> </div></br> <i>DevFestYYC 2019 Team. </i>",
"image": "/images/posts/dfca18-announced.jpg",
"published": "2019-07-01",
"source": "/data/posts/2017-02-06-dfua17-announced.md",
"title": "Announcing DevFestYYC 2019"
}
},
"gallery": [
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4185.jpg?alt=media&token=ff3fd161-3d68-401a-90cd-74b90bd2a4d8",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4411.jpg?alt=media&token=7fda0d66-a631-4816-bd85-b93ef49ed3a6",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4577.jpg?alt=media&token=f14205b5-be75-447c-8bca-73a15ca2df41"
],
"notifications": {
"config": {
"icon": "",
"timezone": "-06:00"
},
"messages": {},
"subscribers": {},
"test": {},
"users": {}
},
"partners": [
{
"logos": [
{
"order": 0,
"logoUrl": "../images/logos/gde.png",
"name": "Google Developer Experts",
"url": "https://developers.google.com/experts/"
},
{
"order": 1,
"logoUrl": "../images/logos/untappedenergy.png",
"name": "UnTapped Energy",
"url": "https://www.meetup.com/untappedenergy/"
},
{
"order": 2,
"logoUrl": "../images/logos/womentechmakers.png",
"name": "Women Techmakers",
"url": "https://www.womentechmakers.com/"
},
{
"order": 3,
"logoUrl": "../images/logos/googlecloudforstartups.png",
"name": "Google Cloud for Startups",
"url": "https://cloud.google.com/developers/startups/"
},
{
"order": 4,
"logoUrl": "../images/logos/googlecloudcertification.png",
"name": "Google Cloud Certification",
"url": "https://cloud.google.com/certification/"
},
{
"order": 5,
"logoUrl": "../images/logos/developerstudentclubs.png",
"name": "Developer Student Clubs",
"url": "https://developers.google.com/community/dsc/"
}
],
"order": 0,
"title": "Community Partners"
},
{
"logos": [
{
"order": 0,
"logoUrl": "../images/logos/googledevelopers.png",
"name": "Google Developers",
"url": "https://developers.google.com/"
},
{
"order": 0,
"logoUrl": "../images/logos/gde.png",
"name": "Google Developer Experts",
"url": "https://developers.google.com/experts/"
},
{
"order": 1,
"logoUrl": "../images/logos/softserve.png",
"name": "SoftServe",
"url": "https://www.softserveinc.com/en-us/"
},
{
"order": 3,
"logoUrl": "../images/logos/atb.png",
"name": "ATB Financial",
"url": "https://alphabeta.atb.com/"
},
{
"order": 5,
"logoUrl": "../images/logos/airia.png",
"name": "AIRIA Cloud",
"url": "https://www.airia.cloud/"
},
{
"order": 5,
"logoUrl": "../images/logos/sessionize.png",
"name": "Sessionize",
"url": "https://sessionize.com/"
}
],
"order": 1,
"title": "Sponsors"
}
],
"schedule": {
"2019-11-22": {
"dateReadable": "November 22 2019",
"timeslots": [
{
"endTime": "09.00",
"sessions": [
{
"items": [
100
]
}
],
"startTime": "08.00"
},
{
"endTime": "10.00",
"sessions": [
{
"items": [
158366
]
}
],
"startTime": "09.00"
},
{
"endTime": "12.00",
"sessions": [
{
"items": [
146324
]
}
],
"startTime": "10.00"
},
{
"endTime": "10.40",
"sessions": [
{
"items": [
149560
]
}
],
"startTime": "10.00"
},
{
"endTime": "10.15",
"sessions": [
{
"items": [
144610
]
}
],
"startTime": "10.00"
},
{
"endTime": "10.50",
"sessions": [
{
"items": [
147801
]
}
],
"startTime": "10.00"
},
{
"endTime": "10.50",
"sessions": [
{
"items": [
139164
]
}
],
"startTime": "10.20"
},
{
"endTime": "11.00",
"sessions": [
{
"items": [
153628
]
}
],
"startTime": "10.45"
},
{
"endTime": "11.15",
"sessions": [
{
"items": [
148133
]
}
],
"startTime": "11.00"
},
{
"endTime": "11.30",
"sessions": [
{
"items": [
149086
]
}
],
"startTime": "11.00"
},
{
"endTime": "11.50",
"sessions": [
{
"items": [
139725
]
}
],
"startTime": "11.00"
},
{
"endTime": "12.00",
"sessions": [
{
"items": [
149561
]
}
],
"startTime": "11.30"
},
{
"endTime": "12.00",
"sessions": [
{
"items": [
146755
]
}
],
"startTime": "11.30"
},
{
"endTime": "13.00",
"sessions": [
{
"items": [
500
]
},
{
"items": [
200
]
},
{
"items": [
400
]
},
{
"items": [
600
]
}
],
"startTime": "12.00"
},
{
"endTime": "13.40",
"sessions": [
{
"items": [
146605
]
}
],
"startTime": "13.00"
},
{
"endTime": "13.45",
"sessions": [
{
"items": [
157996
]
}
],
"startTime": "13.00"
},
{
"endTime": "16.00",
"sessions": [
{
"items": [
153631
]
}
],
"startTime": "13.00"
},
{
"endTime": "13.40",
"sessions": [
{
"items": [
146826
]
}
],
"startTime": "13.00"
},
{
"endTime": "15.00",
"sessions": [
{
"items": [
147669
]
}
],
"startTime": "14.00"
},
{
"endTime": "14.40",
"sessions": [
{
"items": [
142551
]
}
],
"startTime": "14.00"
},
{
"endTime": "14.50",
"sessions": [
{
"items": [
148136
]
}
],
"startTime": "14.00"
},
{
"endTime": "15.40",
"sessions": [
{
"items": [
144896
]
}
],
"startTime": "15.00"
},
{
"endTime": "15.40",
"sessions": [
{
"items": [
153627
]
}
],
"startTime": "15.00"
},
{
"endTime": "15.15",
"sessions": [
{
"items": [
148187
]
}
],
"startTime": "15.00"
},
{
"endTime": "16.15",
"sessions": [
{
"items": [
300
]
}
],
"startTime": "16.00"
}
],
"tracks": [
{
"title": "Keynote",
"roomId": [
7452
],
"room_name": [
"Patricia A. Whelan Performance Hall"
]
},
{
"title": "Code and Development",
"roomId": [
9332,
7452,
7454
],
"room_name": [
"Central Library Room 0-14",
"Patricia A. Whelan Performance Hall",
"Central Library Room 0-13"
]
},
{
"title": "Infrastructure",
"roomId": [
7453,
7452,
7454
],
"room_name": [
"BMO Financial Group Community Room",
"Patricia A. Whelan Performance Hall",
"Central Library Room 0-13"
]
},
{
"title": "Google Programs & Non-Technical",
"roomId": [
7454,
7453,
7452
],
"room_name": [
"Central Library Room 0-13",
"BMO Financial Group Community Room",
"Patricia A. Whelan Performance Hall"
]
},
{
"title": "Data Analytics and AI",
"roomId": [
7454,
7453
],
"room_name": [
"Central Library Room 0-13",
"BMO Financial Group Community Room"
]
},
{
"title": "Mentorship",
"roomId": [
7454
],
"room_name": [
"Central Library Room 0-13"
]
}
]
},
"2019-11-23": {
"dateReadable": "November 23 2019",
"timeslots": [
{
"endTime": "09.15",
"sessions": [
{
"items": [
700
]
}
],
"startTime": "08.30"
},
{
"endTime": "09.30",
"sessions": [
{
"items": [
800
]
}
],
"startTime": "09.15"
},
{
"endTime": "09.45",
"sessions": [
{
"items": [
146638
]
}
],
"startTime": "09.30"
},
{
"endTime": "10.15",
"sessions": [
{
"items": [
139722
]
}
],
"startTime": "09.30"
},
{
"endTime": "10.20",
"sessions": [
{
"items": [
148188
]
}
],
"startTime": "09.30"
},
{
"endTime": "15.05",
"sessions": [
{
"items": [
1600
]
}
],
"startTime": "09.30"
},
{
"endTime": "10.25",
"sessions": [
{
"items": [
147368
]
}
],
"startTime": "09.45"
},
{
"endTime": "11.15",
"sessions": [
{
"items": [
147625
]
}
],
"startTime": "10.15"
},
{
"endTime": "11.15",
"sessions": [
{
"items": [
147581
]
}
],
"startTime": "10.30"
},
{
"endTime": "10.55",
"sessions": [
{
"items": [
149562
]
}
],
"startTime": "10.30"
},
{
"endTime": "12.00",
"sessions": [
{
"items": [
140601
]
}
],
"startTime": "11.00"
},
{
"endTime": "11.55",
"sessions": [
{
"items": [
138512
]
}
],
"startTime": "11.15"
},
{
"endTime": "12.05",
"sessions": [
{
"items": [
147107
]
}
],
"startTime": "11.15"
},
{
"endTime": "13.00",
"sessions": [
{
"items": [
900
]
},
{
"items": [
1300
]
},
{
"items": [
1400
]
},
{
"items": [
1700
]
}
],
"startTime": "12.00"
},
{
"endTime": "14.00",
"sessions": [
{
"items": [
2100
]
}
],
"startTime": "13.00"
},
{
"endTime": "13.15",
"sessions": [
{
"items": [
146840
]
}
],
"startTime": "13.00"
},
{
"endTime": "15.05",
"sessions": [
{
"items": [
1500
]
}
],
"startTime": "13.00"
},
{
"endTime": "13.30",
"sessions": [
{
"items": [
142401
]
}
],
"startTime": "13.15"
},
{
"endTime": "14.00",
"sessions": [
{
"items": [
146849
]
}
],
"startTime": "13.45"
},
{
"endTime": "14.50",
"sessions": [
{
"items": [
138511
]
}
],
"startTime": "14.00"
},
{
"endTime": "15.00",
"sessions": [
{
"items": [
147218
]
}
],
"startTime": "14.15"
},
{
"endTime": "16.00",
"sessions": [
{
"items": [
1000
]
}
],
"startTime": "15.00"
},
{
"endTime": "16.25",
"sessions": [
{
"items": [
1100
]
}
],
"startTime": "15.50"
},
{
"endTime": "17.25",
"sessions": [
{
"items": [
1200
]
}
],
"startTime": "16.25"
}
],
"tracks": [
{
"title": "Google Programs & Non-Technical",
"roomId": [
7454,
7453
],
"room_name": [
"Central Library Room 0-13",
"BMO Financial Group Community Room"
]
},
{
"title": "Code and Development",
"roomId": [
7453,
7454,
7452
],
"room_name": [
"BMO Financial Group Community Room",
"Central Library Room 0-13",
"Patricia A. Whelan Performance Hall"
]
},
{
"title": "Infrastructure",
"roomId": [
7452
],
"room_name": [
"Patricia A. Whelan Performance Hall"
]
},
{
"title": "Data Analytics and AI",
"roomId": [
7453
],
"room_name": [
"BMO Financial Group Community Room"
]
}
]
}
},
"sessions": {
"158366": {
"description": "Wellington Holbrook is leading ATB Financial through an intense three year business transformation with a big mandate, to reimagine banking and make it work for people. Keeping the customer at the center of every decision, Wellington will share his roadmap for this transformation success, which started with transitioning to GSuite and now include the full suite of powerful Google Cloud Platform products. ",
"title": "Transform Banking with Google",
"speakers": [
"Wellington_Holbrook"
],
"icon": "",
"videoID": "",
"image": "",
"presentation": "",
"roomId": 7452,
"room": "Patricia A. Whelan Performance Hall",
"language": "English",
"tags": [
"Keynote"
],
"complexity": "Introductory and overview"
},
"146324": {
"description": "-- Hands on session on how to get started with Unity.\r\n-- Acquiring 3D assets.\r\n-- Build AR/VR applications/games.\r\n-- To get the most out of the session - pre-download Unity on your laptop (https://store.unity.com/download-nuo)\r\n-- We are going to use Google Poly API for game asset management (https://poly.google.com/)",
"title": "Building Augmented Reality Applications",
"speakers": [
"Suryatapa_Roy"
],
"icon": "",
"videoID": "",
"image": "",
"presentation": "",
"roomId": 9332,
"room": "Central Library Room 0-14",
"language": "English",
"tags": [
"Code and Development"
],
"complexity": "Introductory and overview"
},
"149560": {
"description": "Introduction to Kubernetes with 3D animations",
"title": "Kubernetes 101 in 3D",
"speakers": [
"Jay_Krish"
],
"icon": "",
"videoID": "",
"image": "",
"presentation": "",
"roomId": 7453,
"room": "BMO Financial Group Community Room",
"language": "English",
"tags": [
"Infrastructure"
],
"complexity": "Introductory and overview"
},
"144610": {
"description": "Local business: Want to build business and grow awareness? Simple ways to use Google My Business platform to expose brands to more customers and sales!",
"title": "Local Businesses Leveraging Google My Business",
"speakers": [
"Kayode_Otegbeye"
],
"icon": "",
"videoID": "",
"image": "",
"presentation": "",
"roomId": 7454,
"room": "Central Library Room 0-13",
"language": "English",
"tags": [
"Google Programs & Non-Technical"
],
"complexity": "Introductory and overview"
},
"147801": {
"description": "Large scale enterprise migrations are challenging. With billions of connections and thousands of dependencies creating extreme complexity, migrations are one of the most difficult projects to execute successfully. \r\n\r\nHow do you launch your migration successfully?\r\n\r\nFrom discovery and application dependency identification through to Migration, in 45 minutes we'll cover how DATA can fuel your understanding, power optimization, and accelerate modernization and help you successfully navigate your cloud migration. \r\n",
"title": "Mission Migration: Billions of Connections. Thousands of Dependencies. Migration in 3...2..1. ",
"speakers": [
"Hans_Hegge",
"Sam_Barbeau"
],
"icon": "",
"videoID": "",
"image": "",
"presentation": "",
"roomId": 7452,
"room": "Patricia A. Whelan Performance Hall",
"language": "English",
"tags": [
"Infrastructure"
],
"complexity": "Advanced"
},
"139164": {
"description": "We will explore how www.instafly.me is leveraging machine learning to bring magic to travel booking. ",
"title": "InstaFly Me!",
"speakers": [
"Mohamed_Ibrahim"
],
"icon": "",
"videoID": "",
"image": "",
"presentation": "",
"roomId": 7454,
"room": "Central Library Room 0-13",
"language": "English",
"tags": [
"Data Analytics and AI"
],
"complexity": "Intermediate"
},
"153628": {
"description": "Learn how Google Cloud for Startups can help you launch.",
"title": "Google for Startups: Launch with Google",
"speakers": [
"Greg_Bennett"
],
"icon": "",
"videoID": "",
"image": "",
"presentation": "",
"roomId": 7453,
"room": "BMO Financial Group Community Room",
"language": "English",
"tags": [
"Google Programs & Non-Technical"
],
"complexity": "Introductory and overview"
},
"148133": {
"description": "Developer Student Clubs are all over the Globe now.\r\nWhat are they? What do they do? How can you get involved? ",
"title": "Developer Student Clubs",
"speakers": [
"Kiley_Carson"
],
"icon": "",
"videoID": "",
"image": "",
"presentation": "",
"roomId": 7454,
"room": "Central Library Room 0-13",
"language": "English",
"tags": [
"Google Programs & Non-Technical"
],
"complexity": "Introductory and overview"
},
"149086": {
"description": "Making banking work for people means evolving solutions to meet the demands of tomorrow. In this talk, we will discuss how Google Cloud Platform (GCP) can be used to find innovative ways in producing robust and cost-efficient real-time data processing and analysis. We will also illustrate how GCP can be leveraged to produce next gen banking analytic systems.",
"title": "Streaming Data Pipelines: Creating Next Gen Banking Analytics",
"speakers": [
"Gunjan_Kaur",
"Xueming_Zhao"
],
"icon": "",
"videoID": "",
"image": "",
"presentation": "",
"roomId": 7453,
"room": "BMO Financial Group Community Room",
"language": "English",
"tags": [
"Data Analytics and AI"
],
"complexity": "Intermediate"
},
"139725": {
"description": "Cloud Functions for Firebase empowers web, mobile, and IoT developers to build simple, yet powerful backend features to their applications. I will be covering a quick intro into the what & why of Cloud Functions and finish up with some typical use-cases & examples of Cloud Functions for Firebase.\r\n\r\nHave you ever started building an application and quickly realized that a lot of back-end work is needed? Cloud Functions is a serverless execution environment for building and connecting cloud services. With Cloud Functions you write simple, single-purpose functions that are attached to events emitted from your cloud infrastructure and services. There is no need to provision any infrastructure or worry about managing any servers.\r\n\r\nIn this session, you\u2019ll see how using Cloud Functions for Firebase can help you quickly build out task heavy features for your web/mobile/IoT application as well as easily integrate with 3rd-party tools & services.",
"title": "Supercharging your applications with Cloud Functions",
"speakers": [
"Kyle_Paul"
],
"icon": "",
"videoID": "",
"image": "",
"presentation": "",
"roomId": 7452,
"room": "Patricia A. Whelan Performance Hall",
"language": "English",
"tags": [
"Code and Development"
],
"complexity": "Intermediate"
},