-
Notifications
You must be signed in to change notification settings - Fork 0
/
expas.json
1575 lines (1575 loc) · 59.5 KB
/
expas.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": {
"thank-you": {
"backgroundColor": "#5a7785",
"brief": "Our team wants to thank one more time our partners, who made GDG DevFest Ukraine 2016 possible...",
"content": "We want to thank one more time our partners, who made [DevFest 2016](https://devfest.gdg.org.ua/) possible! THANK YOU for being creative and motivating our participants for new challenges, THANK YOU for your experiments and expertise during the insane 2 days of GDG DevFest Ukraine. We want to highlight the most interesting and catching moments that made our conference so special: - Our general partner and our source of inspiration, [Google](https://www.google.com.ua/intl/en/about/), motivated us to materialize some crazy experiments, like [Emotobooth](https://twitter.com/dfuabooth) and [AR Music Kit](https://www.androidexperiments.com/experiment/ar-music-kit) <plastic-image srcset=\"/images/posts/thankyou_1.jpg\" lazy-load preload fade></plastic-image> - [Intouch](http://www.intouchmena.com/), our Diamond partner, carried developers contest with magnifical prize fund of $2000 <plastic-image srcset=\"/images/posts/thankyou_2.jpg\" lazy-load preload fade></plastic-image> - Weight research from [DataArt](http://dataart.ua/). Now we know that the biggest tech conference related to Google technologies in CEE accommodated almost 20 tons of geeks :D <plastic-image srcset=\"/images/posts/thankyou_3.jpg\" lazy-load preload fade></plastic-image> - Thanks to [N-iX](http://n-ix.com/) for bringing incredible HTC Vive VR experience to our house <plastic-image srcset=\"/images/posts/thankyou_4.jpg\" lazy-load preload fade></plastic-image> - Fresh mojito & delicious snacks from [CoreValue](http://www.corevalue.com.ua/). And even more - charges of all types, which saved a lot of devices and made possible more photos from DevFest <plastic-image srcset=\"/images/posts/thankyou_5.jpg\" lazy-load preload fade></plastic-image> - Big variety of different prizes from [GlobalLogic](http://www.globallogic.com/), all attendees were so excited trying to do all needed requirements (e.g. get as much likes in social networks as possible) <plastic-image srcset=\"/images/posts/thankyou_6.jpg\" lazy-load preload fade></plastic-image> - Flavored coffee and yaammmii cupcakes from [Wolters Kluwer](http://wolterskluwer.com/) <plastic-image srcset=\"/images/posts/thankyou_7.jpg\" lazy-load preload fade></plastic-image> - [Mirantis](https://www.mirantis.com/) raffled big variety of prizes <plastic-image srcset=\"/images/posts/thankyou_8.jpg\" lazy-load preload fade></plastic-image> - Our Platinum sponsor - [Zalando](https://tech.zalando.de/) <plastic-image srcset=\"/images/posts/thankyou_9.jpg\" lazy-load preload fade></plastic-image> - Our Platinum sponsor - [FM Standart](http://fm-standard.com/en) and [Design Proof](http://designprof.com.ua/) <plastic-image srcset=\"/images/posts/thankyou_10.jpg\" style=\"width: calc(50% + 32px); display: inline-block;\" lazy-load preload fade></plastic-image> <plastic-image srcset=\"/images/posts/thankyou_11.jpg\" style=\"width: calc(50% + 32px); display: inline-block;\" lazy-load preload fade></plastic-image> - Super robust Wi-Fi powered by our Gold partner - [Ruckus](https://www.ruckuswireless.com/). It was so good that our attendees were able to make live streams via Periscope - [Ciklum](ttps://www.ciklum.com/) has raffled cool speakers and cups <plastic-image srcset=\"/images/posts/thankyou_12.jpg\" lazy-load preload fade></plastic-image> - Our Gold sponsor - [Sigma](http://sigma.software/) <plastic-image srcset=\"/images/posts/thankyou_13.jpg\" lazy-load preload fade></plastic-image> - [Shulga Massage](http://shulga-massage.com/) - heroes who have brought moments of real relax and peace in the center of Brownian motion of people <plastic-image srcset=\"/images/posts/thankyou_14.jpg\" lazy-load preload fade></plastic-image> Again, THANK YOU all, you are amazing! Hope you to join us next year! With love, GDG DevFest Ukraine Team",
"image": "/images/posts/thankyou_2.jpg",
"published": "2016-09-29",
"source": "/data/posts/2016-09-29-thank-you.md",
"title": "Thank you all for your support"
}
},
"gallery": [
"https://raw.githubusercontent.com/gdgistanbul/iwd19/master/images/gallery/DSC01-min.JPG",
"https://raw.githubusercontent.com/gdgistanbul/iwd19/master/images/gallery/DSC02-min.JPG",
"https://raw.githubusercontent.com/gdgistanbul/iwd19/master/images/gallery/DSC03-min.JPG",
"https://raw.githubusercontent.com/gdgistanbul/iwd19/master/images/gallery/DSC04-min.JPG",
"https://raw.githubusercontent.com/gdgistanbul/iwd19/master/images/gallery/DSC05-min.JPG",
"https://raw.githubusercontent.com/gdgistanbul/iwd19/master/images/gallery/DSC06-min.JPG",
"https://raw.githubusercontent.com/gdgistanbul/iwd19/master/images/gallery/DSC07-min.JPG",
"https://raw.githubusercontent.com/gdgistanbul/iwd19/master/images/gallery/DSC09-min.JPG"
],
"notifications": {
"config": {
"icon": "",
"timezone": "+03:00"
},
"messages": {},
"subscribers": {},
"test": {},
"users": {}
},
"partners": [
{
"logos": [
{
"order": 0,
"logoUrl": "../images/logos/gdg-lviv.svg",
"name": "GDG Lviv",
"url": "https://plus.google.com/102444623953913144164"
}
],
"order": 0,
"title": "Template Creator"
}
],
"schedule": {
"2019-03-16": {
"dateReadable": "March 16",
"timeslots": [
{
"endTime": "10:00",
"sessions": [
{
"items": [
9999
]
}
],
"startTime": "09:00"
},
{
"endTime": "10:15",
"sessions": [
{
"items": [
9999
]
}
],
"startTime": "10:00"
},
{
"endTime": "11:00",
"sessions": [
{
"items": [
9999
]
}
],
"startTime": "10:15"
},
{
"endTime": "11:40",
"sessions": [
{
"items": [
9999,
9999
]
},
{
"items": [
9999
]
},
{
"extend": 3,
"items": [
9999
]
}
],
"startTime": "11:00"
},
{
"endTime": "12:30",
"sessions": [
{
"items": [
9999
]
},
{
"items": [
9999
]
}
],
"startTime": "11:50"
},
{
"endTime": "14:00",
"sessions": [
{
"items": [
9999
]
}
],
"startTime": "12:30"
},
{
"endTime": "14:40",
"sessions": [
{
"items": [
9999
]
},
{
"items": [
9999
]
},
{
"extend": 2,
"items": [
9999
]
}
],
"startTime": "14:00"
},
{
"endTime": "15:30",
"sessions": [
{
"items": [
9999
]
},
{
"items": [
9999
]
}
],
"startTime": "14:50"
},
{
"endTime": "16:00",
"sessions": [
{
"items": [
9999
]
}
],
"startTime": "15:30"
},
{
"endTime": "16:40",
"sessions": [
{
"items": [
9999
]
},
{
"items": [
9999
]
},
{
"extend": 3,
"items": [
9999
]
}
],
"startTime": "16:00"
},
{
"endTime": "17:30",
"sessions": [
{
"items": [
9999
]
},
{
"items": [
9999
]
}
],
"startTime": "16:50"
},
{
"endTime": "18:20",
"sessions": [
{
"items": [
9999
]
},
{
"items": [
9999
]
}
],
"startTime": "17:40"
},
{
"endTime": "22:30",
"sessions": [
{
"items": [
9999
]
}
],
"startTime": "18:30"
}
],
"tracks": [
{
"title": "Bosphorus"
},
{
"title": "Maidens Tower"
},
{
"title": "Eminönu"
}
]
}
},
"sessions": {
"9999": {
"complexity": "Beginner | Intermediate",
"description": "We love all of you :)",
"language": "English|Turkish",
"presentation": "asd",
"speakers": [
"iwd2019"
],
"tags": [],
"title": "IWD Sessions"
}
},
"speakers": {
"iwd2019": {
"bio": "IWD 2019",
"company": "WTM Istanbul",
"companyLogo": "/images/logos/gdg-lviv.svg",
"companyLogoUrl": "https://wtmistanbul.com",
"country": "Istanbul, Turkey",
"featured": true,
"name": "International women's day",
"photo": "asd",
"photoUrl": "asd",
"shortBio": "IWD 2019",
"socials": [
{
"icon": "twitter",
"link": "https://twitter.com/wtmistanbul",
"name": "Twitter"
},
{
"icon": "facebook",
"link": "http://facebook.com/wtmistanbul",
"name": "Facebook"
},
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/gdgistanbul",
"name": "LinkedIn"
},
{
"icon": "gplus",
"link": "https://www.instagram.com/wtmistanbul/",
"name": "Google+"
}
],
"order": 1,
"title": "Organizer"
}
},
"team": [
{
"members": [
{
"name": "Oleh Zasadnyy",
"photo": "/images/people/oleh_zasadnyy.jpg",
"photoUrl": "https://storage.googleapis.com/hoverboard-experimental.appspot.com/images/people/optim/oleh_zasadnyy.jpg",
"socials": [
{
"icon": "gplus",
"link": "https://plus.google.com/+OlehZasadnyy",
"name": "Google+"
},
{
"icon": "facebook",
"link": "https://www.facebook.com/oleh.zasadnyy",
"name": "Facebook"
},
{
"icon": "twitter",
"link": "https://twitter.com/ozasadnyy",
"name": "Twitter"
},
{
"icon": "website",
"link": "http://o.zasadnyy.com/",
"name": "Blog"
}
],
"order": 0,
"title": "Website and sponsors"
}
]
}
],
"tickets": [
{
"available": true,
"currency": "$",
"ends": "Oct 13",
"info": "Requires valid student/lecturer ID",
"name": "EDU",
"price": 80,
"soldOut": false,
"starts": "Feb 7",
"url": "https://www.meetup.com/tr-TR/GDGIstanbul/events/"
}
],
"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": "asd",
"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": "asd"
},
{
"presentation": "asd",
"tags": [
"Firebase",
"IoT"
],
"title": "Firebase and IoT (Part 2)",
"videoId": "asd"
}
]
},
"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": [