forked from gdg-x/hoverboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default-firebase-data.json
1839 lines (1839 loc) · 89.9 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" : {},
"gallery" : [],
"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://www.meetup.com/GDG-Lviv/"
} ],
"order" : 0,
"title" : "Template Creator"
}, {
"logos" : [ {
"order" : 0,
"logoUrl" : "../images/logos/google.svg",
"name" : "Google",
"url" : "https://www.google.com.ua/intl/en/about/"
} ],
"order" : 1,
"title" : "General Partner"
} ],
"schedule" : {
"2016-09-09" : {
"dateReadable" : "September 9",
"timeslots" : [ {
"endTime" : "10:00",
"sessions" : [ {
"items" : [ 132 ]
} ],
"startTime" : "09:00"
}, {
"endTime" : "10:15",
"sessions" : [ {
"items" : [ 136 ]
} ],
"startTime" : "10:00"
}, {
"endTime" : "11:00",
"sessions" : [ {
"items" : [ 139 ]
} ],
"startTime" : "10:15"
}, {
"endTime" : "11:40",
"sessions" : [ {
"items" : [ 103, 112 ]
}, {
"items" : [ 120 ]
}, {
"extend" : 3,
"items" : [ 109 ]
} ],
"startTime" : "11:00"
}, {
"endTime" : "12:30",
"sessions" : [ {
"items" : [ 129 ]
}, {
"items" : [ 116 ]
} ],
"startTime" : "11:50"
}, {
"endTime" : "14:00",
"sessions" : [ {
"items" : [ 133 ]
} ],
"startTime" : "12:30"
}, {
"endTime" : "14:40",
"sessions" : [ {
"items" : [ 101 ]
}, {
"items" : [ 118 ]
}, {
"extend" : 2,
"items" : [ 107 ]
} ],
"startTime" : "14:00"
}, {
"endTime" : "15:30",
"sessions" : [ {
"items" : [ 140 ]
}, {
"items" : [ 126 ]
} ],
"startTime" : "14:50"
}, {
"endTime" : "16:00",
"sessions" : [ {
"items" : [ 134 ]
} ],
"startTime" : "15:30"
}, {
"endTime" : "16:40",
"sessions" : [ {
"items" : [ 105 ]
}, {
"items" : [ 127 ]
}, {
"extend" : 3,
"items" : [ 119 ]
} ],
"startTime" : "16:00"
}, {
"endTime" : "17:30",
"sessions" : [ {
"items" : [ 112 ]
}, {
"items" : [ 111 ]
} ],
"startTime" : "16:50"
}, {
"endTime" : "18:20",
"sessions" : [ {
"items" : [ 106 ]
}, {
"items" : [ 125 ]
} ],
"startTime" : "17:40"
}, {
"endTime" : "22:30",
"sessions" : [ {
"items" : [ 137 ]
} ],
"startTime" : "18:30"
} ],
"tracks" : [ {
"title" : "Expo hall"
}, {
"title" : "Conference hall"
}, {
"title" : "Workshops hall"
} ]
}
},
"sessions" : {
"101" : {
"complexity" : "Beginner",
"description" : "In this session, we will take a look at Windows and .NET support on Google Cloud Platform. We will build a simple ASP.NET app, deploy to Google Compute Engine and take a look at some of the tools and APIs available to .NET developers on Google Cloud Platform. ",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/mete-atamel-windows-and-net-on-google-cloud-platform",
"speakers" : [ "mete_atamel", "adrian_kajda" ],
"tags" : [ "Cloud" ],
"title" : "Windows and .NET on Google Cloud Platform "
},
"102" : {
"complexity" : "Beginner",
"description" : "Do you remember the game Simon says from the 80s? I don’t know about you, but I know many that spent hours trying to press those specific sequences of red, green, blue and yellow buttons in the correct order. But why play on your own? We’ve implemented a gRPC server that allows you to play Simon with other players over the internet!\n\nIn this workshop we will dive into the toolset and libraries to build your very own Simon Says client for this server. We will have a message description in Protocol Buffers format and some stub code in several languages ready for you to play with. The goal for this workshop is for you to have a working client that you can use to play (and beat!) other attendees of the workshop.",
"language" : "English",
"speakers" : [ "mete_atamel" ],
"tags" : [ "Cloud" ],
"title" : "Hands-on gRPC experience building your own multiplayer game client"
},
"103" : {
"complexity" : "Intermediate",
"description" : "Doze mode is just around the corner. \nIntroduced in Marshmallow, as the shy guy that was allowed to step in only when your device went to sleep. ZzzZzzzz\nWith the new N release, Doze mode becomes the rockstar. He rushes into the room with a big shabang by shooting all background services and network requests that forgot to get away. \nHe should no longer be shy. He just shoots and dances on bones of your scheduled alarms, while you wonder why this particular task is no longer running.\nWith the new Doze mode, you require to adapt your app architecture to the new reality.\nOn this talk, we will learn how to survive Doze mode using Job Scheduler, Content Provider and stay in one piece.",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/yonatan-levin-knock-knock-whos-there-doze",
"speakers" : [ "yonatan_levin" ],
"tags" : [ "Android" ],
"title" : "Knock knock! Who's there? Doze."
},
"104" : {
"complexity" : "Beginner",
"description" : "It's no longer just about digitizing our environment. It’s rather about pervasive and ubiquitous computing. Almost all everyday things will turn into connected devices soon. This “Internet of Things” will allow the Web to be physically tangible. But what is the value, and how can one prevent IoT applications which just seem to be only more expensive and complicated than conventional solutions. Sascha will discuss the purpose and guide you through this complex topic showing inspiring solutions, tips from practice, and code samples in a variety of technologies from simple Bluetooth Eddystone Beacons to more sophisticated IoT platforms like Eclipse SmartHome.",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/sascha-wolter-the-physical-web-context-is-king",
"speakers" : [ "sascha_wolter" ],
"tags" : [ "Web" ],
"title" : "The Physical Web: Context is King!",
"videoId" : "fLfQNp75kbc"
},
"105" : {
"complexity" : "Intermediate",
"description" : "TBD",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/rustem-arzymbetov-intro-to-tensorflow",
"speakers" : [ "rustem_arzymbetov" ],
"tags" : [ "Cloud" ],
"title" : "Intro to TensorFlow",
"videoId" : "e3cuSz1hEPs"
},
"106" : {
"complexity" : "Beginner",
"description" : "Fuelio. Success story (I'll write more info later)",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/adrian-kajda-fuelio-success-story",
"speakers" : [ "adrian_kajda" ],
"tags" : [ "Android" ],
"title" : "Fuelio. Success story",
"videoId" : "qK7ysoohsaM"
},
"107" : {
"complexity" : "Beginner",
"description" : "There's been much discussion about Progressive Web Apps. They're still a relatively new model. In this talk, I'll summarise few options and techniques for getting started with your own Progressive Web App",
"extend" : 2,
"language" : "English",
"speakers" : [ "gerard_sans" ],
"tags" : [ "Web" ],
"title" : "Introduction to Progressive Web Apps in Angular 2"
},
"108" : {
"complexity" : "Intermediate",
"description" : "Angular 2 introduces a new Data Architecture based on Reactive Programming using RxJS 5. We are really excited to see the new approach using Observable sequences aka Observables. We will cover a basic introduction of Angular 2 followed by RxJS 5 and the new HTTP API covering some basic use cases.",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/gerard-sans-new-data-architecture-in-angular-2",
"speakers" : [ "gerard_sans" ],
"tags" : [ "Web" ],
"title" : "New Data Architecture in Angular 2",
"videoId" : "pgmLkwD-mqM"
},
"109" : {
"complexity" : "Beginner",
"description" : "TBD",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/jozef-vodicka-how-much-money-firebase-can-save-you",
"speakers" : [ "jozef_vodicka" ],
"tags" : [ "Cloud" ],
"title" : "How much money Firebase can save you"
},
"110" : {
"complexity" : "Intermediate",
"description" : "There's a lot of hype around MVP pattern in the Android world. Now it's time for concretes. During his presentation Mateusz will tell you how IG divided responsibilities between pattern's different components, how they tied Presenters' and Views' lifecycles and what they did to make it all testable. If you'd love to make your Fragments' and Activities' code simpler and increase your coverage, but you're confused how to glue it all together - don't miss Mateusz's talk.",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/mateusz-herych-the-ultimate-guide-to-mvp-pattern-on-android",
"speakers" : [ "mateusz_herych" ],
"tags" : [ "Android" ],
"title" : "The ultimate guide to MVP pattern on Android"
},
"111" : {
"complexity" : "Intermediate",
"description" : "It's beauty, it's handy, it's fast, it's easy - all about Dagger 2",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/kseniia-shumelchyk-building-modular-architecture-apps-with-dagger-2",
"speakers" : [ "david_mayboroda" ],
"tags" : [ "Android" ],
"title" : "Building modular architecture apps with Dagger 2"
},
"112" : {
"complexity" : "Intermediate",
"description" : "Last year brought a lot of new capabilities to browsers, fundamentally changing the way we will build web apps in 2016. 60FPS, push messages, offline support and background sync became a reality marking the birth of Progressive Web Apps.",
"language" : "English",
"speakers" : [ "konrad_dzwinel" ],
"tags" : [ "Web" ],
"title" : "Building web apps in 2016"
},
"113" : {
"complexity" : "Intermediate",
"description" : "Microservices is coming with a certain workload and constraints. Let's try to see how Google Cloud Platform and App Engine can help the overall microservices implementation.",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/jean-baptiste-clion-microservices-in-google-app-engine",
"speakers" : [ "jean-baptiste_clion" ],
"tags" : [ "Cloud" ],
"title" : "Microservices in Google App Engine"
},
"114" : {
"complexity" : "Intermediate",
"description" : "Storing account information is a common challenge many app developers face, and is often tackled in tailored solutions. Isn't there some strategy to store account credentials in a centralized place?\n\nWhat about considerations for multiple accounts? Security concerns? And when should or could I synchronize data?\n\nAndroid offers a powerful—and underrated—account manager. Let's explore the possibilities together and lay out an architecture for engineering an Android app based on accounts.",
"language" : "English",
"speakers" : [ 12 ],
"tags" : [ "Android" ],
"title" : "I’ve been doing some syncing…"
},
"115" : {
"complexity" : "Beginner",
"description" : "Upcoming Android N release will bring some interesting changes to both Android run-time and toolchain. Let's talk about JIT, AOT, hybrid JIT/AOT, Jack, Jill and other acronyms and codenames ;-) In this presentation we'll see how many awesome tricks are needed to make our apps start fast and run smoothly on modern Android devices. Hopefully we'll also answer the most important question -- what's next for Android after Java.",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/aleksander-piotrowski-android-tool-chain-and-run-time-improvements-in-n",
"speakers" : [ "paul_lammertsma" ],
"tags" : [ "Android" ],
"title" : "Android tool-chain and run-time improvements in N",
"videoId" : "WqULb6bdwwg"
},
"116" : {
"complexity" : "Beginner",
"description" : "One of my favourite things about the web are ASCII smileys. They're sweet, fun and simply make the web a better place. How could anyone not like them ¯(ツ)/¯?\n\nThis talk is an overdose of smileys, because they're the perfect excuse to get started with Polymer. Polymer is a library built on top of the Web Components standards that helps developers create reusable components for the modern web. And since I know that everybody has been wondering how one could take over the world by creating a suite of Polymer animated emoticon components, we're going to do exactly that.",
"language" : "English",
"presentation" : "http://carmenpopoviciu.github.io/on-polymer-and-smileys/",
"speakers" : [ "aleksander_piotrowski" ],
"tags" : [ "Web" ],
"title" : "On Polymer and smileys... or Polysmileys"
},
"117" : {
"complexity" : "Beginner",
"description" : "Data is becoming one of the main decision-makers in an organisation. The more data we have the more challenges we face every day. Every decision we make will have long-term implications. In the talk we will go through different approaches to the data pipelines: from a simple in-house built, with comparison to open source solutions based on Apache stack(Apache Kafka, Apache Samza, Spark) and finally hosted auto-scaling solutions based Amazon(S3, Kinesis, Lambda, EMR) or Google(Pub/Sub, Dataflow, BigQuery). The talk covers the main aspects of data collecting processes altogether with further implications for data processing, highlighting appropriate solutions and architectures for the particular use-cases. ",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/sergii-khomenko-building-data-pipelines-from-simple-to-more-advanced-hands-on-experience",
"speakers" : [ "carmen_popovicu" ],
"tags" : [ "Cloud" ],
"title" : "Building data pipelines: from simple to more advanced - hands-on experience"
},
"118" : {
"complexity" : "Intermediate",
"description" : "TBD",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/dmytro-danylyk-kotlin-plus-android",
"speakers" : [ "sergii_khomenko" ],
"tags" : [ "Android" ],
"title" : "Kotlin + Android"
},
"119" : {
"complexity" : "Beginner",
"description" : "Writing Android apps is usually fun because you are actually building something. But what about writing tests? Boring stuff. Errr, UI tests? I am a developer!\n\nIn this talk we will take a look at options for UI tests on Android, why you should write them and how they help you with your app development workflow. No more untested apps!",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/jana-moudra-hands-on-with-ui-testing-for-android-developers",
"speakers" : [ "dmytro_danylyk" ],
"tags" : [ "Android" ],
"title" : "Hands-on with UI testing for Android developers"
},
"120" : {
"complexity" : "Beginner",
"description" : "\"Remember back when AJAX completely changed what was possible in the desktop web? Progressive web apps are that same fundamental shift for the mobile web.\" said Rahul Row-Chowdhury (Google’s product lead for chrome and the web platform) on stage at Google I/O 2016. - Progressive web apps use service workers, app shell, push notifications, RAIL and other capabilities to deliver an app-like user experience.",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/jakub-skvara-progressive-web-apps-prepare-your-web-for-2017",
"speakers" : [ "jana_moudra" ],
"tags" : [ "Web" ],
"title" : "Progressive web apps - prepare your web for 2017"
},
"121" : {
"complexity" : "Intermediate",
"description" : "Using service workers and other modern progressive web apps capabilities we can update our web applications to be offline-fires. In this session we'll show how to easily convert your applications be usable without the internet connection.",
"language" : "English",
"speakers" : [ "jana_moudra" ],
"tags" : [ "Web" ],
"title" : "Offline-first progressive web apps"
},
"122" : {
"complexity" : "Intermediate",
"description" : "I would like to talk about architecture of our Settle Up app. It's all based on new Firebase announced on I/O with the help of modern frameworks like Rx, Kotlin and MVP.",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/david-vavra-firebase-plus-kotlin-plus-rxjava-plus-mvp-practical-tips",
"speakers" : [ "jakub_škvára" ],
"tags" : [ "Android" ],
"title" : "Firebase + Kotlin + RxJava + MVP: Practical Tips",
"videoId" : "b9NgjqM6dvk"
},
"123" : {
"complexity" : "Beginner",
"description" : "TBD",
"language" : "English",
"speakers" : [ "david_vávra" ],
"tags" : [ "Web" ],
"title" : "TBD"
},
"124" : {
"complexity" : "Intermediate",
"description" : "You are tired of building every patch for your QA ? Still deploying to google play manually ? You still think that build server is something that you don't need ? Than I will try to show you how you can make life of your team easier with CI.",
"language" : "English",
"speakers" : [ "valentyn_shybanov" ],
"tags" : [ "Android" ],
"title" : "Continues Integration in Android",
"videoId" : "MmGDQkgknfY"
},
"125" : {
"complexity" : "Intermediate",
"description" : "TBD",
"language" : "English",
"speakers" : [ "sergiy_mokienko" ],
"tags" : [ "Cloud" ],
"title" : "Kubernetes in a real world"
},
"126" : {
"complexity" : "Intermediate",
"description" : "Imagine the world where you can get any application, look into its code (even if it is not open sourced) and modify any conditional operator in any way you like. Welcome, you are in the Android applications world! Let's discover how anyone can decompile your app and, for example, hack your 'if' operators. For the beginning, we will play a role of a script kiddie and try to hack some simple app. After this, we will pretend security-conscious Android developers and try to think how we can protect ourselves.",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/michael-pustovit-android-hacking-for-dummies-if-operator-demolytion",
"speakers" : [ "ihor_dvoretskyi" ],
"tags" : [ "Android" ],
"title" : "Android hacking for dummies: ‘if’ operator demolytion",
"videoId" : "We04nyIIsA0"
},
"127" : {
"complexity" : "Intermediate",
"description" : "If you have any experience with Android Media Player, you definitely know how hard it is to prepare it and do not lose your mind. ExoPlayer - is an alternative, which can help you deal with media with much less pain. So lets discuss if it really a \"silver bullet\" or yet another State Machine hell.",
"language" : "Ukrainian",
"presentation" : "https://speakerdeck.com/gdglviv/anton-minashkin-exoplayer-media-playback-without-pain-almost-dot-dot-dot",
"speakers" : [ "michael_pustovit" ],
"tags" : [ "Android" ],
"title" : "ExoPlayer: Media playback without pain (almost...)"
},
"128" : {
"complexity" : "Beginner",
"description" : "Google announced Android Wear 2.0 become available this Fall. This major update brings some revolutionary changes in platform, that should change our approaches in developing wearable apps, including freedom of BLE tethering, system support for complications and activity recognition by GoogleFit, developed mainly for Android Wear 2.0. We will talk deeper about these new features and look at some ways to implement them in the code.",
"language" : "English",
"speakers" : [ "anton__minashkin" ],
"tags" : [ "Android" ],
"title" : "Android Wear 2.0: Great Changes Upcoming this Fall"
},
"129" : {
"complexity" : "Intermediate",
"description" : "Accessibility is a very important step to make sure that your app reaches everyone in an easy and fun way to use. \nGood accessibility support means much more than just making sure the app supports screen readers, different fonts sizes and good contrast ratios. It is a learning process, and one in which we ourselves still have much to learn and explore. ",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/resul-caner-yildirim-accessibility-on-android",
"speakers" : [ "constantine_mars" ],
"tags" : [ "Android" ],
"title" : "Accessibility on Android"
},
"130" : {
"complexity" : "Intermediate",
"description" : "Wearable devices are one of the most popular things nowadays. Specially, after the Apple Watch, we finally get the whole picture of the entire list of products and their features. Now, we can talk about how we can design a user experience for this type of devices.\nEvery platform has it's own design principles and approaches. But, in the core, they all need to follow same core rules. So, how we combine this core requirements with Google's Material Design and use them on an Android Wear device? Let's learn!",
"language" : "English",
"speakers" : [ "constantine_mars" ],
"tags" : [ "Android" ],
"title" : "Designing an Android Wear Application"
},
"131" : {
"complexity" : "Intermediate",
"description" : "In this talk, I will reveal you all the deepest secrets of using MVVM architecture in Android. \nWe will discuss on how to organise your application, views, models, how to retrieve data from the model requested from the view via data binding. \nLightweight Activities and Fragments, is it even possible? \n\nYes, and I will show you how to achieve this with MVVM and DataBinding!",
"language" : "English",
"presentation" : "https://speakerdeck.com/gdglviv/roman-herasymenko-deal-with-it-android-databinding-explained",
"speakers" : [ "resul_caner__yildirim" ],
"tags" : [ "Android" ],
"title" : "Deal with it: Android DataBinding explained"
},
"132" : {
"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 & morning Coffee"
},
"133" : {
"description" : "Foooooooood!",
"icon" : "lunch",
"image" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Flunch.jpg?alt=media&token=bc82aaff-92cc-4dcc-a00e-2b6f30a40225",
"title" : "Lunch"
},
"134" : {
"description" : "Coffeeeeeee!",
"icon" : "coffee-break",
"image" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fcoffee-break.jpg?alt=media&token=7c2c929b-cb94-4be8-a05a-b3f678136cb7",
"title" : "Coffee break"
},
"135" : {
"description" : "Coffeeeeeee!",
"icon" : "coffee-break",
"image" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fmorning.jpg?alt=media&token=d0da3d64-fc63-48c6-9d41-1460451dca64",
"title" : "Morning coffee"
},
"136" : {
"description" : "Official start of the conference. Greetings from the organizers, sponsors and partners.",
"icon" : "opening",
"image" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fopening.jpg?alt=media&token=aa52dd45-50c9-4e36-9485-c1f9138ecd6b",
"language" : "English",
"title" : "GDG DevFest Ukraine 2016 Opening"
},
"137" : {
"description" : "Afterparty is a great time to have some fun and meet new people",
"icon" : "party",
"image" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fparty.jpg?alt=media&token=8e413f01-373a-40bf-bb87-1dcf1d8e6af1",
"title" : "Afterparty & Networking"
},
"138" : {
"description" : "Make sure you won't miss closing ceremony, all gifts from out sponsors and partners will find their owners during this session.",
"image" : "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fclosing.jpg?alt=media&token=f02d014a-09ee-407e-88c7-b74093e00fed",
"title" : "Conference closing and contest winners announcements"
},
"139" : {
"description" : "",
"language" : "English",
"title" : "Keynote"
},
"140" : {
"description" : "TBD",
"language" : "English",
"title" : "TBD"
}
},
"speakers" : {
"eduardo_le_masson" : {
"bio" : "Engenheiro de Machine Learning e desenvolvedor de produtos de dados com 20 anos de experiência em desenvolvimento de software. Meu foco atualmente é na disseminação da cultura de dados, liderança de times de ML de alta performance e desenvolvimento de produtos inteligentes.",
"company" : "Globo.com",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"companyLogoUrl" : "https://globo.com",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Eduardo Le Masson",
"photo" : "/images/people/eduardo_masson.png",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/eduardo_masson.png",
"shortBio" : "Engenheiro de Machine Learning e desenvolvedor de produtos de dados com 20 anos de experiência em desenvolvimento de software.",
"socials" : [ {
"icon" : "github",
"link" : "https://github.com/edulemasson",
"name" : "Github"
}, {
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/edulemasson/",
"name" : "Linkedin"
} ],
"order" : 0,
"title" : "Big Data Product Owner"
},
"rafael_ruz" : {
"bio" : "Desenvolvedor e Lider Técnico na Cubo Tecnologia, Professor Universitário, Most Valuable Profissional (MVP), Instrutor Oficial Microsoft (MCT), Fundador do Coders in Rio, adora compartilhar experiências na área de desenvolvimento Web, Aplicativos Móveis e Cloud Solutions",
"company" : "Cubo Tecnologia",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Rafael Cruz",
"photo" : "/images/people/rafael_cruz.jpg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/rafael_cruz.jpg",
"shortBio" : "Desenvolvedor e Lider Técnico na Cubo Tecnologia, Professor Universitário, Most Valuable Profissional (MVP), Instrutor Oficial Microsoft (MCT), Fundador do Coders in Rio, adora compartilhar experiências na área de desenvolvimento Web, Aplicativos Móveis e Cloud Solutions",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/rafael.cruz.7334",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://www.github.com/rafaelcruz-net",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://www.twitter.com/rafaelcruz_net",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/rafaelcruzmvp",
"name" : "Linkedin"
}
],
"order" : 1,
"title" : "CTO"
},
"karina_tronkos" : {
"bio" : "Karina tem 22 anos, é estudante de ciência da computação e atualmente trabalha como UX Designer na Globo.com. Ganhou 3 anos seguidos o Scholarship da Apple para ir para a WWDC (a conferência de desenvolvedores iOS na California), por conta de seus projetos que juntam tecnologia e design. É a louca dos TEDs e artigos no Medium e é extremamente apaixonada por pizza e Star Wars. Entusiasta e apaixonada por esse universo de tech, design e inovação, possui um projeto no instagram chamado @nina_talks para compartilhar essa jornada e tudo que a empolga e inspira desse universo!",
"company" : "Globo.com",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Karina Tronkos",
"photo" : "/images/people/karina_tronkos.jpeg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/karina_tronkos.jpeg",
"shortBio" : "Karina tem 22 anos, é estudante de ciência da computação e atualmente trabalha como UX Designer na Globo.com. Ganhou 3 anos seguidos o Scholarship da Apple para ir para a WWDC (a conferência de desenvolvedores iOS na California), por conta de seus projetos que juntam tecnologia e design.",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/ktronkos",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/karinatronkos",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/tronkoskarina",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/karinatronkos/",
"name" : "Linkedin"
}
],
"order" : 2,
"title" : "UX Designer"
},
"yago_tome" : {
"bio" : "Desenvolvedor no Hurb (Hotel Urbano) e Co-fundador da startup Lutick, é formado em Ciência da Computação pela UERJ e trabalha com desenvolvimento de software desde 2014. Tem experiências em variadas tecnologias, hoje trabalha principalmente com Go, Node.js e React, com uso de gRPC, GraphQL e Event Sourcing. É apaixanado por desenvolver aplicações ecaláveis e de código limpo, também é um amante de opensource e compartilhamento de conhecimento.",
"company" : "Hurb (Hotel Urbano), Lutick",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Yago Tomé",
"photo" : "/images/people/yago_tome.jpg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/yago_tome.jpg",
"shortBio" : "Desenvolvedor no Hurb (Hotel Urbano) e Co-fundador da startup Lutick, é formado em Ciência da Computação pela UERJ e trabalha com desenvolvimento de software desde 2014. Tem experiências em variadas tecnologias, hoje trabalha principalmente com Go, Node.js e React, com uso de gRPC, GraphQL e Event Sourcing. É apaixanado por desenvolver aplicações ecaláveis e de código limpo, também é um amante de opensource e compartilhamento de conhecimento.",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/yg.tome",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/yagotome",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/yagotome",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/yagotome/",
"name" : "Linkedin"
}
],
"order" : 3,
"title" : "Desenvolvedor de Software, Co-fundador"
},
"dannie_magalhaes" : {
"bio" : "Dannie é pianista, escritora e atriz. Developer full time. Jogadora de vôlei nas horas vagas. Fã de cachorros e de standup comedy, essa carioca se apaixonou pelo Rails à primeira codada... Mas agora anda olhando pro Elixir... :)",
"company" : "Lemoney",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Dannie Magalhaes",
"photo" : "/images/people/dannie_magalhaes.jpeg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/dannie_magalhaes.jpeg",
"shortBio" : "Dannie é pianista, escritora e atriz. Developer full time. Jogadora de vôlei nas horas vagas. Fã de cachorros e de standup comedy, essa carioca se apaixonou pelo Rails à primeira codada... Mas agora anda olhando pro Elixir... :)",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/seliksy",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/seliksy",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/seliksy",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/danniemagalhaes/",
"name" : "Linkedin"
}
],
"order" : 5,
"title" : "Ruby On Rails FullStack Developer"
},
"tuxu" : {
"bio" : "Tuxu é designer na agência Ampfy. Inquieto e viciado em tecnologia, já passou por algumas agências e consultorias, trabalhando em projetos para diversas marcas e dispositivos. Além das demandas da agência, quando não está virando noites em Hackathons ele está estudando novas interações digitais.",
"company" : "Ampfy",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Tuxu",
"photo" : "/images/people/tuxu.jpg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/tuxu.jpg",
"shortBio" : "Tuxu é designer na agência Ampfy. Inquieto e viciado em tecnologia, já passou por algumas agências e consultorias, trabalhando em projetos para diversas marcas e dispositivos. Além das demandas da agência, quando não está virando noites em Hackathons ele está estudando novas interações digitais.",
"socials" : [ {
"icon" : "facebook",
"link" : "https://fb.me/otuxu",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/Tuxxu",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/tuxxu",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://linkedin.com/in/tuxxu",
"name" : "Linkedin"
}
],
"order" : 6,
"title" : "Designer"
},
"fabricio_veronez" : {
"bio" : "Trabalho na área de desenvolvimento de software HÁ mais de 12 anos. Ao longo desse periodo, sempre desenvolvi utilizando a plataforma .NET e com isso, sempre acompanhei a sua evolução. Atualmente, sou arquiteto de Software na Ebix. Além de participar ativamente na comunidade .NET como membro fixo do canal Coders in Rio e, como convidado, em outros canais, escrevo artigos periódicos em meu site pessoal http://veronez.dev",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"company" : "Ebix",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Fabrício Veronez",
"photo" : "/images/people/fabricio_veronez.jpg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/fabricio_veronez.jpg",
"shortBio" : "Trabalho na área de desenvolvimento de software HÁ mais de 12 anos. Ao longo desse periodo, sempre desenvolvi utilizando a plataforma .NET e com isso, sempre acompanhei a sua evolução. Atualmente, sou arquiteto de Software na Ebix. Além de participar ativamente na comunidade .NET como membro fixo do canal Coders in Rio e, como convidado, em outros canais, escrevo artigos periódicos em meu site pessoal http://veronez.dev",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/fabricioveronezdev",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/fabricioveronez",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/fabricioveronez",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/fabricioveronez/",
"name" : "Linkedin"
}
],
"order" : 7,
"title" : "Arquiteto de Aplicações"
},
"jessica_barbosa_souza" : {
"bio" : "Sou uma engenheira eletrônica formada pela UERJ, apaixonada por robôs e inteligência artificial. Durante bastante tempo estudei de técnicas mais elaboradas para otimizar os algoritmos dos projetos de robótica até que descobri que essa área tinha um ninho grande ( A famosa Ciência de dados). Venho nos últimos anos me aprimorando nesse setor e ajudando quem precisar, afinal o melhor uso para o conhecimento é o compartilhando. Atuo no Pyladies RJ e AfroPython RJ.",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Jéssica Barbosa de Souza",
"photo" : "/images/people/jessica_sousa.jpg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/jessica_sousa.jpg",
"shortBio" : "Sou uma engenheira eletrônica formada pela UERJ, apaixonada por robôs e inteligência artificial. Durante bastante tempo estudei de técnicas mais elaboradas para otimizar os algoritmos dos projetos de robótica até que descobri que essa área tinha um ninho grande ( A famosa Ciência de dados). Venho nos últimos anos me aprimorando nesse setor e ajudando quem precisar, afinal o melhor uso para o conhecimento é o compartilhando. Atuo no Pyladies RJ e AfroPython RJ.",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/jehbs1",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/jehbs",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://www.instagram.com/jehbs1/",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/jehbs/",
"name" : "Linkedin"
}
],
"order" : 8,
"title" : "Cientista de Dados"
},
"thiago_barradas" : {
"bio" : "Entusiasta de novas tecnologias na Mundipagg, evangelizador de Elasticsearch, amante de Docker, engenheiro de software .NET e cultuador do hábito de integrar e formar cabeças pensantes. Apaixonado por natureza e por música.",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"company" : "Mundipagg",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Thiago Barradas",
"photo" : "/images/people/thiago_barradas.jpeg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/thiago_barradas.jpeg",
"shortBio" : "Entusiasta de novas tecnologias na Mundipagg, evangelizador de Elasticsearch, amante de Docker, engenheiro de software .NET e cultuador do hábito de integrar e formar cabeças pensantes. Apaixonado por natureza e por música.",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/thbarradas",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/ThiagoBarradas ",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/_thiagobarradas",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/thiagobarradas/",
"name" : "Linkedin"
}
],
"order" : 9,
"title" : "Software Engineer"
},
"rully" : {
"bio" : "Apaixonado por tecnologia desde os 15 anos, aos 8 consertei o meu primeiro computador (ele não funcionava, então lavei ele com água e sabão hahaha), mas funciona até hoje, e é o meu orgulho. Programo em Java há 4 anos e tenho um imenso amor pela linguagem, há 2 anos comecei no maravilhoso mundo do desenvolvimento mobile com o Flutter, e então conheci a comunidade Flutterando, que me acolheu como parte da família, da qual faço parte até hoje.",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"company" : "",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Rully",
"photo" : "/images/people/rully.jpg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/rully.jpg",
"shortBio" : "Apaixonado por tecnologia desde os 15 anos, aos 8 consertei o meu primeiro computador (ele não funcionava, então lavei ele com água e sabão hahaha), mas funciona até hoje, e é o meu orgulho. Programo em Java há 4 anos e tenho um imenso amor pela linguagem, há 2 anos comecei no maravilhoso mundo do desenvolvimento mobile com o Flutter, e então conheci a comunidade Flutterando, que me acolheu como parte da família, da qual faço parte até hoje.",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/rully.alves.3",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/rullyalves",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/rully27279982",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/rully-alves-096328182/",
"name" : "Linkedin"
}
],
"order" : 10,
"title" : ""
},
"marco_paulo_ollivier" : {
"bio" : "Software Developer na OLX e formado pelo Instituto Infnet do Rio de Janeiro, trabalho com desenvolvimento de softwares há 8 anos. Durante minha carreira trabalhei com diversas linguagens como Java, JavaScript, Python e Go sendo essa última a que eu tenho focado mais nos últimos tempos. Recentemente tenho tentado me envolver mais na comunidade atuando como palestrante em eventos como o TDC, a GopherCon Brasil e no DevFest de 2018. Também fiz um trabalho de mentor no programa de aceleração em Go da CodeNation e sou co-organizador da Comunidade Go no Rio de Janeiro, a GopheRio. ",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"company" : "OLX",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Marco Paulo Ollivier",
"photo" : "/images/people/marco_olivier.jpg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/marco_olivier.jpg",
"shortBio" : "Software Developer na OLX e formado pelo Instituto Infnet do Rio de Janeiro, trabalho com desenvolvimento de softwares há 8 anos. Durante minha carreira trabalhei com diversas linguagens como Java, JavaScript, Python e Go sendo essa última a que eu tenho focado mais nos últimos tempos. Recentemente tenho tentado me envolver mais na comunidade atuando como palestrante em eventos como o TDC, a GopherCon Brasil e no DevFest de 2018. Também fiz um trabalho de mentor no programa de aceleração em Go da CodeNation e sou co-organizador da Comunidade Go no Rio de Janeiro, a GopheRio. ",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/marcopollivier",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/marcopollivier",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/marcopollivier",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://www.linkedin.com/in/marcopollivier/",
"name" : "Linkedin"
}
],
"order" : 11,
"title" : "Software Developer"
},
"renan_barros" : {
"bio" : "Desenvolvedor Android há 4 anos, fã de animações e jogos difíceis",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"company" : "Stone",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Renan Barros",
"photo" : "/images/people/renan_barros.jpg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/renan_barros.jpg",
"shortBio" : "Desenvolvedor Android há 4 anos, fã de animações e jogos difíceis",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/renanryo",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/renanrbs/",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://br.linkedin.com/in/renanrbs",
"name" : "Linkedin"
}
],
"order" : 11,
"title" : "Desenvolvedor Android"
},
"klaus_azlauskas" : {
"bio" : "Oie! Me chamo Klaus, mas meu nome científico é Klaus Kazlauskas. Tenho 26 anos, sou ambivertido, não tomo café ou álcool, mas adoro trocar uma ideia e ouvir as histórias dos outros. Também sou co-organizador do Angular RJ.",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"company" : "TOTVS",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Klaus Kazlauskas",
"photo" : "/images/people/klaus.png",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/klaus.png",
"shortBio" : "Oie! Me chamo Klaus, mas meu nome científico é Klaus Kazlauskas. Tenho 26 anos, sou ambivertido, não tomo café ou álcool, mas adoro trocar uma ideia e ouvir as histórias dos outros. Também sou co-organizador do Angular RJ.",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/klaus.kazlauskas",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/klauskpm",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/klauskpm",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://linkedin.com/klauskpm",
"name" : "Linkedin"
}
],
"order" : 12,
"title" : "Frontend Developer"
},
"bianca_gotaski" : {
"bio" : "Apaixonada por tecnologia e curiosa para aprender sempre novos conceitos e ferramentas. Trabalha com desenvolvimento desde 2017, cursa Análise e Desenvolvimento de Sistemas no Instituto Infnet e trabalha na IBM.",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"company" : "IBM",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Bianca Gotaski",
"photo" : "/images/people/bianca_gotaski.jpeg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/bianca_gotaski.jpeg",
"shortBio" : "Apaixonada por tecnologia e curiosa para aprender sempre novos conceitos e ferramentas. Trabalha com desenvolvimento desde 2017, cursa Análise e Desenvolvimento de Sistemas no Instituto Infnet e trabalha na IBM.",
"socials" : [ {
"icon" : "facebook",
"link" : "https://m.facebook.com/gotaskibianca",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/biancagotaski",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/biagotaski",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "https://br.linkedin.com/in/biancagotaski",
"name" : "Linkedin"
}
],
"order" : 13,
"title" : "Desenvolvedora Fullstack"
},
"gustavo_goncalves" : {
"bio" : "gustavomg.com",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"company" : "",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Gustavo de Miranda Gonçalves",
"photo" : "/images/people/gustavo_miranda.jpg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/gustavo_miranda.jpg",
"shortBio" : "http://gustavomg.com",
"socials" : [ {
"icon" : "facebook",
"link" : "http://gustavomg.com",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "http://gustavomg.com",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "http://gustavomg.com",
"name" : "Twitter"
},
{
"icon" : "linkedin",
"link" : "http://gustavomg.com",
"name" : "Linkedin"
}
],
"order" : 14,
"title" : "Analista de Sistemas Senior"
},
"victor_chaves" : {
"bio" : "Engenheiro de Computação pelo Instituto Militar de Engenharia, mestrando em matemática aplicada pela Fundação Getúlio Vargas, atualmente Engenheiro de Dados e Busca na Gupy.",
"companyLogo" : "/images/logos/gdg-lviv.svg",
"company" : "Busca na Gupy",
"country" : "Rio de Janeiro, Brasil",
"featured" : true,
"name" : "Victor Villas Bôas Chaves",
"photo" : "/images/people/victor_chaves.jpg",
"photoUrl" : "https://storage.googleapis.com/gdg-rio-de-janeiro.appspot.com/images/people/victor_chaves.jpg",
"shortBio" : "Engenheiro de Computação pelo Instituto Militar de Engenharia, mestrando em matemática aplicada pela Fundação Getúlio Vargas, atualmente Engenheiro de Dados e Busca na Gupy.",
"socials" : [ {
"icon" : "facebook",
"link" : "https://www.facebook.com/victor.vb.chaves",
"name" : "Facebook"
},
{
"icon" : "github",
"link" : "https://github.com/villasv/",
"name" : "Github"
},
{
"icon" : "twitter",
"link" : "https://twitter.com/_villasv",