-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
4612 lines (4611 loc) · 196 KB
/
db.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
{
"speakers" : {
"101": {
"id": 101,
"name": "Charlie GERARD",
"featured": true,
"company": "ThoughtWorks",
"companyLogo": "/images/logos/thoughtworks.png",
"country": "Australia",
"photoUrl": "/images/speakers/charlie-gerard.png",
"shortBio": "Hey I’m Charlie, currently Software Developer @ ThoughtWorks in Sydney. I am passionate about Creative Technologies, Creative Coding, Hardware and IoT.",
"bio": "Hey I’m Charlie, currently Software Developer @ ThoughtWorks in Sydney. I am passionate about Creative Technologies, Creative Coding, Hardware and IoT. When I’m not coding for a client’s project, I am mentoring at General Assembly, building projects using Arduino and other devices, writing tutorials to share what I learn or reading news. You can also check my [portfolio](http://charliegerard.github.io) if you’d like to know more about me :).",
"tags": [
"IoT"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/devdevcharlie"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/charliegerard"
}
]
},
"102": {
"id": 102,
"name": "Florina MUNTENESCU",
"featured": true,
"company": "Google",
"companyLogo": "/images/logos/google.svg",
"country": "UK",
"photoUrl": "/images/speakers/florina-muntenescu.jpg",
"shortBio": "Florina works at Google as an Android Developer Advocate. She has been writing code for more than 8 years, mostly for Android.",
"bio": "Florina works at Google as an Android Developer Advocate. She has been writing code for more than 8 years, mostly for Android. Florina keeps a strong focus on clean code and architecture. Previous work covered news at upday, payment solutions at payleven and navigation services at Garmin.",
"tags": [
"Android"
],
"badges": [
{
"name": "Android Advocate",
"description": "Android Developer Advocate"
}
],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/fmuntenescu"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/florina-muntenescu"
},
{
"icon": "website",
"name": "Website",
"link": "https://medium.com/@florina.muntenescu"
}
]
},
"103": {
"id": 103,
"name": "Svetlana ISAKOVA",
"featured": true,
"company": "JetBrains",
"companyLogo": "/images/logos/jetbrains.png",
"country": "Russia",
"photoUrl": "/images/speakers/svetlana-isakova.png",
"shortBio": "Svetlana Isakova began as a member of the Kotlin compiler team, and is now a developer advocate for JetBrains.",
"bio": "Svetlana Isakova began as a member of the Kotlin compiler team, and is now a developer advocate for JetBrains. She teaches Kotlin and speaks at conferences worldwide, and is a co-author of the book \"Kotlin in Action\".",
"tags": [
"Kotlin"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/sveta_isakova"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/svtk"
}
]
},
"104": {
"id": 104,
"name": "Alex QIN",
"featured": true,
"company": "Code Cooperative",
"companyLogo": "/images/logos/code-cooperative.jpg",
"country": "USA",
"photoUrl": "/images/speakers/alex-qin.jpg",
"shortBio": "Alex Qin is a Brooklyn based programmer, educator, and public speaker.",
"bio": "Alex Qin is a Brooklyn based programmer, educator, and public speaker. She believes in universal access to computer science education and in the importance of building technology for good. She is the founder of the Code Cooperative, an organization that teaches formerly incarcerated individuals tech literacy and coding as a means of liberation. She is on the Board of the Computer Science Teachers Association of NYC and on the Associate Board of Mouse. She recently left Gakko where she was the Director of Technology to work on the Code Cooperative full time. Prior to that, she was the Web Engineering Team Lead at Skillshare, and the Curriculum Director at Coalition for Queens. She holds a B.A. in Computer Science from New York University.",
"tags": [
"Diversity",
"Web"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/alexqin"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/noidontdig"
},
{
"icon": "linkedin",
"name": "LinkedIn",
"link": "https://www.linkedin.com/in/alexandraqin"
},
{
"icon": "website",
"name": "Website",
"link": "http://alexq.in/"
}
]
},
"105": {
"id": "105",
"name": "Gaëtan CIEPLICKI",
"country": "France",
"photoUrl": "images/speakers/Gatean_CIEPLICKI.jpg",
"shortBio": "Multiinstrumentiste et compositeur de musiques instrumentales depuis plus de 15 ans, Gaëtan Cieplicki s’est investi dans divers projets, aussi bien musicaux que pédagogiques, dans le but de partager et d’échanger les pratiques de création musicale.",
"bio": "Multiinstrumentiste et compositeur de musiques instrumentales depuis plus de 15 ans, Gaëtan Cieplicki s’est investi dans divers projets, aussi bien musicaux que pédagogiques, dans le but de partager et d’échanger les pratiques de création musicale.\n\nCes 10 dernières années, il s’est principalement consacré à son projet solo Divag, réalisant des compositions de musique 8bit, sur la console de jeux Nintendo Gameboy et sur Atari ST. \nOutre son activisme dans l’organisation de soirées “micromusic” en région Parisienne, il s’est donné en concert dans toute l’Europe, et a animé différents ateliers initiant le public à la création de musique 8bit, et plus largement à la création musicale.\n\nConcepteur-développeur informatique de métier, et friand de bricolages électroniques, il a créé de nombreux projets tels que :\n - le manège à rythme : installation mêlant technologie et mécanique, pour apprendre à créer de la musique en s’amusant\n - les robots danseurs : marionnettes géantes à faire danser, à l'aide de commandes rudimentaires et intuitives, adaptés aux petits et grands\n - projets divers autour de la musique, la programmation, l'électronique, la mécanique...\n\nProjets principaux / expériences pédagogiques :\nhttps://drive.google.com/file/d/0B-_0VGM-u3w6TlZtTFk4VEV3ZGV0UlNEc0tKYkEtVGFHTlNN/view?usp=sharing\n",
"tags": [],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/GatanDivag"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/divag"
}
]
},
"106": {
"id": "106",
"name": "Rodolphe BUNG",
"company": "Egencia",
"companyLogo": "/images/logos/egencia.jpg",
"country": "France",
"photoUrl": "images/speakers/Rodolphe_BUNG.jpg",
"shortBio": "Développeur fullstack expérimenté, j'ai travaillé sur plusieurs sites internet « grand public » et suis sensible aux problématiques de performance relatives à ce type de site.",
"bio": "Développeur fullstack expérimenté, j'ai travaillé sur plusieurs sites internet « grand public » et suis sensible aux problématiques de performance relatives à ce type de site.\n\nAdepte des méthodes agiles et certifié ScrumMaster, j'aime le partage de connaissances et suis partisan de l'amélioration continue.\n\nInitialement très orienté Java/Spring, je me passionne actuellement sur l'écosystème JavaScript (en particulier NodeJS, React) qui offre de nombreuses possibilités (développement front et back, application mobile native ou desktop, etc.)",
"tags": [],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/rodbung"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/rbung"
}
]
},
"107": {
"id": "107",
"name": "Matthieu GIOANI",
"company": "Fenikso",
"companyLogo": "/images/logos/fenikso.png",
"country": "France",
"photoUrl": "images/speakers/Matthieu_GIOANI.jpg",
"shortBio": "Matthieu Gioani, designer, coach & facilitateur, souhaite rendre le monde plus simple et réjouissant par l’accompagnement des équipes projet et des managers sur les problématiques d’émergence, de design et d’innovation depuis bientôt 10 ans.",
"bio": "Matthieu Gioani, designer, coach & facilitateur, souhaite rendre le monde plus simple et réjouissant par l’accompagnement des équipes projet et des managers sur les problématiques d’émergence, de design et d’innovation depuis bientôt 10 ans.",
"tags": [
"Design"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/Matt_Gio"
}
]
},
"108": {
"id": "108",
"name": "Marc LEBRUN",
"country": "France",
"photoUrl": "images/speakers/Marc_LEBRUN.png",
"company": "Digitemis",
"companyLogo": "/images/logos/digitemis.png",
"shortBio": "Passionné de sécurité et pentester depuis 6 ans, Marc pilote l'équipe audit technique de Digitemis. Entre deux missions de tests d'intrusion, il développe les méthodologies et l’outillage intrusif nécessaires à leur réalisation et participe à la formation et la montée en compétence des autres équipes.",
"bio": "Passionné de sécurité et pentester depuis 6 ans, Marc pilote l'équipe audit technique de Digitemis. Entre deux missions de tests d'intrusion, il développe les méthodologies et l’outillage intrusif nécessaires à leur réalisation et participe à la formation et la montée en compétence des autres équipes.",
"tags": [
"Security"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/MarcLebrun"
},
{
"icon": "linkedin",
"name": "LinkedIn",
"link": "https://www.linkedin.com/in/marc-lebrun-a719a41a"
}
]
},
"109": {
"id": "109",
"name": "Goulwen LE FUR",
"company": "Digitemis",
"companyLogo": "/images/logos/digitemis.png",
"country": "France",
"photoUrl": "images/speakers/Goulwen_LE_FUR.jpg",
"shortBio": "Goulwen a récemment intégré la R&D Digitemis en tant que Responsable Produit.",
"bio": "Goulwen a récemment intégré la R&D Digitemis en tant que Responsable Produit.\n\nAuparavant développeur/consultant pendant 8 ans puis expert avant-vente dans l'édition logicielle open source, il est désormais à la tête de la R&D Digitemis où pilote le développement des deux solutions SaaS de la société.\n\nPassionné de développement, de belles interfaces et d'outils faciles à prendre en main pour les utilisateurs, il profite de son immersion dans le monde de la cybersécurité pour intégré ces aspects bien particuliers dans ses solutions.\n\n\n\n",
"tags": [
"Security"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/glefur_"
}
]
},
"110": {
"id": "110",
"name": "Juarez FILHO",
"company": "ERS",
"country": "Ireland",
"photoUrl": "images/speakers/Juarez_Filho.jpg",
"shortBio": "First Firebase GDE in South America.",
"bio": "First Firebase GDE in South America. Front-end Engineer. Always traveling around.\nPassionate 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.",
"tags": [
"Firebase",
"Web"
],
"badges": [
{
"name": "GDE",
"description": "Google Developer Expert"
}
],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/juarezpaf"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/juarezpaf"
}
]
},
"111": {
"id": "111",
"name": "Geoffrey CROFTE",
"company": "Maltem",
"companyLogo": "/images/logos/maltem.png",
"country": "Luxembourg",
"photoUrl": "images/speakers/Geoffrey_CROFTE.jpg",
"shortBio": "UX/UI Designer travaillant à Luxembourg spécialisé en performance des interfaces et micro-interactions.",
"bio": "UX/UI Designer travaillant à Luxembourg, j’ai travaillé pendant 8 ans sur des projets et à des postes très variés.\nMes différentes casquettes m’ont permis de découvrir mon métier de points de vue très différents passant de Front-End Developer à Chef de projet Web.\n\n J'ai un background d'intégrateur web soucieux de la performance de ses interfaces et me spécialise depuis maintenant 1 an dans l'expérience utilisateur et les micro-interactions.\n\n Je suis également développeur de plugins pour le CMS WordPress, Ninja (pour de vrai) et danseur de licorne (pour de vrai aussi) à mes heures perdues.\n\nJe partage également plein de choses sur mon blog et les réseaux sociaux.\n",
"tags": [
"UX",
"UI"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/geoffrey_crofte"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/geoffreycrofte"
},
{
"icon": "website",
"name": "Website",
"link": "https://geoffrey.crofte.fr/en/"
}
]
},
"112": {
"id": "112",
"name": "Etienne CARON",
"company": "Shopify",
"companyLogo": "/images/logos/shopify.png",
"country": "Canada",
"photoUrl": "images/speakers/Etienne_Caron.jpg",
"shortBio": "Etienne Caron is a developer lead at Shopify, a popular Canadian e-commerce company.",
"bio": "Etienne Caron is a developer lead at Shopify, a popular Canadian e-commerce company. He is also part of Google's Developer Expert program, and an instructor for Caster.io\n\nEtienne has been an active member of the Android developer community in Montreal since 2010, and regularly devotes his time to mentoring startups, developers and students in the mobile space.\n\n3D animation, procedural content generation and VR are some of his hobbies, and he loves introducing other developers to this fascinating field. ",
"tags": [
"Android"
],
"badges": [
{
"name": "GDE",
"description": "Google Developer Expert"
}
],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/kanawish"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/kanawish"
}
]
},
"113": {
"id": "113",
"name": "Jordane GRENAT",
"company": "Viseo",
"companyLogo": "/images/logos/viseo.png",
"country": "France",
"photoUrl": "images/speakers/Jordane_GRENAT.jpg",
"shortBio": "Passionné par l'écosystème Web",
"bio": "Passionné par l'écosystème Web, je suis les dernières nouveautés et tendances grâce à une veille technologique quotidienne. Je m'intéresse tout particulièrement à tout ce qui tourne autour des usages du JavaScript (frameworks web front, tools, Node.js, ...)",
"tags": [
"Web"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/JoGrenat"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/jgrenat"
}
]
},
"114": {
"id": "114",
"name": "Sébastien RAVOUX",
"company": "Onepoint",
"companyLogo": "/images/logos/onepoint.png",
"country": "France",
"photoUrl": "images/speakers/Sébastien_Ravoux.jpg",
"shortBio": "Leader Expertises & Innovations @ Onepoint Atlantique \n\nJ'anime des équipes d'experts transverses pour développer l'innovation, l'industrialisation, la capitalisation sur des projets de toutes tailles.",
"bio": "Leader Expertises & Innovations @ Onepoint Atlantique \n\nJ'anime des équipes d'experts transverses pour développer l'innovation, l'industrialisation, la capitalisation sur des projets de toutes tailles.\nMon cœur technologique penche historiquement vers les solutions Microsoft (.Net, Azure, SharePoint, C#), mais aussi (ce n'est plus incompatible !) vers des solutions Open Source, l'IoT, les Réalités Virtuelles/Mixtes.\n",
"tags": [
"IoT"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/stounba"
}
]
},
"115": {
"id": "115",
"name": "Jérémy GIRERD-REY",
"company": "Onepoint",
"companyLogo": "/images/logos/onepoint.png",
"country": "France",
"photoUrl": "images/speakers/Jérémy_GIRERD-REY.png",
"shortBio": "Développeur mobile Android & .Net chez Onepoint, je m’intéresse depuis toujours aux technologies émergentes.",
"bio": "Développeur mobile Android & .Net chez Onepoint, je m’intéresse depuis toujours aux technologies émergentes. Je participe régulièrement à des concours de création vidéo-ludique (Ludum Dare). Je suis impliqué depuis plus de 2 ans dans les activités du pôle Expertise & Innovation de Onepoint, dans les domaines des Interfaces Naturelles, des mondes immersifs (AR/VR/MR), en expérimentant et évangélisant notamment des solutions comme ARCore, Unity 3D, Buddy, Hololens.",
"tags": [
"AR",
"VR"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/crucknuk"
},
{
"icon": "linkedin",
"name": "LinkedIn",
"link": "https://www.linkedin.com/in/jérémy-girerd-rey-059295125/"
}
]
},
"116": {
"id": "116",
"name": "Adarsh FERNANDO",
"company": "Google",
"companyLogo": "/images/logos/google.svg",
"country": "USA",
"photoUrl": "images/speakers/Adarsh_Fernando.jpg",
"shortBio": "Adarsh works at Google for Developer Relations.",
"bio": "Adarsh works at Google for Developer Relations. He's responsible for writing official documentation for the Android build system using Gradle, Android Studio, Android app Bundles, and Dynamic Delivery.",
"tags": [
"Android"
],
"badges": [
{
"name": "Developer Relations",
"description": "Google Developer Relations"
}
],
"socials": []
},
"117": {
"id": "117",
"name": "David GAGEOT",
"company": "Google",
"companyLogo": "/images/logos/google.svg",
"country": "France",
"photoUrl": "images/speakers/David_Gageot.jpg",
"shortBio": "David is a Developer Advocate at Google Cloud. He's working on Containers Tools.",
"bio": "David is a Developer Advocate at Google Cloud. He's working on Containers Tools. Previously, he helped open the R&D office of Docker in Paris",
"tags": [
"Cloud"
],
"badges": [
{
"name": "Google Advocate",
"description": "Google Developer Advocate"
}
],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/dgageot"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/dgageot"
},
{
"icon": "website",
"name": "Website",
"link": "https://blog.javabien.net"
}
]
},
"118": {
"id": "118",
"name": "Logan MAUZAIZE",
"company": "MonkeyPatch",
"companyLogo": "/images/logos/monkeypatch.png",
"country": "France",
"photoUrl": "images/speakers/Logan_MAUZAIZE.jpg",
"shortBio": "Amateur de Java avant le diplôme, j'ai distribué mes conseils lors de mes missions (expert technique, dev leader) et sur les forums.",
"bio": "Amateur de Java avant le diplôme, j'ai distribué mes conseils lors de mes missions (expert technique, dev leader) et sur les forums. Notamment sur Developpez.com, sur lequel je fais partie de l'équipe Java à la fois en tant que modérateur mais aussi rédacteur.",
"tags": [
"Java"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/LoganMzz"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/loganmzz"
}
]
},
"119": {
"id": "119",
"name": "Sébastien CHARRIER",
"company": "bump.sh",
"country": "France",
"photoUrl": "images/speakers/Sébastien_Charrier.jpg",
"shortBio": "Alternant entre des jobs de développeur ou de product owner depuis des années, Sébastien est un amoureux des produits simples et efficaces.",
"bio": "Alternant entre des jobs de développeur ou de product owner depuis des années, Sébastien est un amoureux des produits simples et efficaces.\n\nIl a travaillé deux ans en tant que développeur sur l’API de Trainline (ex Capitaine Train), avant de se lancer dans une nouvelle aventure avec bump.sh.",
"tags": [],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/scharrier"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/scharrier"
}
]
},
"120": {
"id": "120",
"name": "Sylvain NIEUWLANDT",
"company": "SFEIR",
"companyLogo": "/images/logos/sfeir.png",
"country": "France",
"photoUrl": "images/speakers/Sylvain_Nieuwlandt.jpg",
"shortBio": "Passionné d'informatique, de jeux vidéos et d'autres mondes depuis tout petit, je passe mon temps à bidouiller des petits univers en VR et à tester tous les nouveaux frameworks VR/AR disponibles, dans le seul but de pouvoir un jour voir passer le Tardis depuis la plateforme d'observation de mon StarDestroyer.",
"bio": "Passionné d'informatique, de jeux vidéos et d'autres mondes depuis tout petit, je passe mon temps à bidouiller des petits univers en VR et à tester tous les nouveaux frameworks VR/AR disponibles, dans le seul but de pouvoir un jour voir passer le Tardis depuis la plateforme d'observation de mon StarDestroyer.",
"tags": [
"AR",
"VR"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/an0rak_dev"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/an0rak-dev"
}
]
},
"121": {
"id": "121",
"name": "Laurent GRANGEAU",
"company": "Sogeti",
"companyLogo": "/images/logos/sogeti.png",
"country": "France",
"photoUrl": "images/speakers/Laurent_Grangeau.jpg",
"shortBio": "Laurent Grangeau is a Cloud Solution Architect with more than 10+ years of experience.",
"bio": "Laurent Grangeau is a Cloud Solution Architect with more than 10+ years of experience. Former Java developer, he has since developed in .NET, with Agile and DevOps mindsets. He has been experimenting with cloud providers for more than 5+ years. Docker enthusiast from the beginning, he has experienced with building microservices and distributed systems. He loves to automate things and run distributed applications at scale.",
"tags": [
"Cloud"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/laurentgrangeau"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/laurentgrangeau"
}
]
},
"122": {
"id": "122",
"name": "Estelle LANDRY",
"company": "Elium",
"companyLogo": "/images/logos/elium.png",
"country": "France",
"photoUrl": "images/speakers/Estelle_LANDRY.jpg",
"shortBio": "Passionée par mon métier de Product Owner, par l'UX (User eXpérience) et le GameStorming, j'aime participer à l'élaboration d'un produit en étant le lien entre les utilisateurs et les développeurs.",
"bio": "Passionée par mon métier de Product Owner, par l'UX (User eXpérience) et le GameStorming, j'aime participer à l'élaboration d'un produit en étant le lien entre les utilisateurs et les développeurs.\n\nSpeakeuse en conférence tech, membre des Duchess France, de SunnyTech et du MeetUp UX Flupa Montpellier, je continue à me perfectionner et à discuter de nouvelles méthodes ou technologies de l'IT.\n",
"tags": [
"UX"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/estelandry"
},
{
"icon": "linkedin",
"name": "LinkedIn",
"link": "https://www.linkedin.com/in/estelle-landry-61866b71/"
}
]
},
"123": {
"id": "123",
"name": "Stéphanie WALTER",
"company": "",
"country": "Luxembourg",
"photoUrl": "images/speakers/Stéphanie_w.jpg",
"shortBio": "UX et UI Designer, spécialisée en design d'interface et optimisation mobile, actuellement située à Luxembourg.",
"bio": "UX et UI Designer, spécialisée en design d'interface et optimisation mobile, actuellement située à Luxembourg. Je place l'utilisateur au coeur de mon processus pour créer des produits faciles et agréables à utiliser. Mes compétences en HTML CSS me permettent de faire le lien entre design et développement. Passionnée par mon travail, je partage mon savoir sur mon blog, en conférence dans le monde entier et dans mes cours. ",
"tags": [
"UX",
"UI"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/walterstephanie"
},
{
"icon": "linkedin",
"name": "LinkedIn",
"link": "https://www.linkedin.com/in/stephaniewalterpro/"
},
{
"icon": "website",
"name": "Website",
"link": "https://stephaniewalter.design"
}
]
},
"124": {
"id": "124",
"name": "Pierre ZEMB",
"company": "OVH",
"companyLogo": "/images/logos/ovh.png",
"country": "France",
"photoUrl": "images/speakers/Pierre_Zemb.jpg",
"shortBio": "Pierre Zemb is a software engineer at OVH.",
"bio": "Pierre Zemb is a software engineer at OVH. He’s working with the Metrics Data Platform team to build reliable distributed systems and analytics solution. He's also giving a hand to differents local events, such as the local Startup Weekend, Devoxx4Kids and FinistDevs.",
"tags": [
"Big Data"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/PierreZ"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/PierreZ"
},
{
"icon": "linkedin",
"name": "LinkedIn",
"link": "https://www.linkedin.com/in/pierre-zemb-8004125b"
},
{
"icon": "website",
"name": "Website",
"link": "https://tagazok.github.io"
}
]
},
"125": {
"id": "125",
"name": "Aurélien HEBERT",
"company": "OVH",
"companyLogo": "/images/logos/ovh.png",
"country": "France",
"photoUrl": "images/speakers/Aurelien_HEBERT.jpg",
"shortBio": "Aurélien Hébert started as a software engineer in the Alten R&D team on a Big data project.",
"bio": "Aurélien Hébert started as a software engineer in the Alten R&D team on a Big data project. This project was about discovering pattern in mobility data. After this first experience he wanted to work on a technical project including more sensors data. He joined a Startup (Cityzen Data) building an open source Geo-Time-Series database (Warp 10) and its associated language to manipulate it. Here he got data, a lot of them. He joinded recently the OVH metrics team. He also like to share his experience in local conference such as FinistDev or meetups.",
"tags": [
"Big Data"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/AurrelH95"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/aurrelhebert"
}
]
},
"126": {
"id": "126",
"name": "Horacio GONZALEZ",
"company": "OVH",
"companyLogo": "/images/logos/ovh.png",
"country": "France",
"photoUrl": "images/speakers/Horacio_Gonzalez.jpg",
"shortBio": "Malgré ce que son accent espagnol bien prononcé peut suggérer, Horacio est arrivé en France il y a plus d'une quinzaine d'années.",
"bio": "Malgré ce que son accent espagnol bien prononcé peut suggérer, Horacio est arrivé en France il y a plus d'une quinzaine d'années. Passionné d'informatique, dans laquelle il est tombé depuis tout petit, il a découvert le développement web en 1997 et depuis il n'a pas arrêté de bosser autour.\n\nAprès quelques années comme tech leader de la partie frontend de [@warp10io](https://twitter.com/warp10io/) chez [Cityzen Data](https://twitter.com/cityendata/), Horacio a rejoint [OVH](](https://twitter.com/ovh/) en janvier 2018 en tant que Developer Advocate. Il est cofondateur du [FinistDevs](https://twitter.com/finistdevs/), le JUG/GDG français le plus proche de la Silicon Valley.\n\nPassionné par le développement web et tout ce qui gravite autour des composants web, Horacio est [Google Developer Expert (GDE)](https://developers.google.com/experts/people/horacio-gonzalez) en Web Technologies et Flutter.\n\nVous pouvez voir mes dernières talks sur [mon profil Notist](https://noti.st/lostinbrittany)",
"tags": [
"Web",
"Flutter"
],
"badges": [
{
"name": "GDE",
"description": "Google Developer Expert"
}
],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/LostInBrittany"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/LostInBrittany"
},
{
"icon": "website",
"name": "Website",
"link": "https://lostinbrittany.org/blog/"
}
]
},
"127": {
"id": "127",
"name": "Gautier DE SAINT MARTIN LACAZE",
"company": "Freelance",
"country": "France",
"photoUrl": "images/speakers/Gautier_MARTIN.png",
"shortBio": "Développeur freelance passionné, Gautier travaille principalement sur les technologies Java et JavaScript.",
"bio": "Développeur freelance passionné, Gautier travaille principalement sur les technologies Java et JavaScript. Afin de rester au fait des nouveautés, il participe régulièrement à des conférences nantaises ou nationales. Il coorganise également le Nantes JUG depuis juin 2014.\n\nAyant appris à dompter l'IDE Eclipse lors de ses premières années de travail, il contribue aujourd'hui à l'amélioration de son outil de travail via des patchs et la formation de ses clients.",
"tags": [
"Java",
"JS"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/darkjabberwock"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/jabby"
},
{
"icon": "website",
"name": "Website",
"link": "http://www.jabby-techs.fr"
}
]
},
"128": {
"id": "128",
"name": "Adrien PESSU",
"company": "Freelance",
"country": "France",
"photoUrl": "images/speakers/Adrien_PESSU.jpg",
"shortBio": "Adrien est passionné de développement, en particulier Java, Kotlin et Angular.",
"bio": "Adrien est passionné de développement, en particulier Java et Web. Il a évolué pendant plusieurs années en société de services chez un éditeur logiciel, il s’est lancé dans l’aventure freelance. Vous pourrez aussi le croiser dans certains meetups tech",
"tags": [
"Web",
"Java"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/adrien_pe"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/adrienpessu"
},
{
"icon": "linkedin",
"name": "LinkedIn",
"link": "https://www.linkedin.com/in/adrien-pessu"
},
{
"icon": "website",
"name": "Website",
"link": "https://adrien.pessu.net"
}
]
},
"129": {
"id": "129",
"name": "Lucas FERNANDES DA COSTA",
"company": "Converge.io",
"companyLogo": "/images/logos/converge.io.png",
"country": "UK",
"photoUrl": "images/speakers/Lucas_Fernandes_Da_Costa.jpg",
"shortBio": "I am a Brazilian software engineer living in London. I breathe JavaScript and I am passionate about open source.",
"bio": "I am a Brazilian software engineer living in London. I breathe JavaScript and I am passionate about open source. I'm also a core team member of [Chai.js](https://github.com/chaijs/chai) and [Sinon.js](https://github.com/sinonjs/sinon), two of the most popular libraries in the JS ecosystem, and I'm always trying to find better and more efficient ways to solve problems. \n\nAs I can't stay away from writing the best code I'm able to, you can find me almost every day on [GitHub](https://github.com/lucasfcosta), contributing to open-source projects and also helping to translate and produce content for other developers.\n\nI also write some blog posts about software engineering in general, JavaScript and open-source at [lucasfcosta.com](http://lucasfcosta.com).\n\nSince I love exchanging experiences and knowledge with other engineers I've spoken at some major conferences around the world such as FluentConf in San Jose - CA, The Conf São Paulo, NebraskaJS, FrontEnd United Utrecht and many more.\n\nWhenever I'm not busy with work, talks or open-source you will probably find me reading a book in a random park in East London.\n\n“Strive to be lazy” this is my motto.",
"tags": [
"Web",
"JS"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/lfernandescosta"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/lucasfcosta"
},
{
"icon": "website",
"name": "Website",
"link": "http://lucasfcosta.com"
}
]
},
"130": {
"id": "130",
"name": "Anta AIDARA",
"country": "France",
"company": "Freelance",
"photoUrl": "images/speakers/anta_aidara.jpg",
"shortBio": "Freelance fullstack developer",
"bio": "Freelance fullstack developer",
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/AidaraAnta"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/antamb"
}
]
},
"131": {
"id": "131",
"name": "Guillaume LAFORGE",
"company": "Google",
"companyLogo": "/images/logos/google.svg",
"country": "France",
"photoUrl": "images/speakers/Guillaume_Laforge.jpg",
"shortBio": "During the day, **Guillaume Laforge** is **Developer Advocate** for **Google Cloud Platform**, covering a wide range of topics from serverless approaches, to chatbots or machine learning.",
"bio": "During the day, **Guillaume Laforge** is **Developer Advocate** for **Google Cloud Platform**, covering a wide range of topics from serverless approaches, to chatbots or machine learning. At night, Guillaume wears his **Apache Groovy** hat, or you can hear him make jokes on the French podcast **Les Cast Codeurs** !",
"tags": [
"Cloud"
],
"badges": [
{
"name": "Google Advocate",
"description": "Google Developer Advocate"
}
],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/glaforge"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/glaforge"
},
{
"icon": "website",
"name": "Website",
"link": "http://glaforge.appspot.com"
}
]
},
"132": {
"id": "132",
"name": "Benjamin CAVY",
"country": "France",
"photoUrl": "images/speakers/Benjamin_Cavy.jpg",
"shortBio": "Développeur full-stack",
"company": "Serli",
"companyLogo": "/images/logos/serli.png",
"bio": "Benjamin est développeur full-stack chez Serli. Il s’intéresse en ce moment particulièrement à l’écosystème JavaScript : reactjs, vuejs…",
"tags": [
"Web",
"JS"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/benjamin_cavy"
}
]
},
"133": {
"id": "133",
"name": "Fanny DEMEY PLUVINAGE",
"company": "7Digital",
"country": "France",
"photoUrl": "images/speakers/Fanny_Demey_Pluvinage.jpg",
"shortBio": "Je suis développeuse mobile chez 7digital depuis 1 an où je crée des applications de streaming de musique pour des clients comme Deedo, Warner, Universal.",
"bio": "Je suis développeuse mobile chez 7digital depuis 1 an où je crée des applications de streaming de musique pour des clients comme Deedo, Warner, Universal. Avant ça j'ai fait un peu de tout : chef de projet, coach agile, developpeuse backend.\nJe suis également présidente du GDG Lille et j'organise activement le Devfest Lille.",
"tags": [
"Mobile"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/FannyDemey"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/FannyDemey"
}
]
},
"134": {
"id": "134",
"name": "Alexandre LAFOSSE",
"country": "France",
"company": "Speachme",
"companyLogo": "/images/logos/speachme.png",
"photoUrl": "images/speakers/Alexandre_LAFOSSE.jpg",
"shortBio": "Lead mobile developer chez Speachme",
"bio": "Lead mobile developer chez Speachme",
"tags": [],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/lafalex"
}
]
},
"135": {
"id": "135",
"name": "Sandra DUPRÉ",
"company": "Octo Technology",
"companyLogo": "/images/logos/octo.png",
"country": "France",
"photoUrl": "images/speakers/Sandra_DUPRÉ.jpg",
"shortBio": "Développeuse Android au sein d'Octo Technology, Sandra a participé au développement d'applications à fort trafic.",
"bio": "Développeuse Android au sein d'Octo Technology, Sandra a participé au développement d'applications à fort trafic. Elle travaille sur comment ajouter toujours plus d'intelligence dans nos applications, avec TensorFlow Lite et ML Kit. Elle écrites articles à ce sujet.",
"tags": [
"Android",
"Kotlin"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/SandraDdev"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/SandraJam"
}
]
},
"136": {
"id": "136",
"name": "Olivier HALLIGON",
"company": "Niji",
"companyLogo": "/images/logos/niji.jpg",
"country": "France",
"photoUrl": "images/speakers/Olivier_HALLIGON.jpg",
"shortBio": "Olivier is an iOS Architect & Evangelist who loves sharing his passion for iOS and Swift.",
"bio": "Olivier is an iOS Architect & Evangelist who loves sharing his passion for iOS and Swift.\n\nHe is the author of multiple iOS libraries like OHHTTPStubs and Reusable and creator of the SwiftGen tool.\nHe is also a Core Contributor alumni at [CocoaPods](https://cocoapods.org) and a current Core Contributor on [fastlane](https://github.com/fastlane/fastlane).\n\nWhen he has some time left, he likes to share technical ideas on [his blog](http://alisoftware.github.io).",
"tags": [
"iOS"
],
"badges": [],
"socials": [
{
"icon": "twitter",
"name": "Twitter",
"link": "https://twitter.com/aligatr"
},
{
"icon": "github",
"name": "Github",
"link": "https://github.com/AliSoftware"