-
Notifications
You must be signed in to change notification settings - Fork 0
/
reminder_mentors.html
1027 lines (923 loc) · 68.8 KB
/
reminder_mentors.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
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
style="width:100%;font-family:'Jost','Jost', 'helvetica neue', helvetica, arial, sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;padding:0;Margin:0;">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta name="x-apple-disable-message-reformatting">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta content="telephone=no" name="format-detection">
<title>Mentored sprints at PyCon- thanks for mentoring</title>
<!--[if (mso 16)]>
<style>
a {
text-decoration:none;
}
</style>
<![endif]-->
<!--[if gte mso 9]>
<style>
sup {
font-size:100% !important;
}
</style>
<![endif]-->
<!--[if !mso]><!-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,700,700i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<!--<![endif]-->
<style type="text/css">
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap');
@media only screen and (max-width:600px) {
p,
ul li,
ol li,
a {
font-size: 16px !important;
line-height: 150% !important;
}
}
@media only screen and (max-width:600px) {
h1 {
font-size: 30px !important;
text-align: center;
line-height: 120% !important;
}
}
@media only screen and (max-width:600px) {
h2 {
font-size: 26px !important;
text-align: center;
line-height: 120% !important;
}
}
@media only screen and (max-width:600px) {
h3 {
font-size: 20px !important;
text-align: center;
line-height: 120% !important;
}
}
@media only screen and (max-width:600px) {
h1 a {
font-size: 30px !important;
}
}
@media only screen and (max-width:600px) {
h2 a {
font-size: 26px !important;
}
}
@media only screen and (max-width:600px) {
h3 a {
font-size: 20px !important;
}
}
@media only screen and (max-width:600px) {
.es-menu td a {
font-size: 16px !important;
}
}
@media only screen and (max-width:600px) {
.es-header-body p,
.es-header-body ul li,
.es-header-body ol li,
.es-header-body a {
font-size: 16px !important;
}
}
@media only screen and (max-width:600px) {
.es-footer-body p,
.es-footer-body ul li,
.es-footer-body ol li,
.es-footer-body a {
font-size: 16px !important;
}
}
@media only screen and (max-width:600px) {
.es-infoblock p,
.es-infoblock ul li,
.es-infoblock ol li,
.es-infoblock a {
font-size: 12px !important;
}
}
@media only screen and (max-width:600px) {
[class=gmail-fix] {
display: none !important;
}
}
@media only screen and (max-width:600px) {
.es-m-txt-c,
.es-m-txt-c h1,
.es-m-txt-c h2,
.es-m-txt-c h3 {
text-align: center !important;
}
}
@media only screen and (max-width:600px) {
.es-m-txt-r,
.es-m-txt-r h1,
.es-m-txt-r h2,
.es-m-txt-r h3 {
text-align: right !important;
}
}
@media only screen and (max-width:600px) {
.es-m-txt-l,
.es-m-txt-l h1,
.es-m-txt-l h2,
.es-m-txt-l h3 {
text-align: left !important;
}
}
@media only screen and (max-width:600px) {
.es-m-txt-r img,
.es-m-txt-c img,
.es-m-txt-l img {
display: inline !important;
}
}
@media only screen and (max-width:600px) {
.es-button-border {
display: block !important;
}
}
@media only screen and (max-width:600px) {
a.es-button {
font-size: 20px !important;
display: block !important;
border-left-width: 0 !important;
border-right-width: 0 !important;
}
}
@media only screen and (max-width:600px) {
.es-btn-fw {
border-width: 10px 0 !important;
text-align: center !important;
}
}
@media only screen and (max-width:600px) {
.es-adaptive table,
.es-btn-fw,
.es-btn-fw-brdr,
.es-left,
.es-right {
width: 100% !important;
}
}
@media only screen and (max-width:600px) {
.es-content table,
.es-header table,
.es-footer table,
.es-content,
.es-footer,
.es-header {
width: 100% !important;
max-width: 600px !important;
}
}
@media only screen and (max-width:600px) {
.es-adapt-td {
display: block !important;
width: 100% !important;
}
}
@media only screen and (max-width:600px) {
.adapt-img {
width: 100% !important;
height: auto !important;
}
}
@media only screen and (max-width:600px) {
.es-m-p0 {
padding: 0 !important;
}
}
@media only screen and (max-width:600px) {
.es-m-p0r {
padding-right: 0 !important;
}
}
@media only screen and (max-width:600px) {
.es-m-p0l {
padding-left: 0 !important;
}
}
@media only screen and (max-width:600px) {
.es-m-p0t {
padding-top: 0 !important;
}
}
@media only screen and (max-width:600px) {
.es-m-p0b {
padding-bottom: 0 !important;
}
}
@media only screen and (max-width:600px) {
.es-m-p20b {
padding-bottom: 20px !important;
}
}
@media only screen and (max-width:600px) {
.es-mobile-hidden,
.es-hidden {
display: none !important;
}
}
@media only screen and (max-width:600px) {
.es-desk-hidden {
display: table-row !important;
width: auto !important;
overflow: visible !important;
float: none !important;
max-height: inherit !important;
line-height: inherit !important;
}
}
@media only screen and (max-width:600px) {
.es-desk-menu-hidden {
display: table-cell !important;
}
}
@media only screen and (max-width:600px) {
table.es-table-not-adapt,
.esd-block-html table {
width: auto !important;
}
}
@media only screen and (max-width:600px) {
table.es-social {
display: inline-block !important;
}
}
@media only screen and (max-width:600px) {
table.es-social td {
display: inline-block !important;
}
}
#outlook a {
padding: 0;
}
.ExternalClass {
width: 100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
.es-button {
mso-style-priority: 100 !important;
text-decoration: none !important;
}
a[x-apple-data-detectors] {
color: inherit !important;
text-decoration: none !important;
font-size: inherit !important;
font-family: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
}
.es-desk-hidden {
display: none;
float: left;
overflow: hidden;
width: 0;
max-height: 0;
line-height: 0;
mso-hide: all;
}
</style>
</head>
<body
style="width:100%;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;padding:0;Margin:0;">
<span
style="display:none !important;font-size:0px;line-height:0;color:#FFFFFF;visibility:hidden;opacity:0;height:0;width:0;mso-hide:all;">PyCon
sprints for members of underrepresented groups</span>
<div class="es-wrapper-color" style="background-color:#E4E5E7;">
<!--[if gte mso 9]>
<v:background xmlns:v="urn:schemas-microsoft-com:vml" fill="t">
<v:fill type="tile" src="https://lesmi.stripocdn.email/content/guids/CABINET_b6aa40c8381ea77877007ebecaff3de3/images/60531550065503094.png" color="#e4e5e7" origin="0.5, 0" position="0.5,0">
</v:fill>
</v:background>
<![endif]-->
<table class="es-wrapper" width="100%" cellspacing="0" cellpadding="0"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;padding:0;margin:0;width:100%;height:100%;background-repeat:repeat;background-position:center top;background-image:url('https://lesmi.stripocdn.email/content/guids/CABINET_b6aa40c8381ea77877007ebecaff3de3/images/60531550065503094.png');"
background="https://lesmi.stripocdn.email/content/guids/CABINET_b6aa40c8381ea77877007ebecaff3de3/images/60531550065503094.png">
<tr style="border-collapse:collapse;">
<td valign="top" style="padding:0;margin:0;">
<table class="es-content" cellspacing="0" cellpadding="0" align="center" mc:repeatable
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%;">
<tr style="border-collapse:collapse;">
<td class="es-adaptive" align="center" style="padding:0;margin:0;">
<table class="es-content-body"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:transparent;"
width="600" cellspacing="0" cellpadding="0" align="center">
<tr style="border-collapse:collapse;">
<td align="left" style="padding:10px;margin:0;">
<!--[if mso]>
<table width="580">
<tr>
<td width="280" valign="top">
<![endif]-->
<table class="es-left" cellspacing="0" cellpadding="0" align="left"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left;">
<tr style="border-collapse:collapse;">
<td width="280" align="left" style="padding:0;margin:0;">
<table width="100%" cellspacing="0" cellpadding="0"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td class="es-infoblock" align="left"
style="padding:0;margin:0;line-height:14px;font-size:12px;color:#999999;"
mc:edit="block_0">
<p
style="margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-size:12px;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;line-height:14px;color:#999999;">
PyCon sprints for members of underrepresented
groups</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!--[if mso]>
</td>
<td width="20">
</td>
<td width="280" valign="top">
<![endif]-->
<table class="es-right" cellspacing="0" cellpadding="0" align="right"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:right;">
<tr style="border-collapse:collapse;">
<td width="280" align="left" style="padding:0;margin:0;">
<table width="100%" cellspacing="0" cellpadding="0"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td class="es-infoblock" align="right"
style="padding:0;margin:0;line-height:14px;font-size:12px;color:#999999;"
mc:edit="block_1">
<p
style="margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-size:12px;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;line-height:14px;color:#999999;">
<a href="*|ARCHIVE|*" target="_blank"
style="-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;font-size:12px;text-decoration:underline;color:#999999;">View
in browser</a>
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
</table>
</td>
</tr>
</table>
<table class="es-header" cellspacing="0" cellpadding="0" align="center" mc:repeatable
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%;background-color:transparent;background-repeat:repeat;background-position:center top;">
<tr style="border-collapse:collapse;">
<td align="center" style="padding:0;margin:0;">
<table class="es-header-body" width="600" cellspacing="0" cellpadding="0" align="center"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#283069;">
<tr style="border-collapse:collapse;">
<td align="left"
style="padding:0;margin:0;padding-top:20px;padding-left:20px;padding-right:20px;">
<table cellpadding="0" cellspacing="0" width="100%"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td width="560" align="center" valign="top"
style="padding:0;margin:0;">
<table cellpadding="0" cellspacing="0" width="100%"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td align="center"
style="padding:0; padding-bottom:20px; margin:0; text-align:center;"
mc:edit="block_2">
<p
style="margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-size:18px;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;line-height:24px;color:#FFFFFF;">
Mentored sprints for diverse beginners online:
May 16-17th 2020</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table class="es-content" cellspacing="0" cellpadding="0" align="center" mc:repeatable
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%;">
<tr style="border-collapse:collapse;">
<td align="center" style="padding:0;margin:0;">
<table class="es-content-body"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#FBDDEC;"
width="600" cellspacing="0" cellpadding="0" bgcolor="#FBDDEC" align="center">
<tr style="border-collapse:collapse;">
<td align="left" style="padding:0;margin:0;">
<table width="100%" cellspacing="0" cellpadding="0"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td width="600" valign="top" align="center"
style="padding:0;margin:0;">
<table width="100%" cellspacing="0" cellpadding="0"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td align="center"
style="margin:0;padding-top:20px;padding-bottom:20px;padding-left:40px;padding-right:40px;"
mc:edit="block_4">
<h1
style="margin:0;line-height:36px;mso-line-height-rule:exactly;font-family:'Jost', tahoma, verdana, segoe, sans-serif;font-size:30px;font-style:normal;font-weight:normal;color:#283069;">
Hey amazing mentors! <br>
</h1>
</td>
</tr>
<tr style="border-collapse:collapse;">
<td align="center" style="padding:0;margin:0;"
mc:edit="block_5"> <img class="adapt-img"
src="https://res.cloudinary.com/nezahualcoyotl/image/upload/v1589367823/twitter-banner_atfsfq.png"
alt="" width="600"
style="display:block;border:0;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic;">
</td>
</tr>
<tr style="border-collapse:collapse;">
<td align="center"
style="padding:0;margin:0;padding-bottom:10px;padding-left:40px;padding-right:40px;"
mc:edit="block_6">
<p
style="margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-size:16px;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;line-height:24px;color:#333333;">
<br>
</p>
<p
style="margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-size:16px;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;line-height:24px;color:#333333;">
We are so incredibly JAZZED to be hanging out
with you this Saturday May 16th and Sunday
17th May for the #mentoredsprints online
event! Thanks for making this possible.</p>
<p
style="margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-size:16px;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;line-height:24px;color:#333333;">
<br>
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table class="es-content" cellspacing="0" cellpadding="0" align="center" mc:repeatable
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%;">
<tr style="border-collapse:collapse;">
<td align="center" style="padding:0;margin:0;">
<table class="es-content-body"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#FFFFFF;"
width="600" cellspacing="0" cellpadding="0" bgcolor="#ffffff" align="center">
<tr style="border-collapse:collapse;">
<td align="left"
style="padding:0;margin:0;padding-top:20px;padding-left:20px;padding-right:20px;">
<table cellpadding="0" cellspacing="0" width="100%"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td width="560" align="center" valign="top"
style="padding:0;margin:0;">
<table cellpadding="0" cellspacing="0" width="100%"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td align="left" style="padding:0;margin:0;" </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr style="border-collapse:collapse;">
<td align="left"
style="padding:0;margin:0;padding-top:20px;padding-left:20px;padding-right:20px;">
<table cellpadding="0" cellspacing="0" width="100%"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td width="560" align="center" valign="top"
style="padding:0;margin:0;">
<table cellpadding="0" cellspacing="0" width="100%"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td align="center" style="padding:0;margin:0;"
mc:edit="block_9">
<h2
style="margin:0;line-height:29px;mso-line-height-rule:exactly;font-family:'jost', tahoma, verdana, segoe, sans-serif;font-size:24px;font-style:normal;font-weight:bold;color:#283069;">
Here are some things you need to know before
the event:</h2>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!-- details- timeslots and the such -->
<tr style="border-collapse:collapse;">
<td align="left"
style="padding:0;margin:0;padding-top:20px;padding-left:20px;padding-right:20px;">
<table cellpadding="0" cellspacing="0" width="100%"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td width="560" align="center" valign="top"
style="padding:0;margin:0;">
<table cellpadding="0" cellspacing="0" width="100%"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td align="left" style="padding:0;margin:0;"
mc:edit="block_10">
<p>The event will start on Saturday 16th May at 9:00
PDT and finish on Sunday 17th May at 13:00 JST.
</p>
<p>We have two slots for participation:</p>
<ul>
<li
style="-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-size:16px;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;line-height:21px;margin-bottom:15px;color:#333333;">
<span style="font-size:16px;"> <b>Americas +
Europe + Africa friendly slot:</b>
9:00 PDT |
11:00 CDT | 17:00 BST | 19:00 EAT <a
href="https://www.timeanddate.com/worldclock/fixedtime.html?msg=Mentored+Sprints+-+slot+1&iso=20200516T09&p1=224&ah=4"
target="_blank"
style=color:#C93980;> Check the
event
time
in your timezone</a></span>
</li>
<li
style="-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-size:16px;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;line-height:21px;margin-bottom:15px;color:#333333;">
<span style="font-size:16px;"> <b>APAC
friendly slot:</b> 9:00 JST | 10:00
AEST <a
href="https://www.timeanddate.com/worldclock/fixedtime.html?msg=Mentored+sprints+-+slot+2&iso=20200517T10&p1=240&ah=4"
target="_blank"
style=color:#C93980;> Check the
event
time
in your timezone</a></span>
</li>
</ul>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr style="border-collapse:collapse;">
<td align="left"
style="padding:0;margin:0;padding-top:20px;padding-left:20px;padding-right:20px;">
<table cellpadding="0" cellspacing="0" width="100%"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td width="560" align="center" valign="top"
style="padding:0;margin:0;">
<table cellpadding="0" cellspacing="0" width="100%"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td align="left" style="padding:0;margin:0;"
mc:edit="block_11">
<h3
style="margin:0;line-height:29px;mso-line-height-rule:exactly;font-family:'jost', tahoma, verdana, segoe, sans-serif;font-size:18px;font-style:normal;font-weight:bold;color:#283069;">
Connect:</h3>
<p> We have created a <b>Discord</b> server for the
event.
This will be used to split attendees and mentors
based on projects as well as providing general
help and making announcements. You will need to
accept the Discord rules in the <code
style="font-size: 16px;">#general</code>
channel before being able to post messages.</p>
<p>Discord works best if you download the <a
style=color:#C93980;
href="https://discord.com/download">Discord
desktop client</a>.</p>
<p>We will also use <b>Zoom</b> for the introduction
and
main video sessions. Please take a moment to <a
href="" style=color:#C93980;>Download
Zoom</a> ahead of time before the event day
so you are ready to go! We will add the
connection details to the <code
style="font-size:16px;">#general</code>
Discord channel.</p>
</td>
</tr>
<tr style="border-collapse:collapse;">
<td align="left"
style="padding:0;margin:0; text-align:center"
mc:edit="block_12">
<p> Use this link to join the Discord server:
</p>
<a href="https://discord.gg/H4fYmEe" target="_blank"
style=color:#C93980;>
https://discord.gg/H4fYmEe </a>
</td>
</tr>
<tr style="border-collapse:collapse;">
<td align="left"
style="padding:0;margin:0; text-align:left"
mc:edit="block_12">
<h3
style="margin:0;line-height:29px;mso-line-height-rule:exactly;font-family:'jost', tahoma, verdana, segoe, sans-serif;font-size:18px;font-style:normal;font-weight:bold;color:#283069;">
Get prepared:</h3>
<ul>
<li>We recommend that you prepare at least 5
beginner-friendly issues to be worked
on during the sprint. Here are some ideas to
get
you started:</li>
<ul>
<li>Identify issues that require low-effort
involvement (i.e. it will take no more
than
a couple of hours to complete).</li>
<li>Get creative: select both coding and
non-coding issues to work on the day
(i.e.
design a
logo, add sections to the docs, help
create a
schematic) this will make your project
more
accessible and inclusive for the
sprinters.</li>
<li>Label the issues accordingly on your
issue
tracker (i.e. beginner-friendly,
good-first
issue, whatever style you follow).</li>
</ul>
</ul>
</td>
</tr>
<tr style="border-collapse:collapse;">
<td align="left"
style="padding:0;margin:0; text-align:left"
mc:edit="block_12">
<h3
style="margin:0;line-height:29px;mso-line-height-rule:exactly;font-family:'jost', tahoma, verdana, segoe, sans-serif;font-size:18px;font-style:normal;font-weight:bold;color:#283069;">
Code of conduct:</h3>
<p> This event as all the PyCon related activites
adheres to the <a
href="https://us.pycon.org/2020/about/code-of-conduct/"
style=color:#C93980;>PyCon Code of
Conduct</a>. Make sure to read it and
familiarise with it before the event.
if you experience any issues during the day you
will be able to use the command
<code
style="font-size: 16px;">!coc-report</code>
to
contact the Code of
Conduct team.
</p>
</td>
</tr>
<tr style="border-collapse:collapse;">
<td align="left"
style="padding:0;margin:0; text-align:left"
mc:edit="block_22">
<h3
style="margin:0;line-height:29px;mso-line-height-rule:exactly;font-family:'jost', tahoma, verdana, segoe, sans-serif;font-size:18px;font-style:normal;font-weight:bold;color:#283069;">
Online Etiquette:</h3>
<ul>
<li> When you join Zoom make sure to use the
same
name that you used to register.
</li>
<li>Use either your real name or your GitHub
handle in the Discord server</li>
<li>Head to the <code
style="font-size:16px;"> #general</code>
channel and agree to the server rules. This
will allow you to see the other channels and
interact with folks.
</li>
<li>Ping one of the organisers in Discord to be
added assigned the mentor role.</li>
<li>Add your pronouns to Discord using the
command <code
style="font-size:16px;">!pronoun [she/her]</code>
with the pronouns you use [she/her],
[they/them], [he/his], [e/em], [zie,zie].
</li>
<li>Feel free to pin a message on your project's
cannel or add any URLs that folks might need
to participate.</li>
</ul>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr style="border-collapse:collapse;">
<td style="padding:0;margin:0;background-color:#FBDDEC;" bgcolor="#FBDDEC"
align="left">
<table width="100%" cellspacing="0" cellpadding="0"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td width="600" valign="top" align="center"
style="padding:0;margin:0;">
<table width="100%" cellspacing="0" cellpadding="0"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td align="center" style="padding:0;margin:0;"
mc:edit="block_13"> <img class="adapt-img"
src="https://lesmi.stripocdn.email/content/guids/CABINET_84164752b8a377d5e94cfc0e1ea2c8e6/images/6571515162565064.png"
alt="" width="600"
style="display:block;border:0;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic;">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table class="es-content" cellspacing="0" cellpadding="0" align="center" mc:repeatable
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%;">
<tr style="border-collapse:collapse;">
<td align="center" style="padding:0;margin:0;">
<table class="es-content-body"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#FBDDEC;"
width="600" cellspacing="0" cellpadding="0" bgcolor="#FBDDEC" align="center">
<tr style="border-collapse:collapse;">
<td align="left"
style="margin:0;padding-top:20px;padding-bottom:20px;padding-left:40px;padding-right:40px;">
<table width="100%" cellspacing="0" cellpadding="0"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td width="520" align="left" style="padding:0;margin:0;">
<table width="100%" cellspacing="0" cellpadding="0"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td align="center" style="padding:0;margin:0;"
mc:edit="block_14">
<h3
style="margin:0;line-height:24px;mso-line-height-rule:exactly;font-family:'Jost',tahoma, verdana, segoe, sans-serif;font-size:20px;font-style:normal;font-weight:normal;color:#333333;">
Do not forget to fill in this form to select
your
preferred slot for the sprint and update your
project information</h3>
<h3
style="margin:0;line-height:24px;mso-line-height-rule:exactly;font-family:tahoma, verdana, segoe, sans-serif;font-size:20px;font-style:normal;font-weight:normal;color:#333333;">
</h3>
<h3
style="margin:0;line-height:24px;mso-line-height-rule:exactly;font-family:tahoma, verdana, segoe, sans-serif;font-size:20px;font-style:normal;font-weight:normal;color:#333333;">
</h3>
</td>
</tr>
<tr style="border-collapse:collapse;">
<td align="center" style="padding:10px;margin:0;"
mc:edit="block_15"> <span class="es-button-border"
style="border-style:solid;border-color:transparent;background:#283069;border-width:0px;display:inline-block;border-radius:5px;width:auto;">
<a href="https://forms.gle/pBFEcfpYnjN2AMxF7"
class="es-button" target="_blank"
style="mso-style-priority:100 !important;text-decoration:none;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:'Jost',arial, 'helvetica neue', helvetica, sans-serif;font-size:18px;color:#FFFFFF;border-style:solid;border-color:#283069;border-width:10px 20px 10px 20px;display:inline-block;background:#283069;border-radius:5px;font-weight:normal;font-style:normal;line-height:22px;width:auto;text-align:center;">Update
information</a> </span>
</td>
</tr>
<tr style="border-collapse:collapse;">
<td align="center"
style="padding:0;margin:0;padding-top:10px;padding-bottom:10px;"
mc:edit="block_16">
<p
style="margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-size:16px;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;line-height:21px;color:#333333;">
Thank you again for your time to mentor! We are
grateful for your work in open source and
Python.
See you soon in online! Please do not hesitate
to reach us if you have additional questions
or would like an extra bit of help preparing
your project for the sprint. You can contact us
at: <a target="_blank"
href="mailto:[email protected]"
style="-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;font-size:16px;text-decoration:none;color:#283069;">[email protected]</a>
</p>
<p
style="margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-size:14px;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;line-height:21px;color:#333333;">
<br>
</p>
<p
style="margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-size:14px;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;line-height:21px;color:#333333;">
For more details visit <a target="_blank"
href="https://us.pycon.org/2020/hatchery/mentoredsprints/"
style="-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:'Jost', 'helvetica neue', helvetica, arial, sans-serif;font-size:14px;text-decoration:none; text-decoration: underline; color:#283069;">https://us.pycon.org/2020/hatchery/mentoredsprints/</a>
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table class="es-content" cellspacing="0" cellpadding="0" align="center" mc:repeatable
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%;">
<tr style="border-collapse:collapse;">
<td align="center" style="padding:0;margin:0;">
<table class="es-content-body"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#FBDDEC;"
width="600" cellspacing="0" cellpadding="0" bgcolor="#FBDDEC" align="center">
<tr style="border-collapse:collapse;">
<td style="margin:0;padding-top:10px;padding-bottom:20px;padding-left:20px;padding-right:20px;background-color:#283069;"
bgcolor="#283069" align="left">
</td>
</tr>
</table>
</td>
</tr>
</table>
<table class="es-footer" cellspacing="0" cellpadding="0" align="center" mc:repeatable
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%;background-color:transparent;background-repeat:repeat;background-position:center top;">
<tr style="border-collapse:collapse;">
<td align="center" style="padding:0;margin:0;">
<table class="es-footer-body" width="600" cellspacing="0" cellpadding="0" align="center"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:transparent;">
<tr style="border-collapse:collapse;">
<td align="left"
style="padding:0;margin:0;padding-top:20px;padding-left:20px;padding-right:20px;">
<table width="100%" cellspacing="0" cellpadding="0"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td width="560" valign="top" align="center"
style="padding:0;margin:0;">
<table width="100%" cellspacing="0" cellpadding="0"
style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td align="center"
style="margin:0;padding-top:5px;padding-bottom:5px;padding-left:20px;padding-right:20px;"
mc:edit="block_19">
<table width="100%" cellspacing="0" cellpadding="0"
border="0"
style="height:100%;mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;">
<tr style="border-collapse:collapse;">
<td
style="padding:0;margin:0px;border-bottom:1px solid #283069;background:none;height:1px;width:100%;">
</td>
</tr>
</table>