-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1155 lines (826 loc) · 43.5 KB
/
index.html
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
<!DOCTYPE html>
<html>
<!-- Head: Instructions for website behaviour -->
<head>
<title> BIICS: Bordeaux Institute of International Cybersecurity Studies </title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylespeaker.css" media="screen">
<style scoped> @import url("vmarsterson.github.io/stylesheet.css"); </style>
<style scoped> @import url("vmarsterson.github.io/stylespeaker.css"); </style>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Bordeaux Institute of International Cybersecurity Studies (BIICS) official website, with detailed information on upcoming conference TechTalks: The Politics of Cybersecurity">
<meta name="title" content="BIICS: Bordeaux Institute of International Cybersercurity Studies">
<meta name="author" content="Verity Marsterson">
<meta name="keywords" content="Cybersecurity,Politics,Conference,BIICS,Bordeaux,Institute,Academic,International"
</head>
<!-- Facebook image -->
<meta property="og:image" content="img/IconLogo.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="810">
<meta property="og:image:height" content="810">
<meta property="og:type" content="website" />
<meta property="og:url" content="https://biicscyber.com/"/>
<meta property="og:title" content="BIICS: Bordeaux Institute of International Cybersecurity Studies"/>
<meta property="og:description" content="Bordeaux Institute of International Cybersecurity Studies (BIICS) official website, with detailed information on upcoming conference TechTalks: The Politics of Cybersecurity"/>
<!-- Navbar -->
<div class="navbar">
<div class="dropdown">
<button class="dropbtn"><img class="menudrop" src="img/menu.png" alt="Dropdown menu">
</button>
<div class="dropdowncontent">
<a href="#Home"><img class="logobar" src="img/Logo.png" alt="BIICS logo" height="40px" width="40px"><p>Home.</p></a>
<a href="#About">About</a>
<a href="#Agenda">Agenda</a>
<a href="#Workshops">Workshops</a>
<a href="#Speakers">Speakers</a>
<a href="#partners">Partners</a>
<a href='#location'>Location</a>
<a href='#followus'>Social media</a>
</div>
</div>
</div>
<!-- Header: Banner -->
<div>
<a href="https://www.eventbrite.co.uk/e/biics-2019-conference-tickets-58101064849" target="_blank"><img class="mtechtalks" src="img/horizontallogo.png" alt="Tech Talks: The Politics of Cybersecurity"><img class="dtechtalks" src="img/posterlogocolors.png" alt="Tech Talks: The Politics of Cybersecurity"><img class="wires" src="img/wirecorners.png" alt="wires"></a>
</div>
<!-- Button -->
<div class="click">
<a href="https://www.eventbrite.co.uk/e/biics-2019-conference-tickets-58101064849" target="_blank">register for free</a>
</div>
<br><br>
<img src="img/partners.jpeg" alt="partners" class="partners">
<!-- Home - Turquoise -->
<a name="Home"></a>
<div class="turquoisegrad bluetext">
<h1> Cybersecurity, <br> Unlocked. </h1>
<h2> Learn more about our project. </h2>
</div>
<p class="bluetext"> <br><b>In a time when</b> it is predicted that by 2020 the number of connected devices will reach 21 billion, it cannot be denied that cybersecurity is becoming more and more critical to both individuals and companies.
<br><br>
<b> On the 12th-13th September 2019,</b> we at the Bordeaux Institute of International Cybersecurity Studies (BIICS) will be hosting our first <b>FREE</b> annual conference; 'Tech Talks: The Politics of Cybersecurity'.
<br><br>
<b> By bringing together cybersecurity experts </b> from a wide range of professions, our conference will provide a platform for both experts and novices to learn about the different streams of tech policy, and the importance of keeping up to date with the political world of cybersecurity.
<br><br> </p>
<!-- About - Orange Team !-->
<a name="About">
<div class="orangegrad purpletext">
<h1> About us. </h1>
<h2> The team behind BIICS. </h2>
</div>
<div>
<img class="team" src="img/team.jpg" alt="team picture">
<p class="teamtext purpletext"> <b>Co-founded in September 2018</b> by Margaux Girard and Verity Marsterson, BIICS is an institute based at Sciences Po Bordeaux. </p> <br>
<img class="team2" src="img/team.jpg" alt="team picture">
<p class="teamtext2 purpletext">
<b>As a dedicated team </b> of Masters students and tech enthusiasts, our range of expertise stems from the EU tech policy to cyberdefense and the politics of algorithms.
<br><br>
<b> Alongside our studies and work, </b> we conduct weekly meetings, and produce daily online content on our social media to raise awareness of the importance of cybersecurity. <br>
</p>
</div>
<!-- Agenda - Blue -->
<a name="Agenda"></a>
<div class="turquoisegrad bluetext">
<h1> Agenda.</h1>
<h2>12-13th September 2019. <br><a>Sciences Po Bordeaux. </a></h2>
</div>
<!-- DAY 1 !-->
<div class="col1 bluetext">
<img class="dates" src="img/date1.png" width="70%" alt="Day 1 : 12 Sept">
<br>
<h4 class= "bubble leftshade">Opening speeches </h4>
<div class= "bubble">
<p><b>Introductory Talks</b></p>
<p><i>Amphithéâtre simone veil (EN & FR)</i></p>
<p class="orangetext">9h00 - 9h35</p>
<ul class="a">
<li> Verity Marsterson & Margaux Girard - <i> BIICS </i></li>
<li> Yves Déloye - <i> Sciences Po Bordeaux </i></li>
<li> <i>Fondation Anthony Mainguené</i></li>
</ul>
</div>
<br>
<h4 class="bubble leftshade">Switched on, online and connected: The Internet and its regulatory challenges </h4>
<div class= "bubble">
<p><b> Video Introduction</b></p>
<p><i>Amphithéâtre simone veil (EN)</i></p>
<p class="orangetext">9h35 - 9h50</p>
<p> Andrea Calderaro - <i>Cardiff University</i></p>
</div>
<div class= "bubble">
<p><b><i> Panel debate:</i> Internet Governance in the 21st century: the challenges & opportunities of regulating a cross-border platform</b></p>
<p><i>Amphithéâtre simone veil (EN)</i></p>
<p class="orangetext">9h50 - 11h15 </p>
<ul class="a">
<li> Moderator: Verity Marsterson - <i> BIICS </i> </li>
<li> Florine Belle - <i>TEHTRIS</i> </li>
<li> Meryem Marzouki - <i>CNRS & Sorbonne Université</i></li>
<li> Andrea Beccalli - <i>ICANN</i></li>
<li> Konstantinos Komaitis - <i>Internet Society</i></li>
</ul>
</div>
<div class= "bubble">
<p><b> COFFEE BREAK </b></p>
<p class="orangetext">11h15 - 11h45</p>
</div>
<h4 class= "bubble leftshade"> Cybersecurity in the workplace </h4>
<div class= "bubble">
<p><b><i> Panel debate:</i> The future of business: exploring new solutions for a secure workplace (FR)</b></p>
<p><i>Amphithéâtre simone veil (FR)</i></p>
<p class="orangetext"> 11h45 - 12h30</p>
<ul class ="a">
<li> Moderator: Margaux Barbier - <i>BIICS</i></li>
<li> Marine Maître - <i>Wavestone</i></li>
</ul>
</div>
<div class="bubble">
<p><b> LUNCH BREAK </b></p>
<p class="orangetext"> 12h30 - 13h30</p>
</div>
<h4 class= "bubble leftshade"> Cybersecurity & International Relations </h4>
<div class="bubble">
<p><b>Keynote Speech</b></p>
<p><i>Amphithéâtre simone veil (EN)</i></p>
<p class="orangetext"> 13h30 - 14h30</p>
<p> Alberto Domingo - <i>NATO SACT</i></p>
</div>
<h4 class= "bubble leftshade"> New political challenges: Innovation & technology beyond the Internet </h4>
<div class="bubble">
<p><b><i> Inaugural conference:</i> New political challenges: innovation & technology beyond the internet (EN)</b></p>
<p><i>Amphithéâtre simone veil (EN)</i></p>
<p class="orangetext"> 14h30 - 15h00</p>
<p> Jérôme Freani - <i>Cyberologue</i></p>
</div>
<div class="bubble">
<p><b><i> Workshop I:</i> IoT & Connected Cities</b></p>
<p><i> Salle Erasmus (FR)</i></p>
<p class="orangetext">15h00 - 15h45 </p>
<p>Clotilde Cazamajour - <i>Urban-Law</i></p>
</div>
<div class="bubble">
<p><b><i> Workshop II:</i> The Ethics of AI</b></p>
<p><i> Salle Mabileau (EN) </i></p>
<p class="orangetext">15h00 - 15h45</p>
<p>Jean François Bonnefon - <i>CNRS</i></p>
</div>
<div class="bubble">
<p><b><i> Workshop III:</i> Blockchain & Bitcoin</b></p>
<p><i> Salle A136 (FR) </i></p>
<p class="orangetext">15h00 - 15h45</p>
<p> Edwin Le Héron - <i>Sciences Po Bordeaux</i></p>
</div>
<div class="bubble">
<p><b><i> Workshop IV:</i> The Basis of Coding</b></p>
<p><i> Salle Merle (FR) </i></p>
<p class="orangetext"> 15h00 - 15h45 </p>
<p>Félix Gaudé - <i>The Hacking Project</i></p>
</div>
<div class="bubble">
<p><b>Reflections on Workshops</b></p>
<p><i>Amphithéâtre simone veil (EN & FR)</i></p>
<p class="orangetext"> 16h00 - 16h30</p>
<p> Moderated by Jérôme Freani - <i>Cyberologue</i></p>
</div>
<div class="bubble">
<p><b> COFFEE BREAK </b></p>
<p class="orangetext"> 16h30 - 17h00</p>
</div>
<h4 class= "bubble leftshade">Privacy in a connected world</h4>
<div class="bubble">
<p><b>Keynote speech (EN)</b></p>
<p><i>Amphithéâtre simone veil (FR)</i></p>
<p class="orangetext"> 17h00 - 17h45 </p>
<p> Tristan Nitot - <i>Qwant</i></p>
</div>
<h4 class= "bubble leftshade"> Closing remarks </h4>
<div class="bubble">
<p><b>Reflections from day 1 (EN & FR)</b></p>
<p><i>Amphithéâtre simone veil (EN & FR)</i></p>
<p class="orangetext"> 17h45-18h00 </p>
<p> Margaux Girard & Verity Marsterson - <i>BIICS</i></p>
</div>
<h4 class= "bubble leftshade"> Drinks Reception</h4>
<div class="bubble">
<p><b>Reception by the City of Bordeaux (invite only)</b></p>
<p class="orangetext"> 19h00-20h30 </p>
<p> Speaker TBC </p>
</div>
</div>
<!-- Day 2 !-->
<div class="col2 bluetext">
<img class="dates" src="img/date2.png" width="70%" alt="Day 1 : 12 Sept">
<br>
<h4 class="bubble rightshade"> Opening speech </h4>
<div class= "bubble">
<p><b> Opening Speech</b></p>
<p><i>Amphithéâtre simone veil (EN & FR)</i></p>
<p class="orangetext"> 9h00 - 9h05</p>
<p> Verity Marsterson & Margaux Girard - <i>BIICS</i></p>
</div>
<div class= "bubble">
<p><b> Digital Inclusion: The Importance of an Accessible and Inclusive Cyberspace</b></p>
<p><i>Amphithéâtre simone veil (FR)</i></p>
<p class="orangetext"> 9h05 - 9h35</p>
<p> Olivier Esper - <i>Google</i></p>
</div>
<h4 class= "bubble rightshade"> Cybersecurity & Geopolitics </h4>
<div class= "bubble">
<p><b>Video Introduction</b></p>
<p><i>Amphithéâtre simone veil (EN)</i></p>
<p class="orangetext"> 9h45 - 10h00 </p>
<p>Muneo Kaigo - <i>Tsukuba University</i></p>
</div>
<div class= "bubble">
<p><b><i>Panel Debate:</i> Cybersecurity & Geopolitics</b></p>
<p><i>Amphithéâtre simone veil (EN)</i></p>
<p class="orangetext"> 10h00 - 10h45 </p>
<ul><li> Moderator: Lucie Baranès - <i>BIICS</i></li>
<li> Dominique Brunin - <i>Cybercercle</i></li>
<li> Julia Slupska - <i>Oxford Internet Institute</i></li>
<li> Trevor Bradley - <i>UK MOD, CVI Ops Cell</i></li>
</ul>
</div>
<div class="bubble">
<p><b> COFFEE BREAK </b></p>
<p class="orangetext">10h45 - 11h15</p>
</div>
<div class="bubble">
<p><b><i> Workshop I:</i> Fake news and online propaganda</b></p>
<p><i>Salle Mabileau (EN)</i></p>
<p class="orangetext">11h15 - 12h00 </p>
<p>Nicolas Hénin</p>
</div>
<div class="bubble">
<p><b><i> Workshop II:</i> Tech war & cybercrime</b></p>
<p><i>Salle Merle (EN/FR)</i></p>
<p class="orangetext">11h15 - 12h00</p>
<p> Olivier Grall - <i>ANSSI</i></p>
</div>
<div class="bubble">
<p><b><i> Workshop III:</i> Are the environmental threats associated to technology enough to unite countries in the fight against climate change?</b></p>
<p><i>Salle Erasme (FR)</i></p>
<p class="orangetext">11h15 - 12h00</p>
<p> Laurence Allard - <i>l‘Université de Lille 3/Paris 3</i></p>
</div>
<div class="bubble">
<p><b>Reflections on Workshops</b></p>
<p><i>Amphithéâtre simone veil (EN & FR)</i></p>
<p class="orangetext"> 12h00 - 12h45 </p>
<p> Moderated by Le Général Jean-Marc Laurent - <i>Chaire Défense et Aérospatial</i></p>
</div>
<h4 class="bubble rightshade"> Final remarks </h4>
<div class="bubble">
<p><b> Cybersecurity in the EU</b></p>
<p><i>Amphithéâtre simone veil (FR)</i></p>
<p class="orangetext"> 12h45 - 13h15 </p>
<p> Laurence Harribey - <i>Sénat</i></p>
</div>
<div class="bubble">
<p><b> Closing Conference</b></p>
<p><i>Amphithéâtre simone veil (EN & FR)</i></p>
<p class="orangetext"> 13h15 - 13h30 </p>
<p> Margaux Girard & Verity Marsterson - <i>BIICS</i></p>
</div>
</div>
<!-- Workshops -->
<div class="orangegrad purpletext">
<a name="Workshops">
<h1> Workshops. </h1>
<h2> Which will you attend? </h2>
</div>
<div class="workshops_a">
<img src="img/Workshops/AI.jpeg" class="workshop">
<img src="img/Workshops/bitcoin.jpeg" class="workshop">
<img src="img/Workshops/IoT.jpeg" class="workshop">
<img src="img/Workshops/coding.jpeg" class="workshop">
</div>
<div class="workshops_b">
<img src="img/Workshops/environment.jpeg" class="workshop">
<img src="img/Workshops/fake news.jpeg" class="workshop">
<img src="img/Workshops/tech war.jpeg" class="workshop">
</div>
<!-- Speakers !-->
<a name="Speakers"></a>
<div class="turquoisegrad bluetext">
<h1> Speakers. </h1>
<h2 class="mspeaker"> Click on an image to find out more. </h2>
<h2 class="dspeaker"> Meet the experts. </h2>
</div>
<div class="grid">
<!-- Olivier Esper -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/olivier esper.jpg" alt= "Olivier Esper">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Olivier Esper </h4>
<h5> Public Policy Senior Manager, Google </h5>
</div>
<p class="bluetext"> Olivier Esper is a Senior Manager in Public Policy at Google. Prior to this, he has worked as the Manager of Government Affairs at Cisco, as well as a Senior Analyst at the French Embassy. Olivier Esper has also spent 4 years as an Analyst and Chief of the Internet Bureau at the French Communications Commission. He currently holds the position of Secretary in the Association des Fournisseurs d'Accès et de Services (AFA). </p>
</div>
</div>
</div>
<!-- Alberto Domingo !-->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Alberto Domingo.jpg" alt= "Alberto Domingo">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Dr Alberto Domingo </h4>
<h5> Cyberspace Operations Technical Director, NATO </h5>
</div>
<p class="bluetext"> Dr Alberto Domingo is now Cyberspace Operations Technical Director for NATO Supreme Allied Headquarter Transformation (SACT) in Norfolk, Virginia. Before moving to the US, he worked for more than 13 years for private engineering and consultancy firms in the areas of telecommunications, space systems and defence, and was assistant professor at ICAI and Alcala universities in Madrid in project management and computer science. </p>
</div>
</div>
</div>
<!-- Andrea Becalli !-->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Andrea Beccalli.png" alt= "Andrea Beccalli">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Andrea Beccalli </h4>
<h5> Director of the Stakeholder Engagement Team, ICANN</h5>
</div>
<p class="bluetext small"> Andrea Beccalli is the Director of the Stakeholder Engagement Team at ICANN where he works on ICANN's political engagement in Europe. Andrea Beccalli has also served as Policy and Advocacy Manager for the IFLA, and an Associate Expert at UNESCO's Knowledge Societies Division, Communication and Information Sector in Paris, where he led negotiations around WSIS and the 2009 agreement between UNESCO and ICANN. Beccalli has also worked for Internews EU on a policy study on Internet and Freedom of Expression in Iraq. </p>
</div>
</div>
</div>
<!-- Andrea Calderaro !-->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Andrea Calderaro.jpg" alt="Andrea Calderaro">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Dr Andrea Calderaro</h4>
<h5> Politics & IR Lecturer, Cardiff University </h5>
</div>
<p class="bluetext small"> Andrea Calderaro is the Founding Director of the Centre for Internet and Global Politics (tag CIGP if possible), and a Politics & IR Lecturer at Cardiff University. Having worked with a number of key institutions, from the EU Cybersecurity Capacity Building Task Force (DG-DevCo/ISS) to UNESCO’s Internet Universality Program Advisory Board, Internet and International Affairs, his expertise lies in Internet governance, cybersecurity capacity building, telecom policies, digital rights and the role of the EU in the global Internet policy debate. </p>
</div>
</div>
</div>
<!-- Tristan Nitot -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Tristan Nitot.jpg" alt= "Tristan Nitot">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Tristan Nitot </h4>
<h5> Vice-President Advocacy, Qwant </h5>
</div>
<p class="bluetext"> Tristan Nitot is the Vice-President for Advocacy at French privacy respecting search engine, Qwant, where he focuses on open source and privacy. As a previous member of the data protection authority, CNIL, Chief Product Officer at open source personal cloud platform, Cozy Cloud, and Founder and President of Mozilla Europe, Nitot has been working in technology for over 27 years. He also helped to launch the OpenWeb.eu.org project in 2002, aiming at promoting Web standards and accessibility. </p>
</div>
</div>
</div>
<!-- Nicolas Henin !-->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Nicolas Henin.jpeg" alt= "Nicolas Hénin">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="orange-background">
<h4> Nicolas Hénin </h4>
<h5>CVE & CT consultant</h5>
</div>
<p class="bluetext small"> Nicolas Hénin is an independent consultant in counter violent extremism, counter terrorism and disinformation. As a former journalist and war correspondent who won the Bayeux Award of war correspondents 5 times, Nicolas Hénin specialises in international relations and the Middle-East. He covered the events in Egypt, Libya, Yemen and Syria after the Arab spring, and was held as a hostage for 10 months by ISIS in 2013. In 2017, he created Action Resilience, a research center about radicalisation and terrorism. </p>
</div>
</div>
</div>
<!-- Trevor Bradley -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Trev Bradley.png" alt= "Trevor Bradley">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Trevor Bradley </h4>
<h5> Lead for Cyber Vulnerability Investigations, UK Ministry of Defence </h5>
</div>
<p class="bluetext small"> Trevor Bradley is one of the UK Ministry of Defence’s leads for Cyber Vulnerability Investigations where is he is responsible for ensuring the risks to operations across the globe are understood and mitigated. During a 19 year career he has also been responsible for procurement and delivery of complex deployed IS for the UK military and interim communications infrastructure for foreign armed forces in addition to traditional engineering activity. </p>
</div>
</div>
</div>
<!-- Laurence Harribey !-->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/harribey_laurence.jpg" alt= "Laurence Harribey">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="orange-background">
<h4> Laurence Harribey </h4>
<h5> French Senator of the Gironde </h5>
</div>
<p class="bluetext small"> French Senator of the Gironde department since 2017, Laurence Harribey has freuqently engaged in parliamentary discussions around cybersecurity. Devoted to public service, she has served as Mayor of Noaillan and in regional and local councils for over 10 years. In 2017, as the main rapporteur on Cybersecurity in the Committee for European Affairs, she presented a bill to rigorously apply European cybersecurity directives at a national scale. The following April, she published a European parliamentary bill advocating for effective cyber cooperation between the Member States and ENISA. </p>
</div>
</div>
</div>
<!-- Olivier Grall -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Olivier Grall.jpg" alt= "Olivier Grall">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="orange-background">
<h4> Olivier Grall </h4>
<h5> Regional Delegate, ANSSI </h5>
</div>
<p class="bluetext"> Olivier Grall is the Regional Delegate of ANSSI, France’s National Cybersecurity Agency and manages territorial actions to advise and protect local authority or regional economic operators. He worked for seven years as the head of the french branch of MSAB, a leading company providing mobile phone analysis for police forces, and has also worked for Dell during his career. </p>
</div>
</div>
</div>
<!-- Meryem Marzouki !-->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Meryem Marzouki.jpg" alt= "Meryem Marzouki">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Meryem Markouki </h4>
<h5> Senior Academic Researcher, CNRS </h5>
</div>
<p class="bluetext"> Meryem Marzouki is a Senior Academic Researcher in Political Sciences at the French National Centre for Scientific Research (CNRS). She runs a multidisciplinary research activity focusing on Internet governance actors, issues, and institutionalization processes, and teaches Internet Regulation and Governance at Sorbonne Université. Details at: https://www-npa.lip6.fr/marzouki/ </p>
</div>
</div>
</div>
<!-- Laurence Allard -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/laurence allard.jpg" alt= "Laurence Allard">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="orange-background">
<h4> Laurence Allard </h4>
<h5> Communication Sciences Lecturer, University of Lille 3 </h5>
</div>
<p class="bluetext"> Laurence Allard is a lecturer in communication sciences at the University of Lille 3 and a researcher at the Sorbonne Nouvelle Paris-3 University. Her main research topics are digital expressive practices, anthropology of data, sensors and other chips, as well as the ecological consequences of the development of technologies. </p>
</div>
</div>
</div>
<!-- Konstantinos Komaitis -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Konstantinos Komaitis.jpg" alt= "Konstantinos Komaitis">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Konstantinos Komaitis </h4>
<h5> Senior Director, Internet Society </h5>
</div>
<p class="bluetext small"> Holding a PhD in intellectual property, Dr Konstantinos Komaitis is a Senior Director at the Internet Society in charge of strategy and policy development. Over the past years, he has held various leadership roles, including the chair of the Non-Commercial Users Constituency at ICANN and has often provided expert advice on governmental and other fora, having testified before the House of Lords Communications Committee amongst others. For the Internet Society, his main responsibility is thinking strategically and creatively about the future of the Internet, understanding how this links to public policy decision-making and will connect these streams into a coherent policy strategy.
</p>
</div>
</div>
</div>
<!-- Muneo Kaigo!-->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Muneo Kaigo.jpg" alt= "Muneo Kaigo">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Muneo Kaigo </h4>
<h5> Humanities and Social Sciences Lecturer, Taskuba University </h5>
</div>
<p class="bluetext"> Muneo Kaigo is a Japanese teacher at the Tsukuba University, school of Humanities and Social Sciences. He began his career as the representative of Japan to the Asian Media Information and communication centre in 2008. Since then, his work has mainly focused on contemporary digital topic in Japan such as the influence of information and communication technologies on life and society. </p>
</div>
</div>
</div>
<!-- Jean Bonnefon !-->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Jean Bonnefon.jpg" alt= "Jean François Bonnefon">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="orange-background">
<h4> Jean François Bonnefon </h4>
<h5> Doctor in cognitive psychology, CNRS & Toulouse School of Economics</h5>
</div>
<p class="bluetext small"> Jean François Bonnefon is Doctor in cognitive psychology at the CNRS and the Toulouse School of Economics. In 2018, he and a group of researchers at the MIT media lab launched the Moral machine, an online website allowing people to choose from different scenarios for how self-driving cars should behave on the streets. More than 2 million people answered, providing about 40 million choices, and the ground for a now famous research article published in Nature entitled, ‘The Moral Machine Experiment’. </p>
</div>
</div>
</div>
<!-- Julia Slupska -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Julia Slupska.jpg" alt= "Julia Slupska">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Julia Slupska </h4>
<h5> Doctoral Student, Oxford Internet Institute</h5>
</div>
<p class="bluetext small"> Julia Slupska is a doctoral student at the Centre for Doctoral Training in Cybersecurity at the Oxford Internet Institute. Her research focuses on the ethical implications of conceptual models of cybersecurity. Currently, she is studying cybersecurity in the context of intimate partner violence and the use of simulations in political decision-making. Previously, she completed her MSc in Social Science of the Internet on the role of metaphors in international cybersecurity policy. Before joining the OII, Julia worked on an LSE Law project on comparative regional integration and coordinated course on Economics in Foreign Policy for the Foreign and Commonwealth Office. </p>
</div>
</div>
</div>
<!-- Clotilde Cazamajour !-->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Clotilde Cazamajour.jpg" alt= "Clotilde Cazamajour">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="orange-background">
<h4> Clotilde Cazamajour </h4>
<h5> CEO and Partner Lawyer, UrbanLaw</h5>
</div>
<p class="bluetext"> Clotilde Cazamajour is a smart city specialist, CEO and lawyer at UrbanLaw. Every day, she works to find legal basis for the city of tomorrow. UrbanLaw advises on urban planning law as well as providing legal support for major companies, start-ups and local authorities in the context of ‘Smart Cities and Networks’ programs. Clothilde Cazamajour has also taught law for around 25 years at a number of institutions including the Université Montesquieu Bordeaux. </p>
</div>
</div>
</div>
<!-- Edwin le Heron -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Edwin Le Heron.jpg" alt= "Edwin Le Heron">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="orange-background">
<h4> Edwin Le Heron </h4>
<h5> Economics Lecturer, Sciences Po Bordeaux </h5>
</div>
<p class="bluetext small"> Edwin Le Heron is professor in economics at Sciences Po Bordeaux. Researcher in Monetary Economics and Financial Economics and post Keynesian theory at the Centre Emile Durkheim, he has developed an interest in cryptocurrencies such as Bitcoin. An active member of the French Association of Political Economy, Edwin Le Heron is also the current president of ADEK, the French-speaking association for Keynesian Studies. He is the author of “What is the use of the ECB?” and the co-author of “Should Central Banks be Independent?”. </p>
</div>
</div>
</div>
<!-- Bénédicte Pilliet -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Bennedict Pilliet.png" alt= "Bénédicte Pilliet">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Bénédicte Pilliet </h4>
<h5> Founder, CyberCercle </h5>
</div>
<p class="bluetext"> As Founder and CEO of CyberCercle, Bénédicte Pilliet specialises in defence and national security. Alongside running her cybersecurity platform, Bénédicte Pilliet is a lecturer in public policy in the field of cybersecurity and international relations at the University of Toulouse Capitole 1. She is also the Director of the Digital Security Certificate at the Paris-Dauphine University. A graduate from Sciences Po Paris, she is a Lieutenant-colonel for the army’s reserve of citizens and a member of the citizens’ reserve of cyber-defence. </p>
</div>
</div>
</div>
<!-- Franćois Pellegrini -->
<!-- <div class="flip-box"> -->
<!-- Front of box !-->
<!-- <div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Francois Pellegrini.jpg" alt= "Francois Pellegrini">
</div>
-->
<!-- Back of box !-->
<!-- <div class="flip-box-back">
<div class="turquoise-background">
<h4> François Pellegrini </h4>
<h5> CNIL </h5>
</div>
<p class="bluetext"> François Pellegrini is a professor in informatics at Université de Bordeaux and a senior researcher at LaBRI and Inria Bordeaux. He is a commissioner at CNIL, the French data protection authority and chairman of Aquinetic, a nonprofit regional association that promote open and free innovation in Region Nouvelle-Aquitaine. </p>
</div>
</div>
</div> -->
<!-- Jérôme Freani -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Jerome Freiani.jpg" alt= "Jérôme Freani">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="orange-background">
<h4> Jérôme Freani </h4>
<h5> Cyber Risk Management & Governance Consultant, CGI </h5>
</div>
<p class="bluetext"> Jérome Freani is a cybersecurity risk management and governance consultant at CGI business consulting, while being the Head of the Club Cyber at the Economic Warfare School of Paris and running Cyberologue, an online platform dedicated to cyber-related news. He has gained his expertise through an MBA in Strategy and Competitive Intelligence, as well as working for multiple firms such as Airbus and setting up his own tech businesses. </p>
</div>
</div>
</div>
<!-- Florine Belle !-->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/florine belle.jpeg" alt= "Florine Belle">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Florine Belle </h4>
<h5> Legal Advisor & Data Protection Officer, TEHTRIS </h5>
</div>
<p class="bluetext"> Now Legal Adviser in Cybersecurity and Data Protection Officer at TEHTRIS, a french cybersecurity firm who created its own cyberdefense arsenal, Florine Belle developed her legal expertise during her Masters’ in International Public Law, and her experience at the French National Cybersecurity Agency (ANSSI), during which she worked on the Tallinn Manual 2.0 and the legal implications of regulating zero-days vulnerabilities. </p>
</div>
</div>
</div>
<!-- Julien Nocetti !-->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Julien Nocetti.jpg" alt= "Julien Nocetti">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Julien Nocetti </h4>
<h5> Research Fellow, French Institute of International Relations (IFRI)</h5>
</div>
<p class="bluetext small"> Julien Nocetti is a Research Fellow at the French Institute of International Relations (IFRI) since 2009, where he is a specialist on global digital and cyber issues. His latest publications deal with the geopolitics of cyber conflict, China’s assertiveness in artificial intelligence, and Europe’s digital and data policies. Julien Nocetti is also a Russia expert, in particular Russian foreign and domestic Internet policies. He holds a PhD in Political Science from the National Institute for Oriental Languages (INALCO). </p>
</div>
</div>
</div>
<!-- The Hacking Project -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Felix Gaude.jpeg" alt= "The Hacking Project">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="orange-background">
<h4> Félix Gaudé</h4>
<h5> The Hacking Project </h5>
</div>
<p class="bluetext"> Félix Gaudé is the CEO and Co-Founder of The Hacking Project, a platform that sets out to recreate the bonds between humans by changing the world of education. They offer free, short, code courses that are open to everyone. As well as setting up his own company, he has also worked as a code teacher at IEP Paris and ESSEC Business School as well as Growth Hacker at ZeWaow!</p>
</div>
</div>
</div>
<!-- Yves Deloye -->
<div class="flip-box">
<!-- Front of box !-->
<div class="flip-box-inner">
<div class="flip-box-front">
<img src= "img/Speakers/Yves Deloye.jpg" alt= "Yves Deloye">
</div>
<!-- Back of box !-->
<div class="flip-box-back">
<div class="turquoise-background">
<h4> Yves Déloye </h4>
<h5> Political Science Lecturer, Sciences Po Bordeaux </h5>
</div>
<p class="bluetext"> Yves Déloye is a lecturer in politics, specialised in historical sociological of politics. He has been the headmaster of Sciences Po Bordeaux since 2016, and is dedicated to provide a critical thinking-based education to his students, as well as a motivational environment to thrive. He has also been the publishing director of the French Journal of Political Science for the past 10 years. </p>
</div>
</div>
</div>