-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspeakers.html
More file actions
2401 lines (1753 loc) · 125 KB
/
speakers.html
File metadata and controls
2401 lines (1753 loc) · 125 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta property="og:title" content="PyLadiesCon 2023 - Speakers">
<meta property="og:description" content="Speakers PyLadiesCon.">
<meta property="og:type" content="article">
<meta property="og:url" content="https://conference.pyladies.com/speakers.html">
<meta property="og:image" content="https://conference.pyladies.com/img/icon.png">
<meta property="og:image:alt" content="PyLadiesCon logo">
<link rel="shortcut icon" href="/img/favicon.ico" />
<title>PyLadiesCon 2023 - Speakers</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter&family=Orbitron:wght@500&family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/vars.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script crossorigin="anonymous" src="https://kit.fontawesome.com/6cf87c29c5.js"></script>
</head>
<body>
<header class="site-header sticky-top py-1">
<nav class="navbar navbar-expand-lg navbar-light d-flex flex-row justify-content-around align-items-center">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<img class="hamburger-logo" src="img/bar-chart-2.png"/>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto">
<a href="index.html" aria-label="PyLadiesCon">
<img class="menu-logo" src="img/icon.png"/>
</a>
<li class="nav-item dropdown px-4">
<a class="nav-link dropdown-toggle menu-font" data-toggle="dropdown" href="index.html" role="button" aria-haspopup="true" aria-expanded="false">About</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="about.html#the-event">The Event</a>
<a class="dropdown-item" href="about.html#the-organizers">The Organizers</a>
<a class="dropdown-item" href="about.html#the-psf">The PSF</a>
<a class="dropdown-item" href="about.html#coc">Code of Conduct</a>
</div>
</li>
<li class="nav-item px-4">
<a class="nav-link dropdown-toggle menu-font" data-toggle="dropdown" href="index.html" role="button" aria-haspopup="true" aria-expanded="false">Speakers</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="speakers.html#keynotes">The Keynotes</a>
<a class="dropdown-item" href="speakers.html#speakers">The Speakers</a>
</div>
</li>
<li class="nav-item px-4">
<a class="py-2 d-flex d-md-inline-block menu-font" href="schedule.html">Schedule</a>
</li>
<li class="nav-item px-4">
<a class="py-2 d-flex d-md-inline-block menu-font" href="sponsors.html">Sponsor</a>
</li>
<li class="nav-item px-4">
<a class="py-2 d-flex d-inline-block menu-font" href="index.html#contact">Contact</a>
</li>
<div class="text-end px-4">
<a class="btn btn-outline-secondary btn-pink text-white" href="https://events.hubilo.com/pyladiescon2023/register">Register</a>
</div>
</ul>
</div>
</nav>
</header>
<main>
<!-- page cover -->
<div class="position-relative overflow-hidden p-1 p-md-3 m-md-1 text-center bg-white">
<div class="d-md-flex flex-md-equal w-75 my-md-3 mx-auto align-items-center">
<div class="col-md-6 p-lg-1 mx-auto mt-auto">
<h2 class="special-font gradient title-size">Speakers</h2>
</div>
<div class="col-md-3 d-none d-lg-block">
<!-- empty alt tag as it is a decorative image -->
<img src="img/about-icon-1.png" alt=""/>
</div>
<div class="col-md-3 d-none d-lg-block">
<!-- empty alt tag as it is a decorative image -->
<img src="img/speakers-icon-2.png" alt=""/>
</div>
</div>
</div>
<div class="d-md-flex flex-md-equal w-100 my-md-3 ps-md-3">
<div class="bg-pink me-md-3 py-3 px-3 py-md-5 px-md-5 text-white overflow-hidden">
<div class="my-3 py-3 px-5">
<h2 class="dispaly-6 special-font mb-5" id="keynotes">Meet our keynotes</h2>
<div class="row row-cols-1 row-cols-sm-2 row-cols-lg-3 mb-3">
<div class="col mb-3">
<div class="row align-items-center">
<div class="col-5">
<img src="img/keynote/sophia.jpeg" alt="Sophia Yang" class="rounded-5 img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-4">Sophia Yang</strong>
<p>Sr. Data Scientist<br>
<span style="font-size: 80%; font-weight: bold;">Anaconda Inc</span>
</p>
<p>
<a href="https://linkedin.com/in/sophiamyang" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">linkedin</span>
</a>
<a href="https://twitter.com/sophiamyang" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">twitter</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">She is passionate about the data science community and the Python open-source community. She is the author of multiple Python open-source libraries such as condastats, cranlogs, PyPowerUp, intake-stripe, and intake-salesforce</p>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row align-items-center">
<div class="col-5">
<img src="img/keynote/jimena.jpeg" alt="Jimena Bermúdez" class="rounded-5 img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-4">Jimena Bermúdez</strong>
<p>Sr. Full Stack Developer<br>
<span style="font-size: 80%; font-weight: bold;"></span>
</p>
<p>
<a href="https://linkedin.com/in/jimena-eb" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">linkedin</span>
</a>
<a href="https://twitter.com/Jimena_y_yo" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">twitter</span>
</a>
<a href="https://mastodon.social/@Jimena_y_yo" class="text-white text-decoration-none">
<i class="fab fa-mastodon fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">mastodon</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Jimena is the esteemed president of Python Spain and a computer engineer who takes pride and joy in her profession. Although she was once drawn to the realms of design, UI, and UX, her true passion lies in coding and architectural design</p>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row align-items-center">
<div class="col-5">
<img src="img/keynote/marlene.jpg" alt="Marlene Mhangami" class="rounded-5 img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-4">Marlene Mhangami</strong>
<p>Developer Advocate<br>
<span style="font-size: 80%; font-weight: bold;">Voltron Data</span>
</p>
<p>
<a href="https://linkedin.com/in/marlenemhangami" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">linkedin</span>
</a>
<a href="https://twitter.com/marlene_zw" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">twitter</span>
</a>
<a href="https://fosstodon.org/@Marlene" class="text-white text-decoration-none">
<i class="fab fa-mastodon fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">mastodon</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Marlene is a Zimbabwean software engineer, explorer, and speaker based in the city of Harare. She is a previous director and vice-chair for the Python Software Foundation and is currently serving as the vice-chair of the Association for Computing Machinery practitioner board</p>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row align-items-center">
<div class="col-5">
<img src="img/keynote/thais.jpeg" alt="Thais Viana" class="rounded-5 img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-4">Thais Viana</strong>
<p>Product Manager<br>
<span style="font-size: 80%; font-weight: bold;">Jusbrasil</span>
</p>
<p>
<a href="https://linkedin.com/in/thaisnviana" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">linkedin</span>
</a>
<a href="https://twitter.com/thaisviana" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">twitter</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Thais is currently leading their Search & Recommendation team. Her active engagement in the tech community, including contributions to PyLadies in Rio de Janeiro and Afropython for more than 6 years, highlights her commitment to promoting diversity and inclusion in the industry</p>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row align-items-center">
<div class="col-5">
<img src="img/keynote/abigail.jpg" alt="Abigail Mesrenyame Dogbe" class="rounded-5 img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-4">Abigail Mesrenyame Dogbe</strong>
<p>Open Source Programs Manager<br>
<span style="font-size: 80%; font-weight: bold;"></span>
</p>
<p>
<a href="https://linkedin.com/in/abigail-mesrenyame-dogbe" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">linkedin</span>
</a>
<a href="https://twitter.com/mesrenyamedogbe" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">twitter</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Abigail Mesrenyame Dogbe is an Open Source Programs Manager, Researcher and Community Builder who believes in the power of Open Source Community Building. Her current research focuses on Improving DEI in Open Source Community Leadership</p>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row align-items-center">
<div class="col-5">
<img src="img/keynote/carolina.jpeg" alt="Carolina Chavier" class="rounded-5 img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-4">Carolina Chavier</strong>
<p>Founder<br>
<span style="font-size: 80%; font-weight: bold;">The Allyance</span>
</p>
<p>
<a href="https://linkedin.com/in/caroline-therwath-chavier-859b4032" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">linkedin</span>
</a>
<a href="https://twitter.com/MrsCaroline_C" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">twitter</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Caroline Therwath-Chavier est la fondatrice de The Allyance, entreprise d'expertise sur les sujets de recrutement et de diversité. Caroline est une des seules spécialistes en France du recrutement des ingénieurs dans la tech</p>
</div>
</div>
</div>
</div>
<h2 class="dispaly-6 special-font my-5" id="speakers">The Speakers</h2>
<div class="row row-cols-1 row-cols-sm-2 row-cols-lg-4 mb-3">
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/mariatta.jpg" alt="Mariatta" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Mariatta</strong>
<!--<p> ()</p>-->
<p>
<a href="https://linkedin.com/in/mariatta" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">LinkedIn</span>
</a>
<a href="https://twitter.com/mariatta" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Twitter</span>
</a>
<a href="https://fosstodon.org/@mariatta" class="text-white text-decoration-none">
<i class="fab fa-mastodon fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Mastodon</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Mariatta is a Python core developer where she focuses on improving the workflow and documentation. She is active in the Python community as an advisor for the Global PyLadies, and PyCon US Chair</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 07:50 - 08:00 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/DP9PTG" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Conference Closing</strong>
</a>
</div>
</a>
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 00:15 - 00:30 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/FMYCFJ" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Welcome to PyLadiesCon</strong>
</a>
</div>
</a>
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 15:50 - 16:00 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/KYAWRK" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Conference Closing</strong>
</a>
</div>
</a>
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 16:15 - 16:30 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/VQ9H73" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Welcome to PyLadiesCon</strong>
</a>
</div>
</a>
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 08:15 - 08:30 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/XTAZDU" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Welcome to PyLadiesCon</strong>
</a>
</div>
</a>
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 23:50 - 00:00 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/YWCEW9" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Conference Closing</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/sarahadigwe.jpeg" alt="Sarah Adigwe" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Sarah Adigwe</strong>
<!--<p> ()</p>-->
<p>
<a href="https://www.linkedin.com/in/sarah-adigwe/" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">LinkedIn</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Sarah Adigwe is a Global Council Member of PyLadies and organizer of a PyLadies chapter in Nigeria, is dedicated to advancing gender diversity in the tech industry. As the Lead for Insight and Data Analytics at Touch and Pay Technologies, she combines her technical expertise with a passion for fostering inclusive environments</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 02:10 - 02:35 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/DXPBUV" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Unity in Diversity: The Voices of PyLadies Global Council</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/sarah.png" alt="Sarah Huang (Host)" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Sarah Huang (Host)</strong>
<!--<p> ()</p>-->
<p>
<a href="https://www.linkedin.com/in/sarahhuang" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">LinkedIn</span>
</a>
<a href="https://twitter.com/_HurricaneSarah" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Twitter</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Product Owner, CSPO, Top 10 Asia Forbes</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 06:30 - 07:05 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/LWQF39" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Challenges for Women Working in Technology</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/cecilia_tivir.png" alt="Cecilia Tivir" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Cecilia Tivir</strong>
<!--<p> ()</p>-->
<p>
<a href="https://www.linkedin.com/in/ctivir/" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">LinkedIn</span>
</a>
<a href="https://twitter.com/ctivir" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Twitter</span>
</a>
<a href="https://instagram.com/ctivir" class="text-white text-decoration-none">
<i class="fab fa-instagram fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Instagram</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Cecilia é Co-Fundadora da PyLadies Maputo e da Wansati Lab. Actualmente estudante e pesquisadora (main field: AI and Education)</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 11:30 - 11:50 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/CXBGKU" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">PyLadies Maputo - Construir uma comunidade que promove a diversidade, conecta, encoraja e desenvolve competências profissionais e humanas</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/bia_rosa.jpg" alt="Bianca Rosa" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Bianca Rosa</strong>
<!--<p> ()</p>-->
<p>
<a href="https://www.linkedin.com/in/biarm" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">LinkedIn</span>
</a>
<a href="https://twitter.com/__biancarosa" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Twitter</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Backend and Infrastructure Engineer at Lumos. Works with Python for over 7 years and has been involved with the Python community since then; organized several Pyladies and PythOnRio meet-ups and is the conference chair of the Python Brasil 2024 in Rio</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 22:30 - 23:10 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/BE7NNM" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Vozes na Tecnologia: Contando Experiências na Indústria de Tecnologia</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/lidiane_monteiro.jpg" alt="Lidiane Monteiro" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Lidiane Monteiro</strong>
<!--<p> ()</p>-->
<p>
<a href="https://twitter.com/Lidy_Monteiro" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Twitter</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Founder of InspirAda na Computação, Software developer at LuizaLabs and Host of the podcast Cabeça de Lab. Passionate about people and knowledge, contributed to the co-founding of technology communities such as PyLadies Recife and Women Who Code Recife, participant of PyLadies Brasil, PUG- PE and Django Girls</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 22:30 - 23:10 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/BE7NNM" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Vozes na Tecnologia: Contando Experiências na Indústria de Tecnologia</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/joanna_jablonski.jpg" alt="Joanna Jablonski" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Joanna Jablonski</strong>
<!--<p> ()</p>-->
<p>
<a href="https://www.linkedin.com/in/joanna-jablonski/" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">LinkedIn</span>
</a>
<a href="https://twitter.com/Jo_Jablonski" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Twitter</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">I help developers learn because I like code, words, and people.</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 19:30 - 19:50 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/93FA7B" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">How to Make a Docs Site: Shortcuts for Busy Devs</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/denny_perez.jpg" alt="Denny Perez" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Denny Perez</strong>
<!--<p> ()</p>-->
<p>
<a href="https://www.linkedin.com/in/dennyperez18/" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">LinkedIn</span>
</a>
<a href="https://twitter.com/dennyperez18" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Twitter</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Software QA Analyst. Python community manager</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 07:50 - 08:00 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/DP9PTG" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Conference Closing</strong>
</a>
</div>
</a>
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 00:15 - 00:30 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/FMYCFJ" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Welcome to PyLadiesCon</strong>
</a>
</div>
</a>
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 15:50 - 16:00 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/KYAWRK" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Conference Closing</strong>
</a>
</div>
</a>
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 16:15 - 16:30 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/VQ9H73" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Welcome to PyLadiesCon</strong>
</a>
</div>
</a>
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 08:15 - 08:30 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/XTAZDU" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Welcome to PyLadiesCon</strong>
</a>
</div>
</a>
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 23:50 - 00:00 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/YWCEW9" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Conference Closing</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/mariana_bocoi.jpg" alt="Mariana Bocoi" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Mariana Bocoi</strong>
<!--<p> ()</p>-->
<p>
<a href="https://www.linkedin.com/in/marianabocoi/" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">LinkedIn</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Mariana is part of the PyLadies Stockholm community and works as a DevOps/Infrastructure engineer. Before digging deeper into the clouds, she worked with backend development for over ten years</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 09:40 - 10:00 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/R89VX9" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">How and why I built a PyLadies avatar generator in 2 days</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/lorena.jpg" alt="Lorena Mesa (Host)" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Lorena Mesa (Host)</strong>
<!--<p> ()</p>-->
<p>
<a href="https://www.linkedin.com/in/lorenamesa" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">LinkedIn</span>
</a>
<a href="https://twitter.com/loooorenanicole" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Twitter</span>
</a>
<a href="https://mastodon.social/@LorenaNicole" class="text-white text-decoration-none">
<i class="fab fa-mastodon fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Mastodon</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">I’m an open source advocate, a data engineer and data scientist, Python educator, conference speaker, and a supporter of responsible, ethical technology. I make it simple for people to discover, use, and contribute to open source by creating tech that enables you to sort through the noise and find projects that speak to you</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 02:10 - 02:35 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/DXPBUV" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Unity in Diversity: The Voices of PyLadies Global Council</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/jessica_temporal.jpg" alt="Jessica Temporal" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Jessica Temporal</strong>
<!--<p> ()</p>-->
<p>
<a href="http://linkedin.com/in/jessicatemporal/" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">LinkedIn</span>
</a>
<a href="https://twitter.com/jesstemporal" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Twitter</span>
</a>
<a href="https://mastodon.online/@jesstemporal" class="text-white text-decoration-none">
<i class="fab fa-mastodon fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Mastodon</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Jessica Temporal is a Sr. Developer Advocate at Auth0 by Okta</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 22:30 - 23:10 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/BE7NNM" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Vozes na Tecnologia: Contando Experiências na Indústria de Tecnologia</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/joeun_park.jpg" alt="Joeun Park" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Joeun Park</strong>
<!--<p> ()</p>-->
<p></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">She was a staff member of PyConKR 2015-2018, including PyCon APAC 2016. While at PyConKR, she started Young Coder, Child Care as a mother of two children</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 06:30 - 07:05 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/LWQF39" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Challenges for Women Working in Technology</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/jessie_newman.jpg" alt="Jessie Newman" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">
<strong class="fs-5">Jessie Newman</strong>
<!--<p> ()</p>-->
<p>
<a href="linkedin.com/in/newmanjessie" class="text-white text-decoration-none">
<i class="fab fa-linkedin fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">LinkedIn</span>
</a>
<a href="https://twitter.com/jessiedotjs" class="text-white text-decoration-none">
<i class="fab fa-twitter fa-lg px-2" aria-hidden="true"></i>
<span class="visually-hidden">Twitter</span>
</a></p>
</div>
<div class="col-12">
<p class="mt-3 border-left">Jessie Newman is a software engineer with six years experience at Google working on Google Drive, Search, and Maps, and three years experience working in high frequency trading at Hudson River Trading. She was a founding co-lead of Hudson River Trading's womens employee resource group</p>
</div>
<div class="col-12">
<div class="w-100p rounded-2 mt-2" style="background-color: rgba(0, 0, 0, 0.2); padding: 10px;">
<span class="text-center">2nd Dec | 19:55 - 20:15 | <a class="text-white" href="https://time.is/UTC" target="_blank">UTC</a>/<a class="text-white" href="https://time.is/GMT">GMT</a></span><br>
<a href="https://pretalx.com/pyladiescon-2023/talk/3GAJLD" class="text-white" style="text-decoration: none;">
<strong style="font-weight: 800;">Testing in Python</strong>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="col mb-3">
<div class="row">
<div class="col-5">
<img src="img/speakers/pavithra_eswaramoorthy.jpg" alt="Pavithra Eswaramoorthy" class="rounded-circle img-fluid">
</div>
<div class="col-7 flex-column my-auto">