aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/home/timeline.html
blob: c3dd6e4d3eea05a4594ad95743b9cc3ce85e1c9c (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
{% extends 'base/base.html' %}
{% load static %}

{% block title %}Timeline{% endblock %}
{% block head %}
  <link rel="stylesheet" href="{% static "css/home/timeline.css" %}">
{% endblock %}

{% block content %}
  {% include "base/navbar.html" %}

  <section class="cd-timeline js-cd-timeline section">
    <div class="container cd-timeline__container">

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-pink cd-timeline__img--picture">
          <span class="icon">
            <i class="fa fa-comments"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Jul 11th, 2023</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Switch to new paste service</h2>
          <p class="content">
            We migrate over to <a href="https://github.com/supakeen/pinnwand">pinnwand</a>
            as the service that powers our paste bin over at
            <a href="https://paste.pythondiscord.com">https://paste.pythondiscord.com/</a>.
            We made the switch as it comes with native light/dark modes, support for multi-file
            pastes, additional support for text highlighting languages, and plus, it's written in
            Python!
          </p>
        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary cd-timeline__img--picture image">
          <img src="{% static "images/timeline/cd-icon-picture.svg" %}" alt="Picture">
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Jan 30th, 2023</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Retirement of Joe and Sebastiaan</h2>
          <p class="content">
            Having been at the helm of Python Discord for over 5 and 3 years respectively, Joe and
            Sebastiaan retire and step down. They gain the @Founders role and continue as advisors
            to the @Directors, the new name of the original @Owners role.

            At the same time, Mina and Zig join Leon as co-directors.
          </p>
        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-pink cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-comments"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Nov 25th, 2022</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Switch to forum-based help system</h2>
          <p class="content">
            We migrate our help system to use a forum channel, retiring our home-grown rotating help
            system after 3 years of service and nearly 500,000 help sessions. Forum channels offer
            a better experience as members can create their own dedicated thread in a discoverable place.
          </p>
        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary cd-timeline__img--picture image">
          <img src="{% static "images/timeline/cd-icon-picture.svg" %}" alt="Picture">
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Oct 24th, 2022</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Python 3.11 Release Stream</h2>
          <p class="content">
            With the Python 3.10 Release Stream being such a success, we brought it back for the
            release of Python 3.11. Hosted by Leon, and CPython 3.11 Release Manager, Pablo Galindo,
            they were joined by other CPython Core Developers. Together, they discuss the specific
            features and the overall development process of the release.
          </p>

          <div class="force-aspect-container">
            <iframe class="force-aspect-content" src="https://www.youtube.com/embed/PGZPSWZSkJI" frameborder="0"
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                    allowfullscreen></iframe>
          </div>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-lime cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-dice"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">July 21st, 2022</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Summer Code Jam 2022 (CJ9)</h2>
          <p class="content">
            We host the 9th Code Jam. This year, teams had to use <b>websockets</b> to create a
            project based on the theme, <b>It's not a bug, it's a feature</b>. In all, 24 teams
            submitted their projects. At the end, we held a livestream demoing the top 10 projects
            and announcing the winner!
          </p>

          <div class="force-aspect-container">
            <iframe class="force-aspect-content" src="https://www.youtube.com/embed/YZcVjFED6Hg" frameborder="0"
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                    allowfullscreen></iframe>
          </div>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div style="background-color: grey;" class="cd-timeline__img has-background-primary cd-timeline__img--picture">
          <i class="fa fa-handshake"></i>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">May 19th, 2022</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Partnership with pyqtgraph</h2>
          <p class="content">
            The <code>#pyqtgraph</code> channel is created for the Scientific Graphics and GUI
            library pyqtgraph, joining <code>#black-formatter</code>.
          </p>
        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-robot"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Feb 21st, 2022</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Addition of @Sir Robin</h2>
          <p class="content">
            Our arsenal of bots grows! We add @Sir Robin to power and manage all of our future
            events and to support the Events Team.
          </p>
        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-green cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-question"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Feb 12th, 2022</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Trivia Night</h2>
          <p class="content">
            How well do you know Python inside out? Members got to find out in a Trivia Night event.
            Contestants were given questions about Python's internals, its development, and more.
            To win, contestants had to get the most questions right while being fast to answer.
          </p>
        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary cd-timeline__img--picture image">
          <img src="{% static "images/timeline/cd-icon-picture.svg" %}" alt="Picture">
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Feb 9th, 2022</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Creation of Events Team</h2>
          <p class="content">
            We form the Events Team to organise and run future events. Led by Kat and comprised by
            staff members, the goal of the team is to ultimately host more events in a more
            sustainable way.
          </p>
        </div>
      </div>


      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-red cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-code"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Feb 2nd, 2022</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Deployment of Smarter Resources</h2>
          <p class="content">
            We gave our resources pages some much needed love and
            <a href="https://www.pythondiscord.com/resources/">
              reorganised them into a single page</a>,
            complete with a shiny new resource filter that allows you to more quickly find
            ones that relate to your interests, experience, learning style, and ability to pay!
          </p>
        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-dark-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-users"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Jan 19, 2022</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">We hit 300 000 members!</h2>
          <p class="content">
            Thanks to an increasing growth rate, Python Discord's membership count doubled from
            150,000 to 300,000 in less than a year!
          </p>
        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary cd-timeline__img--picture image">
          <img src="{% static "images/timeline/cd-icon-picture.svg" %}" alt="Picture">
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Oct 4th, 2021</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">We host the Python 3.10 Release Stream</h2>
          <p class="content">
            Leon and Pablo Galindo, CPython Core Developer and Release Manager, host the Python 3.10
            Release Stream, joined by other core devs Carol Willing, Irit Katriel, Łukasz Langa, and
            Brandt Bucher. They talked in-depth about the new features introduced in 3.10, the
            development of those features, and more!
          </p>

          <div class="force-aspect-container">
            <iframe class="force-aspect-content" src="https://www.youtube.com/embed/AHT2l3hcIJg" frameborder="0"
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                    allowfullscreen></iframe>
          </div>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div style="background-color: grey;" class="cd-timeline__img has-background-primary cd-timeline__img--picture">
          <i class="fa fa-handshake"></i>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">May 24th, 2021</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Partnership with Black</h2>
          <p class="content">
            We partner with the uncompromising code formatter project, Black, who were looking for a
            new home for their real-time chat. Python Discord ended up being that home, resulting in
            the creation of the <code>#black-formatter</code> channel.
          </p>
        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-orange cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-dice"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">July 9, 2021</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Summer Code Jam 2021 (CJ8)</h2>
          <p class="content">
            We host the 8th now-annual Code Jam. Teams had to create a program with an text-based user
            interface (TUI), all designed around the theme of “think inside the box.” Ultimately, 51
            teams submitted projects.
            <a href="https://www.pythondiscord.com/events/code-jams/8/">
              The winning submissions are listed on our website.
            </a>
          </p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-purple cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-palette"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">May 24, 2021</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Inaugural run of Pixels</h2>
          <p class="content">
            Inspired by the subreddit, r/place, Pixels was our collaborative canvas event held
            between May 25 to June 14, providing a beginner-friendly API to paint pixels on a
            virtual canvas.
          </p>
          <p class="content">
            Later, we released <a href="https://blog.pythondiscord.com/pixels-summer-2021/">a blog post</a>
            summarizing what happened, our motives, and some stories from during development.
          </p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary cd-timeline__img--picture image">
          <img src="{% static "images/timeline/cd-icon-picture.svg" %}" alt="Picture">
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">April 23, 2021</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Owners become PSF Fellows</h2>
          <p class="content">Joe, Leon, and Sebastiaan
            <a href="https://pyfound.blogspot.com/2021/04/python-software-foundation-fellow.html">
              are recognized as Python Software Foundation Fellows
            </a>
            for their substantial contributions to the Python ecosystem by fostering
            Python Discord.
          </p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-red cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fab fa-youtube"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Mar 21st, 2021</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Summer Code Jam 2020 Highlights</h2>
          <p class="content">
            We release a new video to our YouTube showing the best projects from the Summer Code Jam 2020.
            Better late than never!
          </p>

          <div class="force-aspect-container">
            <iframe class="force-aspect-content" src="https://www.youtube.com/embed/g9cnp4W0P54" frameborder="0"
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                    allowfullscreen></iframe>
          </div>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-purple cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-comment"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Mar 13th, 2021</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">New feature: Weekly discussion channel</h2>
          <p class="content">Every week (or two weeks), we'll be posting a new topic to discuss in a
            channel called <b>#weekly-topic-discussion</b>. Our inaugural topic is a PyCon talk by Anthony Shaw called
            <b>Wily Python: Writing simpler and more maintainable Python.</b></a>.
          </p>

          <div class="force-aspect-container">
            <iframe class="force-aspect-content" src="https://www.youtube.com/embed/dqdsNoApJ80" frameborder="0"
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                    allowfullscreen></iframe>
          </div>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-pink cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-microphone"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Mar 13th, 2021</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">We're on the Teaching Python podcast!</h2>
          <p class="content">Leon joins Sean and Kelly on the Teaching Python podcast to discuss how the pandemic has
            changed the way we learn, and what role communities like Python Discord can play in this new world.
            You can find the episode <a href="https://www.teachingpython.fm/63">at teachingpython.fm</a>.
          </p>

          <iframe width="100%" height="166" frameborder="0" scrolling="no"
                src="https://player.fireside.fm/v2/UIYXtbeL+qOjGAsKi?theme=dark"
          ></iframe>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-green cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-microphone"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Mar 1st, 2021</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Leon Sandøy appears on Talk Python To Me</h2>
          <p class="content">Leon goes on the Talk Python to Me podcast with Michael Kennedy
            to discuss the history of Python Discord, the critical importance of culture, and how to run a massive
            community. You can find the episode <a href="https://talkpython.fm/episodes/show/305/python-community-at-python-discord"> at talkpython.fm</a>.
          </p>

          <iframe width="100%" height="166" scrolling="no" frameborder="no"
               src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/996083146&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false">
          </iframe>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-dark-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-users"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Feb 18th, 2021</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">We now have 150,000 members!</h2>
          <p class="content">Our growth continues to accelerate.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-music"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">February 8th, 2021</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">We release The PEP 8 song</h2>
          <p class="content">We release the PEP 8 song on our YouTube channel, which finds tens of
            thousands of listeners!</p>

          <div class="force-aspect-container">
            <iframe class="force-aspect-content" src="https://www.youtube.com/embed/hgI0p1zf31k" frameborder="0"
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                    allowfullscreen></iframe>
          </div>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-red cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-snowflake"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">December 1st - 25th, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Advent of Code attracts hundreds of participants</h2>
          <p class="content">
            A total of 443 Python Discord members sign up to be part of
            <a href="https://adventofcode.com/">Eric Wastl's excellent Advent of Code event</a>.
            As always, we provide dedicated announcements, scoreboards, bot commands and channels for our members
            to enjoy the event in.

          </p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-orange cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-wrench"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Nov 29th, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">We migrate all our infrastructure to Kubernetes</h2>
          <p class="content">As our tech stack grows, we decide to migrate all our services over to a
            container orchestration paradigm via Kubernetes. This gives us better control and scalability.
            <b>Joe Banks</b> takes on the role as DevOps Lead.
          </p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-dark-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-users"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Oct 22nd, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Python Discord hits 100,000 members!</h2>
          <p class="content">Only six months after hitting 40,000 users, we hit 100,000 users. A
            monumental milestone,
            and one we're very proud of. To commemorate it, we create this timeline.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary cd-timeline__img--picture image">
          <img src="{% static "images/timeline/cd-icon-picture.svg" %}" alt="Picture">
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Oct 21st, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Python Discord hosts the 2020 CPython Core Developer Q&A</h2>
          <div class="force-aspect-container">
            <iframe class="force-aspect-content" src="https://www.youtube.com/embed/gXMdfBTcOfQ" frameborder="0"
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                    allowfullscreen></iframe>
          </div>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-pink cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-handshake"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Aug 16th, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Python Discord is now the new home of the PyWeek event!</h2>
          <p class="content">PyWeek, a game jam that has been running since 2005, joins Python
            Discord as one of our official events. Find more information about PyWeek on <a
                href="https://pyweek.org/">their official website</a>.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-dice"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Jul 31st, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">PyDis summer code jam 2020 with the theme “Early Internet” and Django as the technology</h2>
          <p class="content">Sponsored by the Django Software Foundation and JetBrains, the Summer
            Code Jam for 2020 attracts hundreds of participants, and sees the creation of some fantastic
            projects. Check them out in our judge stream below:</p>

          <div class="force-aspect-container">
            <iframe class="force-aspect-content" src="https://www.youtube.com/embed/OFtm8f2iu6c" frameborder="0"
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                    allowfullscreen></iframe>
          </div>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-red cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-chart-bar"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Jun 4th, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Python Discord Public Statistics are now live</h2>
          <p class="content">After getting numerous requests to publish beautiful data on member
            count and channel use, we create <a href="https://stats.pythondiscord.com/">stats.pythondiscord.com</a> for
            all to enjoy.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-pink cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-handshake"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">May 28th, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Python Discord is now listed on python.org/community</h2>
          <p class="content">After working towards this goal for months, we finally work out an
            arrangement with the PSF that allows us to be listed on that most holiest of websites:
            https://python.org/. <a href="https://youtu.be/yciX2meIkXI?t=3">There was much rejoicing.</a></p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-green cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-comments"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">May 25th, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">ModMail is now live</h2>
          <p class="content">Having originally planned to write our own ModMail bot from scratch, we
            come across an exceptionally good <a href="https://github.com/kyb3r/modmail">ModMail bot by
              kyb3r</a> and decide to just self-host that one instead.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-purple cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-gamepad"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Apr 17th, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">PyDis Game Jam 2020 with the “Three of a Kind” theme and Arcade as the technology</h2>
          <p class="content">The creator of Arcade, Paul Vincent Craven, joins us as a judge.
            Several of the Code Jam participants also end up getting involved contributing to the Arcade
            repository.</p>

          <div class="force-aspect-container">
            <iframe class="force-aspect-content" src="https://www.youtube.com/embed/KkLXMvKfEgs" frameborder="0"
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                    allowfullscreen></iframe>
          </div>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-dark-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-users"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Apr 14, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Python Discord hits 40,000 members, and is now bigger than Liechtenstein.</h2>
          <p class="content"><img
              src="https://raw.githubusercontent.com/python-discord/branding/main/wallpapers/bigger%20than%20liechtenstein/pydis%20postcard.png">
          </p>
        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-green cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-comments"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Apr 5th, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">The new help channel system is live</h2>
          <p class="content">We release our dynamic help-channel system, which allows you to claim
            your very own help channel instead of fighting over the static help channels. We release a <a
                href="https://pythondiscord.com/pages/resources/guides/help-channels/">Help Channel Guide</a> to
            help our members fully understand how the system works.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-dice"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Jan 17, 2020</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">PyDis sixth code jam with the theme “Ancient technology” and the technology Kivy</h2>
          <p class="content">Our Code Jams are becoming an increasingly big deal, and the Kivy core
            developers join us to judge the event and help out our members during the event. One of them,
            @tshirtman, even joins our staff!</p>

          <div class="force-aspect-container">
            <iframe class="force-aspect-content" src="https://www.youtube.com/embed/8fbZsGrqBzo" frameborder="0"
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                    allowfullscreen></iframe>
          </div>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-dark-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-users"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Dec 22nd, 2019</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">PyDis hits 30,000 members</h2>
          <p class="content">More than tripling in size since the year before, the community hits
            30000 users. At this point, we're probably the largest Python chat community on the planet.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary cd-timeline__img--picture image">
          <img src={% static "images/timeline/cd-icon-picture.svg" %} alt="Picture">
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Sept 22nd, 2019</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Sebastiaan Zeef becomes an owner</h2>
          <p class="content">After being a long time active contributor to our projects and the driving
            force behind many of our events, Sebastiaan Zeef joins the Owners Team alongside Joe & Leon.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-lime cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-scroll"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Oct 26th, 2019</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">The code of conduct is created</h2>
          <p class="content">Inspired by the Adafruit, Rust and Django communities, an essential
            community pillar is created; Our <a href="https://pythondiscord.com/pages/code-of-conduct/">Code of
              Conduct.</a></p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-orange cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-code"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Sep 15, 2019</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">The Django rewrite of pythondiscord.com is now live!</h2>
          <p class="content">The site is getting more and more complex, and it's time for a rewrite.
            We decide to go for a different stack, and build a website based on Django, DRF, Bulma and
            PostgreSQL.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-dark-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-users"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Apr 8th, 2019</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">PyDis hits 15,000 members; the “hot ones special” video is released</h2>
          <div class="force-aspect-container">
            <iframe class="force-aspect-content" src="https://www.youtube.com/embed/DIBXg8Qh7bA" frameborder="0"
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                    allowfullscreen></iframe>
          </div>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-orange cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-code"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Dec 19th, 2018</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">django-simple-bulma is released on PyPi</h2>
          <p class="content">Our very first package on PyPI, <a
              href="https://pypi.org/project/django-simple-bulma/">django-simple-bulma</a> is a package that
            sets up the Bulma CSS framework for your Django application and lets you configure everything in
            settings.py.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-dark-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-users"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Nov 24th, 2018</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">PyDis hits 10,000 members</h2>
          <p class="content">We partner with RLBot, move from GitLab to GitHub, and start putting
            together the first Advent of Code event.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-dice"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Oct 1st, 2018</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">First Hacktoberfest PyDis event; @Sir Lancebot is created</h2>
          <p class="content">We create a second bot for our community and fill it up with simple,
            fun and relatively easy issues. The idea is to create an approachable arena for our members to cut
            their open-source teeth on, and to provide lots of help and hand-holding for those who get stuck.
            We're training our members to be productive contributors in the open-source ecosystem.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-pink cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-handshake"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Jul 10th, 2018</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">PyDis is now partnered with Discord; the vanity URL discord.gg/python is created</h2>
          <p class="content">After being rejected for their Partner program several times, we
            finally get approved. The recent partnership with the r/Python subreddit plays a significant role in
            qualifying us for this partnership.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-dark-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-users"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Jun 20th, 2018</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">PyDis hits 5,000 members and partners with r/Python</h2>
          <p class="content">As we continue to grow, we approach the r/Python subreddit and ask to
            become their official Discord community. They agree, and we become listed in their sidebar, giving
            us yet another source of new members.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-pink cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-handshake"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Jun 9th, 2018</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Do You Even Python and PyDis merger</h2>
          <p class="content">At this point in time, there are only two serious Python communities on
            Discord - Ours, and one called Do You Even Python. We approach the owners of DYEP with a bold
            proposal - let's shut down their community, replace it with links to ours, and in return we will let
            their staff join our staff. This gives us a big boost in members, and eventually leads to @eivl and
            @Mr. Hemlock joining our Admin team</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-lime cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-scroll"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">May 21st, 2018</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">The privacy policy is created</h2>
          <p class="content">Since data privacy is quite important to us, we create a privacy page
            pretty much as soon as our new bot and site starts collecting some data. To this day, we keep <a
                href="https://pythondiscord.com/pages/privacy/">our privacy policy</a> up to date with all
            changes, and since April 2020 we've started doing <a
                href="https://pythondiscord.notion.site/6784e3a9752444e89d19e65fd4510d8d">monthly data reviews</a>.</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-dice"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Mar 23rd, 2018</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">First code jam with the theme “snakes”</h2>
          <p class="content">Our very first Code Jam attracts a handful of users who work in random
            teams of 2. We ask our participants to write a snake-themed Discord bot. Most of the code written
            for this jam still lives on in Sir Lancebot, and you can play with it by using the
            <code>.snakes</code> command. For more information on this event, see <a
                href="https://pythondiscord.com/pages/code-jams/code-jam-1-snakes-bot/">the event page</a></p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-dark-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-users"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Mar 4th, 2018</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">PyDis hits 2,000 members; pythondiscord.com and @Python are live</h2>
          <p class="content">The public moderation bot we're using at the time, Rowboat, announces
            it will be shutting down. We decide that we'll write our own bot to handle moderation, so that we
            can have more control over its features. We also buy a domain and start making a website in Flask.
          </p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary cd-timeline__img--picture image">
          <img src={% static "images/timeline/cd-icon-picture.svg" %} alt="Picture">
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Feb 3rd, 2018</span>
        </div>

            <div class="cd-timeline__content box">
                <h2 class="title is-4">Our logo is born. Thanks @Aperture!</h2>
                <p class="pydis-logo-banner has-background-primary"><img
                        src="https://raw.githubusercontent.com/python-discord/branding/main/logos/logo_banner/logo_site_banner.svg">
                </p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary pastel-dark-blue cd-timeline__img--picture">
          <span class="icon is-large">
            <i class="fa fa-users"></i>
          </span>
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Nov 10th, 2017</span>
        </div>

        <div class="cd-timeline__content box">
          <h2 class="title is-4">Python Discord hits 1,000 members</h2>
          <p class="content">Our main source of new users at this point is a post on Reddit that
            happens to get very good SEO. We are one of the top 10 search engine hits for the search term
            "python discord".</p>

        </div>
      </div>

      <div class="cd-timeline__block">
        <div class="cd-timeline__img has-background-primary cd-timeline__img--picture image">
          <img src="{% static "images/timeline/cd-icon-picture.svg" %}" alt="Picture">
        </div>

        <div class="is-flex is-justify-content-space-between">
          <span class="cd-timeline__date has-text-grey">Jan 8th, 2017</span>
        </div>

        <div class="cd-timeline__content box">

          <h2 class="title is-4">Python Discord is created</h2>
          <p class="content"><strong>Joe Banks</strong> becomes one of the owners around 3 days after it
            is created, and <strong>Leon Sandøy</strong> (lemon) joins the owner team later in the year, when the community
            has around 300 members.</p>
        </div>
      </div>

    </div>
  </section>

  <script src="{% static "js/timeline/main.js" %}"></script>
{% endblock %}