forked from gdg-x/hoverboard
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdefault-firebase-data.json
1395 lines (1395 loc) · 71.5 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
{
"blog" : {
"c4p" : {
"backgroundColor" : "#3647a5",
"brief" : "GDG DevFest Ukraine was announced, for the sixth year in a row, the conference will bring together 900 developers, managers and...",
"content" : "GDG DevFest Ukraine was announced, for the sixth year in a row, the conference will bring together 900 developers, managers and entrepreneurs on **October 13-14** to Lviv. This year our team is doing big advancement in the content, we're building an extra stage to accommodate more visitors and provide three fully independent tracks on Android, Web and Google Cloud topics. Our focus is the content. **We’re looking for speakers like you**, who are ready to rock the stage and deliver the best talk or workshop in the field. \"I've been to conferences all over the world and what you've created in Lviv is world class. It's easily first league of conferences.\" - Piotr Tuszynski, DevFest '16 Keynote Speaker <div layout horizontal center-justified> <a href=\"http://bit.ly/df17-c4p\" rel=\"noopener noreferrer\"> <paper-button primary>Submit a proposal</paper-button> </a> </div> ## Why is it cool to speak at the DevFest? DevFest Ukraine 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: - **Expences covered**. Hotel for 3 nights, travel costs and entrance to exclusive speaker parties are covered for all speakers. - **Professional video recording**. We work with experienced video production companies to create session recording of the best quality. Stage, screen, audio, all is recorded separately and combined later. Check the [session videos from the last year](https://www.youtube.com/watch?v=VOwUnBkqmo4). - **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 with more than 35k views. - **Unique networking**. Being a speaker means you’ll have the unique chance to network with other speakers - the best experts in the industry. - **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. \"It was a best DevFest I ever attended. So professional, so much enthusiasm from the community. You managed to bring the vibe of Google I/O to Ukraine.\" - David Vávra, DevFest '16 Speaker ## 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://docs.google.com/document/d/18eGvBr6wdlXsfiZM4EK6SubfL3G1RWj-ABTBN9pngNg/edit?usp=sharing) we're interested in (it is not full and updated all the time). ### Format You can submit as many talks as you want. This year we accept submissions in two formats: - 40 minutes sessions. - 2(or 3) hours workshops. ### Talks that will not pass initial review - Talks about a specific tool/library/project explaining how it works or how to use it. - Talks whose focus is pitching a company or project. It’s cool that you mention your company during the presentation, but it shouldn’t be the focus of the talk. - Proposals that are not in English. - Recruitment talks to attract talent. We strongly recommend you check out [speaking.io](http://speaking.io/) website from Zach Holman. It includes good tips and guidelines for speakers. ## Timeline **Call for Papers submission deadline is July 1, 2017.** Submission results will be announced by July 16. Any questions? Email organizers at [[email protected]](mailto:[email protected]) <div layout horizontal center-justified> <a href=\"http://bit.ly/df17-c4p\" rel=\"noopener noreferrer\"> <paper-button primary>Submit a proposal</paper-button> </a> </div>",
"image" : "/images/posts/c4p.jpg",
"published" : "2017-02-12",
"source" : "/data/posts/2017-02-12-c4p.md",
"title" : "We're looking for speakers"
}
},
"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",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4525.jpg?alt=media&token=0428f0e3-fda0-4119-8249-69f98e936ce5",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4611.jpg?alt=media&token=b080143c-161c-4d9f-96f3-ebb6bdcdfd95",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4720.jpg?alt=media&token=75de0c2d-8bd9-48bb-9117-1349c9bc381f",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4646.jpg?alt=media&token=eafb0320-6f21-47bc-8ba4-8eec708f2076",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_5294.jpg?alt=media&token=72ab5141-d21b-4e71-a58b-faa2b00d1d02"
],
"notifications" : {
"config" : {
"icon" : "",
"timezone" : "+03:00"
},
"messages" : { },
"subscribers" : { },
"test" : { },
"users" : { }
},
"partners" : [ {
"logos" : [ {
"logoUrl" : "../images/logos/gdg-lviv.svg",
"name" : "GDG Lviv",
"url" : "https://plus.google.com/102444623953913144164"
} ],
"title" : "Template Creator"
}, {
"logos" : [ {
"logoUrl" : "../images/logos/google.svg",
"name" : "Google",
"url" : "https://www.google.com.ua/intl/en/about/"
}, {
"logoUrl" : "../images/logos/gdg-x.svg",
"name" : "GDG[x]",
"url" : "https://github.com/gdg-x"
}, {
"logoUrl" : "../images/logos/google.svg",
"name" : "Google",
"url" : "https://www.google.com.ua/intl/en/about/"
}, {
"logoUrl" : "../images/logos/gdg-x.svg",
"name" : "GDG[x]",
"url" : "https://github.com/gdg-x"
}, {
"logoUrl" : "../images/logos/google.svg",
"name" : "Google",
"url" : "https://www.google.com.ua/intl/en/about/"
}, {
"logoUrl" : "../images/logos/gdg-x.svg",
"name" : "GDG[x]",
"url" : "https://github.com/gdg-x"
}, {
"logoUrl" : "../images/logos/google.svg",
"name" : "Google",
"url" : "https://www.google.com.ua/intl/en/about/"
}, {
"logoUrl" : "../images/logos/gdg-x.svg",
"name" : "GDG[x]",
"url" : "https://github.com/gdg-x"
}, {
"logoUrl" : "../images/logos/google.svg",
"name" : "Google",
"url" : "https://www.google.com.ua/intl/en/about/"
}, {
"logoUrl" : "../images/logos/gdg-x.svg",
"name" : "GDG[x]",
"url" : "https://github.com/gdg-x"
}, {
"logoUrl" : "../images/logos/google.svg",
"name" : "Google",
"url" : "https://www.google.com.ua/intl/en/about/"
} ],
"title" : "General Partner"
} ],
"schedule" : {
"2018-11-03" : {
"dateReadable" : "November 3",
"timeslots" : [ {
"endTime" : "10:00",
"sessions" : [ {
"items" : [ 101 ]
} ],
"startTime" : "09:15"
}, {
"endTime" : "10:30",
"sessions" : [ {
"items" : [ 102 ]
} ],
"startTime" : "10:00"
}, {
"endTime" : "11:00",
"sessions" : [ {
"items" : [ 111 ]
} ],
"startTime" : "10:30"
}, {
"endTime" : "11:30",
"sessions" : [ {
"items" : [ 104 ]
} ],
"startTime" : "11:00"
}, {
"endTime" : "11:50",
"sessions" : [ {
"items" : [ 114 ]
} ],
"startTime" : "11:30"
}, {
"endTime" : "11:55",
"sessions" : [ {
"items" : [ 106 ]
} ],
"startTime" : "11:50"
}, {
"endTime" : "1:00",
"sessions" : [ {
"items" : [ 107 ]
} ],
"startTime" : "12:00"
}, {
"endTime" : "1:30",
"sessions" : [ {
"items" : [ 103 ]
} ],
"startTime" : "1:00"
}, {
"endTime" : "2:00",
"sessions" : [ {
"items" : [ 110 ]
} ],
"startTime" : "1:30"
}, {
"endTime" : "2:15",
"sessions" : [ {
"items" : [ 108 ]
} ],
"startTime" : "2:00"
}, {
"endTime" : "2:30",
"sessions" : [ {
"items" : [ 109 ]
} ],
"startTime" : "2:15"
}, {
"endTime" : "3:30",
"sessions" : [ {
"items" : [ 115 ]
}, {
"items" : [ 112 ]
}, {
"items" : [ 116 ]
} ],
"startTime" : "2:30"
}, {
"endTime" : "4:00",
"sessions" : [ {
"items" : [ 113 ]
} ],
"startTime" : "3:30"
} ],
"tracks" : [ {
"title" : "Okanogan River"
}, {
"title" : "Snake River"
}, {
"title": "Yakima River"
} ]
}
},
"sessions" : {
"101" : {
"description" : "Get your badge, coffee, 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 and Breakfast"
},
"102" : {
"description" : "Keynote for actions on google and google assistant. ",
"title" : "Keynote: Actions on Google",
"tags" : [ "Cloud" ],
"speakers": [ "daniel_myers" ]
},
"103" : {
"description" : "When you build a backend to a web app or mobile app, you want to focus on your business logic, not on your infrastructure. At the same time, you want the infrastructure to always be there for you, ready to run your code. Google Cloud Functions does that for you. In this talk, we will follow the story of the fictional startup \"In Jest\", publishers of an app that tells jokes. At first, the developers at \"In Jest\" need to get a minimum viable product up and running in an hour. As their business grows they will have to integrate with Google Sheets, SQL databases, analytics systems, marketing systems and so on. We will see the code used to make this happen, without having to worry the team about servers and data centers.",
"title" : "Focus on Your Code, Not Your Infrastructure, with Google Cloud Functions",
"tags" : [ "Cloud" ],
"speakers": [ "martin_omander" ]
},
"104" : {
"description" : "What federated learning is/why it is important. Gives context into the evolution of on device learning",
"tags" : [ "Machine Learning" ],
"title" : "Federated Learning",
"speakers": [ "emily_glanz" ]
},
"106" : {
"description" : "Basic approach of Android things.",
"title" : "Android Things (lightning talk)",
"tags": [ "Android" ],
"speakers": [ "balaji_babu_thappalli_rameshbabu" ]
},
"107" : {
"description" : "Nom nom noms",
"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"
},
"108" : {
"description" : "Linus Torvalds is not an easy person to deal with, but he did great things and shared interesting thoughts with the community. Once he said \"Talk is Cheap, Show Me the Code,\" and he was right. Join me in this talk for a code walkthrough to define the architecture of an Angular reactive app that consumes data streams by mixing observables, events, pipes and relying on an immutable state.",
"tags" : [ "Web" ],
"title" : "Reactive Streams in Angular",
"speakers": [ "giorgio_natili" ]
},
"109" : {
"description" : "We have all heard of how to do image classification, object detection with deep learning. Do you know that we can also use deep learning for more creative tasks such as generating music and art? In this talk we will go over some examples of using generative models to create music and art, and discuss how to use a DCGAN to generate images.",
"title" : "Generative Models for Music & Art",
"tags": [ "Machine Learning"],
"speakers": [ "margaret_maynard_reid" ]
},
"110" : {
"description" : "In this session, you will learn how to install and use Kubeflow to create a full machine learning application on Kubernetes. Using a publicly available dataset of GitHub Issues, you will build an automatic summary generator. Starting with an empty Kubernetes cluster, you will install Kubeflow from scratch, then train a sequence-to-sequence model using Tensorflow. You will then serve your model and interact with the resulting predictions from a web front-end. You will become familiar with Google Cloud Platform tools such as Cloud Shell, Kubernetes Engine, Cloud Storage, and Container Registry. All components are built from source in the Kubeflow Examples repository and are directly transferable to other environments (local, on-prem, and other cloud providers).",
"tags" : [ "Cloud", "Machine Learning" ],
"title" : "Kubeflow End-to-End",
"speakers": [ "amy_unruh" ]
},
"111" : {
"description" : "I will share with you how Google thinks about AI, including a primer in what it is and what it isn't. I'll go into a few examples of how ML will change your job as a developer before showing how ML models are built. Finally I will show you how to deploy an ML model to Android and running inference with it using TensorFlow Lite.",
"title" : "AI in the palm of your hand",
"tags": [ "Machine Learning", "Android"],
"speakers": [ "laurence_moroney" ]
},
"112" : {
"description" : "",
"title" : "Codelab: Actions on Google",
"tags" : [ "Cloud" ]
},
"115" : {
"description" : "",
"title" : "Codelab: Machine learning and TensorFlow",
"tags": [ "Machine Learning"]
},
"116" : {
"description" : "",
"title" : "Codelab: Flutter",
"tags" : [ "Dart" ]
},
"113" : {
"description" : "",
"title" : "Show and Tell"
},
"114" : {
"description": "Over this past year, many in the community have taken on the challenge of learning new skills through the Grow With Google scholarship program. Through this program, in conjunction with Udacity & Google, students have had the opportunity to positively impact their careers through continued education in fields such as Android & web development. This lightning talk will highlight what this program is, how it has impacted those in the community.",
"title": "Growing With Google",
"speakers": ["nate_ebel"]
}
},
"speakers" : {
"amy_unruh" : {
"bio" : "Amy Unruh is a developer programs engineer for the Google Cloud Platform, where she focuses on machine learning and data analytics as well as other Cloud Platform technologies. Amy has an academic background in CS/AI and has also worked at several startups, done industrial R&D, and published a book on App Engine.",
"company" : "Google",
"companyLogo" : "",
"companyLogoUrl" : "",
"featured" : true,
"name" : "Amy Unruh",
"photo" : "",
"photoUrl" : "http://aidevdays.com/wp-content/uploads/2018/02/Amy-Unruh.jpg",
"shortBio" : "Amy Unruh is a developer programs engineer for the Google Cloud Platform, where she focuses on machine learning and...",
"socials" : [ ],
"title" : "Develop Programs Engineer"
},
"balaji_babu_thappalli_rameshbabu" : {
"bio" : "I am Balaji Babu from Madurai, Tamil Nadu, India. Madurai is famous for its temple city so its called as 'Temple City' where I graduated in 2008 securing Bachelors of Engineering in Electronics and Communication Engineering. Previously I was working in Bangalore UST Global, as a Quality Assurance Engineer and then relocated to United States in 2016. I have 9 Years of experience in Mobile Testing and I enjoy finding defects in different scenarios by applying the information from the logs. I like melody songs that takes the stress away from my mind.",
"company" : "",
"companyLogo" : "",
"companyLogoUrl" : "",
"name" : "Balaji Babu Thappalli Rameshbabu",
"photo" : "",
"photoUrl" : "https://media.licdn.com/dms/image/C5603AQHcXI1AClUeRQ/profile-displayphoto-shrink_800_800/0?e=1544659200&v=beta&t=LgBsClfJaoLxikJjwB5owGDgv3qt11vIn8sOm6nWzto",
"shortBio" : "I am Balaji Babu from Madurai, Tamil Nadu, India. Madurai is famous for its temple city so its called as 'Temple City'...",
"socials" : [ ],
"title" : ""
},
"daniel_myers": {
"bio" : "Daniel Myers is a Developer Advocate at Google working on Google Assistant and Actions on Google. He helps developers and businesses be successful by finding simple solutions to complex problems. He’s lead multiple startups with successful exits and is an inventor of 3 patents. If you don’t find Daniel coding, you’ll probably find him talking about a new business idea.",
"company" : "Google",
"companyLogo" : "",
"companyLogoUrl" : "",
"name" : "Daniel Myers",
"photo" : "",
"photoUrl" : "../images/speakers/dan.jpeg",
"shortBio" : "Daniel Myers is a Developer Advocate at Google working on Google Assistant and Actions on Google. He helps developers and businesses be successful by finding simple solutions to complex problems...",
"socials" : [{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/jdanielmyers/",
"name": "LinkedIn"
} ],
"title" : "Developer Advocate"
},
"emily_glanz" : {
"bio" : "I'm Emily -- a software engineer at Google! Before Google, I studied Electrical Engineering at the University of Iowa (Go Hawkeyes!). In my free time I like making random things (like AIY Furbies), running, and camping.",
"company" : "",
"companyLogo" : "",
"companyLogoUrl" : "",
"featured" : true,
"name" : "Emily Glanz",
"photoUrl" : "../images/speakers/emily.jpg",
"shortBio" : "I'm Emily -- a software engineer at Google! Before Google, I studied Electrical Engineering...",
"socials" : [ ],
"title" : "Software Engineer"
},
"giorgio_natili" : {
"badges" : [ {
"description" : "Web Technologies Google Developer Expert",
"link" : "https://developers.google.com/experts/people/giorgio-natili",
"name" : "gde"
} ],
"bio" : "On paper, Giorgio Natili is an engineering lead at Amazon where he leads the layout team of the Kindle organization solving the problem of converting, delivering and rendering the content of millions of books on billions of devices. On the job, Giorgio is a strong proponent of agile development practices whose passion for usable, maintainable and testable code is only surpassed by his determination to make things work. In addition to web-standards-based application development Android and iOS, Giorgio's areas of expertise include real-time communication, accessibility and surfing off the coast of his native Italy. His previous speaking engagements include Adobe Max, 360|Flex, FITC, Codemotion (Rome, Milan and Tel Aviv), Mobile Web Dev Conference, Mobile Tea, Droidcon (Berlin, New York, and Boston), Web Unleashed and many other community-driven events in both Europe and the United States.",
"company" : "Amazon",
"companyLogo" : "",
"companyLogoUrl" : "",
"featured" : true,
"name" : "Giorgio Natili",
"photoUrl" : "../images/speakers/giorgio.jpg",
"shortBio" : "On paper, Giorgio Natili is an engineering lead at Amazon where he leads the layout team of the Kindle organization...",
"socials" : [ {
"icon": "twitter",
"link": "https://twitter.com/giorgionatili",
"name": "Twitter"
}],
"title" : "Software Engineer Lead"
},
"laurence_moroney" : {
"bio" : "Laurence Moroney is a Developer Advocate at Google Brain working on AI and TensorFlow, and author of dozens of programming books including the 'Definitive Guide to Firebase'. He's the host of the award-winning YouTube show 'Coffee With a Googler', and a regular on the Google YouTube Channels. When not Googling, he's also a published Sci-Fi novelist, comic book writer, and screenwriter, and is only too happy to geek out over this stuff.",
"company" : "Google",
"companyLogo" : "",
"companyLogoUrl" : "",
"featured" : true,
"name" : "Laurence Moroney",
"photo" : "",
"photoUrl" : "https://pbs.twimg.com/profile_images/833813140081029120/LQHZlMZE_400x400.jpg",
"shortBio" : "Laurence Moroney is a Developer Advocate at Google Brain working on AI and TensorFlow, and author of dozens of programming books...",
"socials" : [ {
"icon": "twitter",
"link": "https://twitter.com/lmoroney",
"name": "Twitter"
} ],
"title" : ""
},
"margaret_maynard_reid" : {
"badges" : [ {
"description" : "Machine Learning Google Developer Expert",
"link" : "https://developers.google.com/experts/people/margaret-maynard-reid",
"name" : "gde"
} ],
"bio" : "Margaret Maynard-Reid is a Google Developer Expert (GDE) for Machine Learning, and she develops Android apps with intelligence. She leads GDG Seattle and co-organizes Seattle Data/Analytics/Machine Learning meetup groups. She writes blogs and speaks at conferences on TensorFlow, deep learning and Android. She is passionate about community building and helping others get into Artificial Intelligence and Machine Learning.",
"company" : "",
"companyLogo" : "",
"companyLogoUrl" : "",
"name" : "Margaret Maynard-Reid",
"photo" : "",
"photoUrl" : "https://developers.google.com/experts/img/user/103983505199499372479.jpg",
"shortBio" : "Margaret Maynard-Reid is a Google Developer Expert (GDE) for Machine Learning, and she develops Android apps with intelligence...",
"socials" : [{
"icon": "twitter",
"link": "https://twitter.com/margaretmz",
"name": "Twitter"
} ],
"title" : ""
},
"martin_omander" : {
"bio" : "Martin Omander works for Google in Mountain View, California. His job in the Developer Relations team is to help developers build better software, and improve Google's Cloud Platform to make it even better for that purpose. In his spare time he manages to sneak in some game programming. Before Google, Martin worked at string of startups in Silicon Valley as a software engineer.",
"company" : "Google",
"companyLogo" : "",
"companyLogoUrl" : "",
"name" : "Martin Omander",
"photo" : "",
"photoUrl" : "https://static1.squarespace.com/static/57c1ca7846c3c4d923d281a1/57c1d0b56a4963efc2be0814/57c1d0b56a4963efc2be0815/1472319670866/Martin+Omander+Facebook+pic.jpg?format=1500w",
"shortBio" : "Martin Omander works for Google in Mountain View, California. His job in the Developer Relations team is to help developers build better software...",
"socials" : [ {
"icon": "twitter",
"link": "https://twitter.com/martinomander",
"name": "Twitter"
}, {
"icon": "website",
"link": "http://martinomander.com",
"name": "Website"
}],
"title" : ""
},
"nate_ebel": {
"bio": "Nate is an Android developer working on mobile apps at Udacity. He strongly believes in lifelong learning and in helping others do the same. Nate is an active blogger, speaker, and YouTuber; all to help make learning more accessible to others. He’s worked across the Android ecosystem building education products, mapping applications, as well as evolving autonomous robots using Android devices. He loves to chat about Android, tech, careers, geekery or anything else; so feel free to reach out.",
"shortBio": "Nate is an Android developer working on mobile apps at Udacity. He strongly believes in lifelong learning and in helping others do the same...",
"name": "Nate Ebel",
"photoUrl": "https://media.licdn.com/dms/image/C5103AQEhET7Ql8BtFA/profile-displayphoto-shrink_800_800/0?e=1546473600&v=beta&t=W5oGyXdpruBj4XCGIrBb8vD7-voWqw8txmoiMV-lviw"
}
},
"team" : [ {
"members" : [ {
"name" : "Margaret Maynard-Reid",
"photoUrl" : "https://developers.google.com/experts/img/user/103983505199499372479.jpg",
"socials" : [ {
"icon": "twitter",
"link": "https://twitter.com/margaretmz",
"name": "Twitter"
} ],
"title" : "Organizer"
}, {
"name" : "Yenchi Lin",
"photo" : "",
"photoUrl" : "https://pbs.twimg.com/profile_images/1118883213/KuroSakes_400x400.JPG",
"socials" : [ {
"icon" : "twitter",
"link" : "https://twitter.com/xCatG",
"name" : "Twitter"
}],
"title" : "Co-organizer"
}, {
"name" : "Clive Boulton",
"photo" : "",
"photoUrl" : "https://secure.meetupstatic.com/photos/member/d/3/0/3/highres_12714019.jpeg",
"socials" : [ {
"icon" : "twitter",
"link" : "https://twitter.com/iC",
"name" : "Twitter"
} ],
"title" : "Co-organizer"
}, {
"name" : "Balaji Babu Thappalli RameshBabu",
"photo" : "",
"photoUrl" : "https://media.licdn.com/dms/image/C5603AQHcXI1AClUeRQ/profile-displayphoto-shrink_800_800/0?e=1544659200&v=beta&t=LgBsClfJaoLxikJjwB5owGDgv3qt11vIn8sOm6nWzto",
"socials" : [],
"title" : "Co-organizer"
}, {
"name" : "Brandon Donnelson",
"photo" : "",
"photoUrl" : "https://pbs.twimg.com/profile_images/777138970622763009/tnjo02LX_400x400.jpg",
"socials" : [ {
"icon" : "twitter",
"link" : "https://twitter.com/branflake2267/",
"name" : "Twitter"
} ],
"title" : "Co-organizer"
}, {
"name" : "Craig Nishina",
"photo" : "",
"photoUrl" : "https://pbs.twimg.com/profile_images/482234905116422144/860-6-0A_400x400.jpeg",
"socials" : [ {
"icon" : "twitter",
"link" : "https://twitter.com/cnishina",
"name" : "Twitter"
} ],
"title" : "Party and happiness"
} ],
"title" : "Core Team"
} ],
"tickets" : [
{
"available" : true,
"currency" : "$",
"ends" : "Oct 27",
"info" : "",
"name" : "Student",
"price" : 19,
"primary" : true,
"regular" : true,
"soldOut" : false,
"starts" : "Oct 15",
"url" : "https://www.eventbrite.com/e/devfest-seattle-2018-tickets-50408043816"
}, {
"available" : true,
"currency" : "$",
"ends" : "Oct 27",
"info" : "",
"name" : "General",
"price" : 38,
"primary" : true,
"regular" : true,
"soldOut" : false,
"starts" : "Oct 15",
"url" : "https://www.eventbrite.com/e/devfest-seattle-2018-tickets-50408043816"
} ],
"triggers" : {
"images" : false
},
"videos" : [ {
"speakers" : "Yonatan Levin",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(65).jpg?alt=media&token=f25f04cf-9a10-42ed-b2ff-e41fad910c39",
"title" : "Making mistakes and building products from 1st to 30M users",
"youtubeId" : "hUY8jg9-ieE"
}, {
"speakers" : "Britt Barak",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(92).jpg?alt=media&token=0dfc3002-6d6e-4e9f-8518-5941fc501a04",
"title" : "When your app is asleep",
"youtubeId" : "D6WEL_inXxk"
}, {
"speakers" : "Asim Hussain",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(173).jpg?alt=media&token=779549b7-6578-4092-9e32-7785fff270c5",
"title" : "How to hack a node app?",
"youtubeId" : "iN92OsbtgGI"
}, {
"speakers" : "Marcos Placona",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(186).jpg?alt=media&token=54b241f6-b1d4-4357-b5a3-05e00ed55814",
"title" : "I just hacked your app!",
"youtubeId" : "GrLYrJ-aNSE"
}, {
"speakers" : "Mateusz Herych",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(238).jpg?alt=media&token=805c0d09-95ed-4d8b-8b87-85f3c4c5f427",
"title" : "Release Android apps globally with no headache and minimum stress",
"youtubeId" : "OhcJqVEnc7I"
}, {
"speakers" : "Shmuela Jacobs",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(271).jpg?alt=media&token=dfbf87f8-5a72-44cd-b2b1-3388b65ffebb",
"title" : "Web goes Native: Progressive Web Apps with Angular",
"youtubeId" : "OcIZS4jNgP0"
}, {
"speakers" : "Martin Splitt",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(81).jpg?alt=media&token=3ff4ca98-5b27-4253-a0ae-e740b6dc45a3",
"title" : "A look at the guts of Polymer 2.0",
"youtubeId" : "tRdx6Q5x3Fw"
}, {
"speakers" : "Mete Atamel",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(197).jpg?alt=media&token=83227977-a290-4816-875f-67b71586111e",
"title" : "Apache Beam and Google Cloud DataFlow",
"youtubeId" : "RxHijHZd0oM"
}, {
"speakers" : "Dmitriy Novakovskiy",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(169).jpg?alt=media&token=15f84e75-f070-4fe8-9d94-454bdf672bf9",
"title" : "Google Cloud Spanner: Going global with relational database",
"youtubeId" : "iGMjK8UY9gQ"
}, {
"speakers" : "Jose Aguinaga",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(213).jpg?alt=media&token=9b25ad9a-10d0-4887-8595-816662dc4402",
"title" : "Buy my mixtape: the Payment Request API in action",
"youtubeId" : "uDPRrmjmAD0a"
}, {
"speakers" : "Denis Radin",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(345).jpg?alt=media&token=f3e71338-c085-4fe7-b6cf-c7ef8212c930",
"title" : "Applying NASA coding guidelines to JavaScript or airspace is closer than you may think",
"youtubeId" : "E4fpZm17GNI"
}, {
"speakers" : "Yonatan Levin",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(369).jpg?alt=media&token=453207bd-cb21-41b6-a2e5-9da05273788d",
"title" : "Architecture Components. The one that got away",
"youtubeId" : "FzmDFscF41o"
}, {
"speakers" : "Michael Pustovit",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(377).jpg?alt=media&token=8c9ec397-1a38-4d7c-95ca-7d55f499eb37",
"title" : "Gradle scripts in Kotlin: is it cool?",
"youtubeId" : "XLNJkxWoCoc"
}, {
"speakers" : "Yuliya Kaleda",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(413).jpg?alt=media&token=b70b4a85-5634-4a83-8902-fa85cefb7113",
"title" : "Make Your App Instant!",
"youtubeId" : "v4RfZ0f_HVE"
}, {
"speakers" : "Tim Messerschmidt",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(350).jpg?alt=media&token=12f727f2-f9c8-4749-b76c-2da7a90cd3bb",
"title" : "Hands-on Flutter",
"youtubeId" : "0IY6J5baAj8"
}, {
"speakers" : "Gerard Sans",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(370).jpg?alt=media&token=d8627038-bb13-4e07-8e76-feca75e26086",
"title" : "Reactive Animations Using Angular",
"youtubeId" : "ij8kaavQ61Y"
}, {
"speakers" : "Tom Wilkie",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(352).jpg?alt=media&token=5656ddcc-6ff6-4846-9ef8-22bc0322a5de",
"title" : "gRPC & Kubernetes",
"youtubeId" : "YiWgWqOe_PI"
}, {
"speakers" : "Mat Ryer",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(363).jpg?alt=media&token=09ffdbc7-b717-49c8-abb8-3bae33552d14",
"title" : "How I build APIs capable of gigantic scale in Go",
"youtubeId" : "FkPqqakDeRY"
}, {
"speakers" : "Juarez Filho",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(383).jpg?alt=media&token=9aa8263d-e6b3-4141-83f9-17ef48409ec1",
"title" : "Let Firebase help you to build better Front-end apps",
"youtubeId" : "xJsgIH4U_DM"
}, {
"speakers" : "Andrey Lipattsev",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(412).jpg?alt=media&token=bf36bdf0-cea2-48a6-83e9-a3d6c3226f8f",
"title" : "AMP in 2018. Still fast, still furious",
"youtubeId" : "iPwlMr-j76w"
}, {
"speakers" : "Ihor Dvoretskyi",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(466).jpg?alt=media&token=76a822f9-9d82-4d5e-83ad-5e3f1593f2fe",
"title" : "Welcome to the world of Open Source. Stories by Kubernetes contributor",
"youtubeId" : "HhpHf3GefXI"
}, {
"speakers" : "Joanna Chwastowska",
"thumbnail" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-firebase.appspot.com/o/images%2Fsessions%2F2017%2FGDG-(469).jpg?alt=media&token=80669b99-81f4-4d7d-8160-e0174da62b85",
"title" : "100x impact - from an Individual Contributor to Technical Leader",
"youtubeId" : "O1dtdDpQXU8"
} ],
"previousSpeakers": {
"adrian_kajda" : {
"bio" : "Creator of Fuelio app. Fuelio was his hooby project started in 2012. Three years later the app was aquired by Sygic.",
"company" : "Sygic",
"companyLogo" : "https://dfua16.firebaseapp.com//images/logos/sygic.svg",
"country" : "Poland",
"id" : "adrian_kajda",
"name" : "Adrian Kajda",
"order" : 6,
"photoUrl" : "https://dfua16.firebaseapp.com//images/people/adrian_kajda.jpg",
"sessions" : {
"2016" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/adrian-kajda-fuelio-success-story",
"tags" : [ "Android" ],
"title" : "Fuelio. Success story",
"videoId" : "qK7ysoohsaM"
} ]
},
"socials" : [ {
"icon" : "gplus",
"link" : "plus.google.com/+AdrianKajda",
"name" : "Google+"
} ],
"title" : "Product Manager/Developer"
},
"aleksander_piotrowski" : {
"bio" : "Became a mobile developer after long run as a backend developer. Because of age, holding senior positions from the day one as an Android programmer. Serial hackathon winner, or at least contender ;-)",
"company" : "Applause",
"companyLogo" : "https://storage.googleapis.com/dfua17.appspot.com/images/logos/applause.png",
"country" : "Poland",
"id" : "aleksander_piotrowski",
"name" : "Aleksander Piotrowski",
"order" : 0,
"photoUrl" : "https://storage.googleapis.com/dfua17.appspot.com/images/people/aleksander_piotrowski.jpg",
"sessions" : {
"2016" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/aleksander-piotrowski-android-tool-chain-and-run-time-improvements-in-n",
"tags" : [ "Android" ],
"title" : "Android tool-chain and run-time improvements in N",
"videoId" : "WqULb6bdwwg"
} ],
"2017" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/aleksander-piotrowski-is-there-a-room-for-room",
"tags" : [ "Android", "Room" ],
"title" : "Is there a room for Room?",
"videoId" : "BHiKSnOaoh4"
} ]
},
"socials" : [ {
"icon" : "twitter",
"link" : "https://twitter.com/pelotasplus",
"name" : "Twitter"
}, {
"icon" : "linkedin",
"link" : "https://linkedin.com/in/pelotasplus",
"name" : "LinkedIn"
}, {
"icon" : "facebook",
"link" : "https://facebook.com/pelotasplus",
"name" : "Facebook"
}, {
"icon" : "github",
"link" : "https://github.com/pelotasplus",
"name" : "GitHub"
} ],
"title" : "Code monkey"
},
"anton_minashkin" : {
"bio" : "Android developer, currently works at EPAM Systems Ukraine. Has experience in both server and mobile side development. Anton all his free time spends on the endless search of silver bullets, perfect architectures and holy wars",
"company" : "EPAM",
"companyLogo" : "https://storage.googleapis.com/dfua17.appspot.com/images/logos/epam.svg",
"country" : "Ukraine",
"id" : "anton_minashkin",
"name" : "Anton Minashkin",
"order" : 17,
"photoUrl" : "https://storage.googleapis.com/dfua17.appspot.com/images/people/minashkin_anton.jpg",
"sessions" : {
"2015" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/anton-minashkin-data-binding",
"tags" : [ "Android", "Marshmallow" ],
"title" : "Data Binding. Next big thing?"
} ],
"2016" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/anton-minashkin-exoplayer-media-playback-without-pain-almost-dot-dot-dot",
"tags" : [ "Android" ],
"title" : "ExoPlayer: Media playback without pain (almost...)"
} ],
"2017" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/anton-minashkin-random-musings-on-the-android-things",
"tags" : [ "Android", "IoT" ],
"title" : "Random Musings on the Android Things",
"videoId" : "NCRr4nA0c7A"
} ]
},
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/anton.minashkin.1",
"name" : "Facebook"
} ],
"title" : "Chief Software Engineer"
},
"carmen_popovicu" : {
"bio" : "Carmen is a front-end engineer and a #1 fan of dev communities. She loves Angular but has since recently developed feelings for Polymer too. She strongly believes that adding at least one ASCII smiley in your emails will make the world a better place and hopes to one day make a difference for the web with the code she writes. If she had super powers, she would smiley all the things.",
"company" : "Widespread",
"companyLogo" : "https://dfua16.firebaseapp.com//images/logos/widespread.png",
"country" : "Romania",
"id" : "carmen_popovicu",
"name" : "Carmen Popovicu",
"order" : 3,
"photoUrl" : "https://dfua16.firebaseapp.com//images/people/carmen_popovicu.jpg",
"sessions" : {
"2016" : [ {
"presentation" : "http://carmenpopoviciu.github.io/on-polymer-and-smileys/",
"tags" : [ "Web" ],
"title" : "On Polymer and smileys... or Polysmileys"
} ]
},
"socials" : [ {
"icon" : "gplus",
"link" : "https://plus.google.com/u/0/118143942632321563925/",
"name" : "Google+"
}, {
"icon" : "twitter",
"link" : "https://twitter.com/CarmenPopoviciu",
"name" : "Twitter"
} ],
"title" : "Front-end Engineer"
},
"denis_radin" : {
"bio" : "Passionate about computer graphics and code optimization, mastering workshop http://challengingnative.com, hosting http://react.asmterdam and http://amsterdamjs.com",
"company" : "Evolution Gaming",
"companyLogo" : "https://storage.googleapis.com/dfua17.appspot.com/images/logos/evolution-gaming.png",
"country" : "Netherlands",
"id" : "denis_radin",
"name" : "Denis Radin",
"order" : 7,
"photoUrl" : "https://storage.googleapis.com/dfua17.appspot.com/images/people/denis_radin.jpg",
"sessions" : {
"2017" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/denis-radin-applying-nasa-coding-guidelines-to-javascript-or-airspace-is-closer-than-you-may-think",
"tags" : [ "Web" ],
"title" : "Applying NASA coding guidelines to JavaScript or airspace is closer than you may think",
"videoId" : "E4fpZm17GNI"
} ]
},
"socials" : [ {
"icon" : "github",
"link" : "https://github.com/PixelsCommander",
"name" : "GitHub"
} ],
"title" : "Senior JS Engineer"
},
"dmytro_danylyk" : {
"bio" : "Dmytro is a developer, writer, speaker. He live in Lviv - a quaint and beautiful city. He is passionate about android and flat design. Currently Dmytro works for a startup Timee where he develop Android application and he love what he do.",
"company" : "Timee",
"companyLogo" : "https://dfua16.firebaseapp.com//images/logos/timee.png",
"country" : "Ukraine",
"id" : "dmytro_danylyk",
"name" : "Dmytro Danylyk",
"order" : 15,
"photoUrl" : "https://dfua16.firebaseapp.com//images/people/dmytro_danylyk.jpg",
"sessions" : {
"2014" : [ {
"tags" : [ "TOPIC_ANDROID", "LANG_UK", "THEME_INTERMEDIATE" ],
"title" : "Android L Animation"
} ],
"2015" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/dmytro-danylyk-planning-android-screens",
"tags" : [ "Android", "UX" ],
"title" : "Planning Android Screens"
} ],
"2016" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/dmytro-danylyk-kotlin-plus-android",
"tags" : [ "Android" ],
"title" : "Kotlin + Android"
} ]
},
"socials" : [ {
"icon" : "website",
"link" : "http://www.dmytrodanylyk.com",
"name" : "Website"
}, {
"icon" : "website",
"link" : "http://slides.com/dmytrodanylyk",
"name" : "Website"
}, {
"icon" : "twitter",
"link" : "https://twitter.com/dmytrodanylyk",
"name" : "Twitter"
}, {
"icon" : "gplus",
"link" : "https://plus.google.com/+DmytroDanylyk",
"name" : "Google+"
} ],
"title" : "Senior Android Developer"
},
"ihor_dvoretskyi" : {
"bio" : "Ihor serves as a Developer Advocate with Kubernetes specialization for Cloud Native Computing Foundation - the Linux Foundation project, focused on creating and driving the adoption of a new computing paradigm that is optimized for modern distributed systems environments.\n\nIhor holds the role of Product Manager for Kubernetes at Kubernetes Open Source Community, co-driving Product Management Special Interest Group; and Program Manager at Mirantis - company, which is offering Kubernetes-based commercial solutions and services.\n\nApart from the product management activities, Ihor acts as a OpenStack Special Interest group co-lead at Kubernetes Community, working intensely on the questions and abilities, related to OpenStack and Kubernetes collaboration and integration.\n\nPrior to Mirantis, Ihor has been responsible for the projects, tightly bound to Cloud computing area, containerized workloads and Linux systems.",
"company" : "Cloud Native Computing Foundation",
"companyLogo" : "https://storage.googleapis.com/dfua17.appspot.com/images/logos/linux-foundation.svg",
"country" : "Ukraine",
"id" : "ihor_dvoretskyi",
"name" : "Ihor Dvoretskyi",
"order" : 4,
"photoUrl" : "https://storage.googleapis.com/dfua17.appspot.com/images/people/ihor_dvoretskyi.jpg",
"sessions" : {
"2015" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/igor-dvoretskyi-the-cloud-convergence-openstack-and-kubernetes",
"tags" : [ "Cloud", "Kubernetes" ],
"title" : "The Cloud Convergence: OpenStack and Kubernetes"
} ],
"2016" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/ihor-dvoretskyi-application-delivery-with-openstack-and-kubernetes",
"tags" : [ "Cloud" ],
"title" : "Application Delivery with OpenStack and Kubernetes"
} ],
"2017" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/ihor-dvoretskyi-keynote-welcome-to-the-world-of-open-source-stories-by-kubernetes-contributor",
"tags" : [ "General", "Open Source" ],
"title" : "Welcome to the world of Open Source. Stories by Kubernetes contributor",
"videoId" : "HhpHf3GefXI"
} ]
},
"socials" : [ {
"icon" : "linkedin",
"link" : "https://ua.linkedin.com/in/idvoretskyi",
"name" : "LinkedIn"
}, {
"icon" : "twitter",
"link" : "https://twitter.com/idvoretskyi",
"name" : "Twitter"
}, {
"icon" : "github",
"link" : "https://github.com/idvoretskyi",
"name" : "GitHub"
}, {
"icon" : "medium",
"link" : "https://medium.com/@idvoretskyi",
"name" : "Medium"
} ],
"title" : "Developer Advocate"
},
"ivan_kutuzov" : {
"bio" : "Ivan is a Software Engineer at SoftServe and uses Golang on daily basis for the last couple of years. He has 10+ years of experience in web development and has switched from PHP world. He is focusing on performance, quality, and automation. He likes to optimize solutions, make them simpler, faster and stable. In his time at SoftServe, he has worked with the Kubernetes, Docker, AWS, GraphQL, and many other technologies.",
"company" : "SoftServe",
"companyLogo" : "https://storage.googleapis.com/dfua17.appspot.com/images/logos/softserve.svg",
"country" : "Ukraine",
"id" : "ivan_kutuzov",
"name" : "Ivan Kutuzov",
"order" : 21,
"photoUrl" : "https://storage.googleapis.com/dfua17.appspot.com/images/people/ivan_kutuzov.jpg",
"sessions" : {
"2017" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/ivan-kutuzov-programming-languages-as-religions-or-instruments",
"tags" : [ "General", "Golang" ],
"title" : "Programming languages as religions or instruments?",
"videoId" : "h33Os2Wlh1E"
} ]
},
"socials" : [ {
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/arbrix/",
"name" : "LinkedIn"
}, {
"icon" : "twitter",
"link" : "https://twitter.com/arbrix",
"name" : "Twitter"
}, {
"icon" : "facebook",
"link" : "https://www.facebook.com/arbrix",
"name" : "Facebook"
} ],
"title" : "Senior Software Engineer"
},
"jana_moudrá" : {
"bio" : "Jana Moudrá is a GDE (Google Developer Expert) for Web technologies - Dart. She is a passionate developer and modern web and mobile technology evangelist. Jana co-founded a company called Juicymo, where she works on juicy apps and products. She loves helping other developers and spreading the knowledge about these technologies. ",
"company" : "Juicymo",
"companyLogo" : "https://storage.googleapis.com/dfua17.appspot.com/images/logos/juicymo.png",
"country" : "Czech Republic",
"id" : "jana_moudrá",
"name" : "Jana Moudrá",
"order" : 16,
"photoUrl" : "https://storage.googleapis.com/dfua17.appspot.com/images/people/jana_moudra.jpg",
"sessions" : {
"2015" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/jana-moudra-lets-play-dart",
"tags" : [ "Web", "Dart" ],
"title" : "Let's play Dart!"
}, {
"presentation" : "",
"tags" : [ "Web", "Dart" ],
"title" : "[Workshop] Your first server-side application in Dart"
} ],
"2017" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/jana-moudra-how-angulardart-and-firebase-did-an-app-together",
"tags" : [ "Web" ],
"title" : "How AngularDart & Firebase did an App together",
"videoId" : "Gk-WFDzCE3E"
} ]
},
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/janamou",
"name" : "Facebook"
}, {
"icon" : "twitter",
"link" : "https://twitter.com/janamou",
"name" : "Twitter"
}, {
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/janamoudra/",
"name" : "LinkedIn"
}, {
"icon" : "gplus",
"link" : "https://plus.google.com/+JanaMoudr%C3%A1",
"name" : "Google+"
}, {
"icon" : "github",
"link" : "https://github.com/Janamou",
"name" : "GitHub"
} ],
"title" : "CEO"
},
"jaroslav_khorishchenko" : {
"bio" : "Jaroslav is full stack web developer at Smart App Studio. He specializes in React and Node.js. He has come to the word of programming from electronics. He loves to write about his different interesting experiments at his Facebook page.",
"company" : "Smart App Studio",
"companyLogo" : "https://storage.googleapis.com/dfua17.appspot.com/images/logos/smart-app-studio.png",
"country" : "Ukraine",
"id" : "jaroslav_khorishchenko",
"name" : "Jaroslav Khorishchenko",
"order" : 13,
"photoUrl" : "https://storage.googleapis.com/dfua17.appspot.com/images/people/jaroslav_khorishchenko.jpg",
"sessions" : {
"2017" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/jaroslav-khorishchenko-firebase-and-iot-how-to-create-device-and-seize-the-world",
"tags" : [ "Firebase", "IoT" ],
"title" : "Firebase and IoT (Part 1)",
"videoId" : ""
}, {
"presentation" : "",
"tags" : [ "Firebase", "IoT" ],
"title" : "Firebase and IoT (Part 2)",
"videoId" : ""
} ]
},
"socials" : [ {
"icon" : "twitter",
"link" : "https://twitter.com/snipter",
"name" : "Twitter"
}, {
"icon" : "github",
"link" : "https://github.com/snipter",
"name" : "GitHub"
}, {
"icon" : "facebook",
"link" : "https://fb.com/snipter",
"name" : "Facebook"
} ],
"title" : "Full stack web developer"
},
"juarez_filho" : {
"bio" : "Passionate about traveling and also to share his adventures with Web Technologies and Firebase. As a Google Developer Expert he’s helping communities all over the world to learn, discover and have fun.",
"company" : "Caravana Web",
"companyLogo" : "https://storage.googleapis.com/dfua17.appspot.com/images/logos/caravana_web.png",
"country" : "Brazil",
"id" : "juarez_filho",
"name" : "Juarez Filho",
"order" : 11,
"photoUrl" : "https://storage.googleapis.com/dfua17.appspot.com/images/people/juares_filho.jpg",
"sessions" : {
"2015" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/juarez-filho-firebase-adventures",
"tags" : [ "Cloud", "Firebase" ],
"title" : "Firebase Adventures - Real time platform for your apps"
}, {
"presentation" : "",
"tags" : [ "Cloud", "Firebase" ],
"title" : "[Workshop] Getting started with Firebase"
} ],
"2017" : [ {
"presentation" : "https://speakerdeck.com/gdglviv/juarez-filho-let-firebase-help-you-to-build-better-front-end-apps",
"tags" : [ "Web" ],
"title" : "Let Firebase help you to build better Front-end apps",
"videoId" : "xJsgIH4U_DM"
} ]
},
"socials" : [ {
"icon" : "twitter",
"link" : "https://twitter.com/juarezpaf",
"name" : "Twitter"
}, {
"icon" : "linkedin",
"link" : "https://linkedin.com/in/juarezpaf",