forked from python-sverige/python-sverige.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1190 lines (1128 loc) · 67.8 KB
/
index.html
File metadata and controls
1190 lines (1128 loc) · 67.8 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, shrink-to-fit=no">
<!-- SEO Meta Tags -->
<meta name="description" content="Aria is a business focused HTML landing page template built with Bootstrap to help you create lead generation websites for companies and their services.">
<meta name="author" content="Inovatik">
<!-- OG Meta Tags to improve the way the post looks when you share the page on LinkedIn, Facebook, Google+ -->
<meta property="og:title" content="PyCon Sweden" />
<meta property="og:description" content="PyCon Sweden 2020 will take place between November 12 - 13 Online. Register now!" />
<meta property="og:image" content="http://www.pycon.se/images/facebook-thumbnail-resize.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="fb:admins" content="538208697" />
<meta property="og:site_name" content="PyCon Sweden" />
<meta property="og:type" content="website" />
<meta name="author" content="Python Sverige">
<meta name="keywords" content="python pycon django conference meetup">
<meta name="description" content="PyCon Sweden 2020 will take place between November 12 - 13 Online. Register now!" />
<meta property="og:image" content="http://www.pycon.se/images/linkedin-thumbnail.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="180" />
<meta property="og:image:height" content="95" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@pyconse">
<meta name="twitter:title" content="PyCon Sweden 2020">
<meta name="twitter:description" content="PyCon Sweden 2020 will take place between November 12 - 13 Online. Register now!">
<meta name="twitter:image" content="http://www.pycon.se/images/facebook-thumbnail-resize.png">
<!-- Website Title -->
<title>PyCon Sweden</title>
<!-- Styles -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:500,700&display=swap&subset=latin-ext" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600&display=swap&subset=latin-ext" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/fontawesome-all.css" rel="stylesheet">
<link href="css/swiper.css" rel="stylesheet">
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" href="images/favicon.ico">
</head>
<body data-spy="scroll" data-target=".fixed-top">
<!-- Preloader -->
<div class="spinner-wrapper">
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
<!-- end of preloader -->
<!-- Navbar -->
<a name="top"></a>
<nav class="nvabar-header navbar navbar-expand-md navbar-dark navbar-custom fixed-top">
<div class="row">
<div class="col-10">
<!-- Text Logo - Use this if you don't have a graphic logo -->
<a class="navbar-brand logo-text page-scroll" href="#top">PyCon Sweden</a>
<!-- Image Logo -->
<!-- <a class="navbar-brand logo-image" href="index.html"><img src="images/PyCon_logo_2019.png" alt="alternative"></a> -->
</div> <!-- end of col -->
<!-- Mobile Menu Toggle Button -->
<div class="col-2">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-awesome fas fa-bars"></span>
<span class="navbar-toggler-awesome fas fa-times"></span>
</button>
</div> <!-- end of col -->
</div> <!-- end of row -->
<!-- end of mobile menu toggle button -->
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link page-scroll" href="#keynotes">KEYNOTES</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#programme">PROGRAMME</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#sponsors">SPONSORS</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#jobs">JOBS</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#about">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#contact">CONTACT</a>
</li>
</ul>
<span class="nav-item social-icons">
<span class="fa-stack">
<a target="_blank" href="https://www.facebook.com/pyconse">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a target="_blank" href="https://twitter.com/pyconse">
<span class="hexagon"></span>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a target="_blank" href="https://www.linkedin.com/company/pycon-sweden">
<span class="hexagon"></span>
<i class="fab fa-linkedin-in fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a target="_blank" href="https://www.instagram.com/pycon_sweden">
<span class="hexagon"></span>
<i class="fab fa-instagram fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a target="_blank" href="https://www.youtube.com/c/PyConSweden">
<span class="hexagon"></span>
<i class="fab fa-youtube fa-stack-1x"></i>
</a>
</span>
</span>
</div>
</nav> <!-- end of navbar -->
<!-- end of navbar -->
<!-- Header -->
<header id="header" class="header">
<div class="header-content">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-container" style="height:300px">
<h1><span id="js-rotating">
PyCon Sweden 2020,
TWO Days Conference,
12-13 November 2020,
Completely ONLINE,
Multiple Tracks!
</span></h1>
<br>
<h3 style="color:white">PyCon Sweden 2020 will be held 12-13 November 2020. Registration opening soon!</h3>
</div>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of header-content -->
</header> <!-- end of header -->
<!-- end of header -->
<!-- Keynotes -->
<div id="keynotes" class="cards-2">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">KEYNOTES</div>
</div>
</div>
<div class="row">
<div class="col-lg-7 col-xl-6">
<div class="text-container">
<h2>Samira Ali Gomes</h2>
<div class="image-container">
<img class="img-fluid" src="images/Samira_resized.jpg" alt="alternative" >
</div> <!-- end of image-container -->
<p>
Samira Ali Gomes was born and raised in Stockholm, Sweden and is now based in London, UK.
She is a social entrepreneur and has worked with and created many initiatives to create
impact for different communities. She is the founder and Events and Production Manager of
<a href="https://www.emmstech.se">EMMSTechnology</a>, a non-profit to empower and educate
WOC in the tech industry, and the
founder of
<a href="https://www.instagram.com/madeinorten/?fbclid=IwAR0T8RX6kIWNP8ciTTKCoFnhzutdH2D1_JzL4qEF0GbkS0Urbc_U4PnNC3Q">Made in Orten</a>,
an initiative which aims to help young POC enter the communication
industry.
</p>
<p>
A Hyper Island alumni, and currently a Programme Manager at
<a href="https://kingscross.impacthub.net">Impact Hub Kings Cross</a>,
Samira has worked extensively with the professional development of women and
people of colour in different fields, and uses her skills from working in tech
and communication to empower and enable impact and change.
</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-7 col-xl-6">
<div class="text-container">
<h2>Alexander Hultnér</h2>
<div class="image-container">_
<img class="img-fluid" src="images/Alexander_cropped.jpg" alt="alternative">
</div> <!-- end of image-container -->
<p>
Alex is a freelancing consultant and speaker via <a href="https://hultner.se/">Hultnér Technologies AB</a>.
He's been hacking on hardware and software since early childhood and loves to
solve problems. Python has been his primary focus for the past 5 years.
</p>
<p>
Alongside consulting he's performing workshops and courses. He's currently
making an online course on Property-Based Testing in Python, early signups
<a href="https://docs.google.com/forms/d/e/1FAIpQLScc_W47WklNw-3Z-a2s3wqM5dJQ-Vj8HUPzFBBpf38Q49w45Q/viewform>">here</a>.
</p>
<p>
He is an avid speaker who's previously spoken at PyCon SE, and recently at
EuroPython, PiterPy, FlaskCon, Python Pizza, and various other conferences.
Check out some of his recent talks on
<a href="https://www.youtube.com/channel/UCa6mlAmHUOpUJAjerJ0RSzw?view_as=subscriber"> YouTube</a>.
</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row Alexander-->
<div class="row">
<div class="col-lg-7 col-xl-6">
<div class="text-container">
<h2>Ákos Hochrein</h2>
<div class="image-container">
<img class="img-fluid" src="images/Akos_resized.jpg" alt="alternative">
</div> <!-- end of image-container -->
<p>
Ákos Hochrein, software engineer, engineering manager and book enthusiast.
He worked at various companies both on the frontend and the backend to deliver
highly available and scalable solutions. Now he is managing a team of 9 people
at <a target="_blank" href="https://prezi.com/">Prezi</a> to the same as he has done for about a decade. He is also the author
of the book <b>"Designing Microservices with Django."</b> In his free time, he likes
to read, play video games and go to IKEA to debate about wardrobes.
</p>
<p>
We look forward to see Ákos on our virtual stage in November. Until then you can find his
talks from previous visits at PyCon Sweden on our YouTube channel:
</p>
<p>
<a target="_blank" href="https://www.youtube.com/watch?v=EX4YsevmZBg">Asyncio in the wild, PyCon Sweden 2019</a>
</p>
<p>
<a target="_blank" href="https://www.youtube.com/watch?v=IMxUaO5ud58">Messenger Chat with Python, PyCon Sweden 2017</a>
</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-7 col-xl-6">
<div class="text-container">
<h2>Lucie Gattepaille</h2>
<div class="image-container">
<img class="img-fluid" src="images/Lucie_cropped.jpg" alt="alternative">
</div> <!-- end of image-container -->
<p>The battle against the covid-19 pandemic is unfortunately not over, as can be seen by the
increased resurgence of new cases during the summer 2020 in many countries. Meanwhile,
pharmaceutical companies are racing to research effective vaccines against the virus.
As these vaccines might go through accelerated approval procedures, evidence towards
their safety might be more uncertain than usual. Generally, safety concerns of vaccines
and, more broadly, medicines, can manifest in unexpected forms, making them harder to be
recognized, assessed and acted upon in a timely fashion. Therefore, effective post-marketing
surveillance strategies are of great importance for public health.
<br>
As senior data scientist at the <a target="_blank" href="https://www.who-umc.org/">Uppsala Monitoring Centre</a> ,
Lucie has focused on extracting
meaningful information about medicine safety from different data sources, including social
media. Now as Head of Data Science, she leads a team of talented data scientists on a journey
to advance the science of pharmacovigilance, together with research pharmacists and medical
doctors, to improve patient safety worldwide in collaboration with WHO.
In her presentation Lucie will introduce the main challenges in post-marketing surveillance
and demonstrate her group's recent research developments to answer these challenges.
</p>
<p>
</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
<!-- end of keynotes -->
<!-- Programme -->
<div id="programme" class="cards-2" >
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">PROGRAMME</div>
<div class="row">
<div class="col-lg-12">
<div class="text-container">
<p>
Python is a versatile language with a rich ecosystem of tools and libraries, supporting a
wide variety of applications. This ranges from deep-learning to backend system developments,
scientific research and the list goes on. This year, we will have multiple tracks to cover the
interest of the comunity, from traditional software engineering, web, to data science, and even
High-Performance Computing as well performance engineering!
</p>
<p>
Due to the ongoing COVID-19 situation, we decided
that this edition will be held <b>completely online</b> to ensure safe conference
participation.
<br>
Therefore we will stream PyCon Sweden 2020 directly into our
<a target="_blak" href="https://www.youtube.com/channel/UCH_2cuWzFMyCPvm75lJJ6wg"><b>YouTube channel</b></a>
and were all talks will be available afterwards.
</p>
<p>
With our streaming platform we will be able to run multiple tracks simultaneously so that every Python
enthusiast can find content matching their interest. We will release the details for registration soon.
But before that, take a look at the tentative program for this year's conference!
</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of filter -->
<!-- end of programme text -->
<!-- Description -->
<div class="cards-1">
<div class="container">
<div class="row">
<div class="col-lg-12">
<!-- Card -->
<div class="card" style="max-width: 1200rem;">
<div class="card-body">
<div style="text-align: center;">
<span class="fa-stack">
<span class="hexagon" ></span>
<i class="fas fa-cogs fa-stack-1x"></i>
</span>
<h4 class="card-title">Software Engineering, Testing, and DevOps</h4>
</div>
<p>Python has a nice ecosystem of software engineering tools, such as testing frameworks. Python also
provides different facilitates for building better software, either through the language, or
libraries. We look at Python's role in different stages of the software engineering process.
</p>
<div class="col-lg-12" align="center">
<p>Writing Prometheus Exporters in Python <br>By <i>Moshe Zadka</i></p>
<p>Seamlessly adding extra parameters to a function: anatomy of a meta-decorator
<br>By <i>João Sebastião de Oliveira Bueno</i></p>
<p>Slay that Beast: Refactoring Legacy Code Without Hesitation <br>By <i>Olof Bjarnason</i></p>
<p>Solution Accelerators with Jinja <br>By <i>Raza Balbale</i></p>
<p>Looking for that needle in the hay of Vault's audit log <br>By <i>Andrey Devyatkin</i></p>
<p>How to Mock Well in Tests - Traps and Pitfalls When Using Mock and Pytest <br>By <i>Cheuk Ting Ho</i></p>
<p>I want you to write less Python code <br>By <i>Gunnar Grosch</i></p>
</div>
</div>
</div>
<!-- end of card -->
</div>
</div>
<div class="row">
<div class="col-lg-12">
<!-- Card -->
<div class="card" style="max-width: 1200rem;">
<div class="card-body">
<div style="text-align: center;">
<span class="fa-stack">
<span class="hexagon" ></span>
<i class="fas fa-database fa-stack-1x"></i>
</span>
<h4 class="card-title">Big Data / Data Science</h4>
</div>
<p>Python is perhaps the most widely used computer language in Data science. With a large
number of libraries and frameworks supporting data science research. We look at the tools,
use-cases and libraries in Python that support research and prototyping of the data
science workflow.
</p>
<div class="col-lg-12" align="center">
<p>Production ready machine learning pipelines in H&M <br>By <i>Misbah Uddin</i></p>
<p>Why play against us when you can play with us?: building collaborative human-AI gaming
experiences with PyGame and reinforcement learning <br>By <i>Camilla Montonen</i></p>
<p>Machine learning classifier model to predict borehole stability in oil & gas well with
Scikit-learn library <br>By <i>Bertha Amelia</i></p>
<p>Dont just go with the flow using Airflow <br>By Kevin Neville</p>
<p>Walkthrough of The Worlds Most Powerful NLP Algorithm - GPT-3 <br>By <i>Olle Green</i></p>
<p>Intro to Elyra - an AI centric extension for JupyterLab <br>By <i>Yiwen Li</i></p>
<p>Identifying trends and influencers via YouTube interactions using open APIs and NLP
<br>By <i>Jyotika Singh</i></p>
<p>Resampling Time Series With Python & Pandas <br>By <i>Kalyan Prasad</i></p>
<p>Getting grip of handling imbalanced dataset <br>By <i>Ravi Singh</i></p>
</div>
</div>
</div>
<!-- end of card -->
</div>
</div>
<div class="row">
<div class="col-lg-12">
<!-- Card -->
<div class="card" style="max-width: 1200rem;">
<div class="card-body">
<div style="text-align: center;">
<span class="fa-stack">
<span class="hexagon" ></span>
<i class="fas fa-space-shuttle fa-stack-1x"></i>
</span>
<h4 class="card-title">High-Performance / Scientific Computing</h4>
</div>
<div class="col-lg-12" align="center">
<p>Python is one of the programming language of choice in the scientific community.
While easy to create proof-of-concept prototype, it can suffer from performance
bottlenecks. However, the use of high performance and optimized Python software
are increasingly popular on HPC and scientific computing. We look at the current
state of Python software performance engineering and scientific computation.</p>
<p>A Beginners Guide to GPUs for Pythonistas <br>By <i>Marlene Mhangami</i></p>
<p>Accelerating Scientific Computing using Numba <br>By <i>Ankit Mahato</i></p>
<p>Video of Corona Lockdown using Exax <br>By <i>Anders Berkeman</i></p>
<p>Distributed Data pipelines in Python <br>By <i>Bhavani Ravi</i></p>
<p>Profiling Python by Example <br>By <i>Eyal Trabelsi</i></p>
</div>
</div>
</div>
<!-- end of card -->
</div>
</div>
<div class="row">
<div class="col-lg-12">
<!-- Card -->
<div class="card" style="max-width: 1200rem;">
<div class="card-body">
<div style="text-align: center;">
<span class="fa-stack">
<span class="hexagon" ></span>
<i class="fas fa-desktop fa-stack-1x"></i>
</span>
<h4 class="card-title">Web</h4>
</div>
<div class="col-lg-12" align="center">
<p>Python powers many websites and backends using frameworks such as Django and other backend
technologies. We look at Python's use along the web service stack.
</p>
<p>Internet of a lot of things - Can I bbq now? <br>By <i>Mazda Imani</i></p>
<p>Django is slow, if you do it wrong. <br>By <i>Magnus Knutas</i></p>
<p>Machine Learning to auto-navigate websites <br>By <i>Marcus Näslund</i></p>
<p>Journey to the Centre of Django <br>By <i>Agustín Scaramuzza</i></p>
<p>Building a Production Ready Search Engine using Python and Elasticsearch <br>By <i>Harshit Prasad</i></p>
<p>Semantic technologies for widely diverse activities including knowledge management,
worldbuilding and storytelling <br>By <i>Brett Alistair Kromkamp</i></p>
<p>Developing a Single-Sign-On Service using Django <br>By <i>Vibhu Agarwal</i></p>
<p>Websockets and webhooks done right <br>By <i>Christian Barra</i></p>
</div>
</div>
</div>
<!-- end of card -->
<!-- Card -->
<div class="card" style="max-width: 1200rem;">
<div class="card-body">
<div style="text-align: center;">
<span class="fa-stack">
<span class="hexagon" ></span>
<i class="fas fa-university fa-stack-1x"></i>
</span>
<h4 class="card-title">Education, Career, and Best Practices</h4>
</div>
<div class="col-lg-12" align="center">
<p>IT education in schools is a hot topic in recent years. Python has become a
candidate first language in schools for many of its nice properties. Teaching Python
is however not always easy. We look at the techniques, experiences and case-studies of
IT education using Python as well as teaching Python. We also learn about the career
aspect of being a Python developer and best practices.
</p>
<p>Teaching Python to Grade 8 Students <br>By <i>Henrik Warne</i></p>
<p>Creating the Next Generation of Billionaires - Part 2 <br>By <i>Lilian Nandi</i></p>
<p>Python worst Practices AKA Anti-Patterns <br>By <i>Pratibha Jagnere</i></p>
<p>Much more then Bhaskara : How to use Python to create better math lessons <br>By <i>Jerônimo Medina Madruga</i></p>
<p>Creative coding in Python <br>By <i>Beatrice Ionascu</i></p>
<p>Our customers don’t care that we are agile! <br>By <i>Sara Wänerskär</i></p>
<p>From Dabbler to Developer <br>By <i>Jessica Shortz</i></p>
</div>
</div>
</div>
<!-- end of card -->
</div>
</div>
<div class="row">
<div class="col-lg-12">
<!-- Card -->
<div class="card" style="max-width: 1200rem;">
<div class="card-body">
<div style="text-align: center;">
<span class="fa-stack">
<span class="hexagon" ></span>
<i class="fas fa-toolbox fa-stack-1x"></i>
</span>
<h4 class="card-title">Workshops</h4>
</div>
<div class="col-lg-12" align="center">
<p>While we are meeting online this year, we will have workshops where you get to see and
follow a demonstration, as well as interacting with the presenter through chatting!
</p>
<p>How to make opportunities fall into your lap <br>By <i>Ana Clara Cavalcante</i></p>
<p>Python Serverless Microservices <br>By <i>Nilo Ney Coutinho Menezes</i></p>
<p>Creative coding in Python <br>By <i>Beatrice Ionascu</i></p>
<p>Modern Python Developer's Toolkit <br>By <i>Sebastian Witowski</i></p>
</div>
</div>
</div>
<!-- end of card -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of cards-1 -->
<!-- end of description -->
<!-- Sponsors -->
<div id="sponsors" class="cards-2">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">SPONSORS</div>
</div>
</div>
<p_space><br></p_space>
<div class="row">
<div class="col-lg-12">
<div class="row">
<div class="col-lg-6 pb-4 d-flex justify-content-center align-items-center">
<a href="https://funnel.io/" target="_blank">
<img src="images/sponsors/funnel-logo.png" alt="" class="img-responsive w300">
</a>
</div>
<div class="col-lg-5 pb-4 d-flex justify-content-center align-items-center">
<a href="https://career.hm.com/content/hmcareer/en_gb/workingathm/what-can-you-do-here/Head%20Office%20Sweden/BusinessTech.html" target="_blank">
<img src="images/sponsors/LogotypeH&MGroup.jpg" alt="" class="img-responsive w300">
</a>
</div>
</div>
<p_space><br></p_space>
<div class="row">
<div class="col-lg-4 pb-4 d-flex justify-content-center align-items-center">
<a href="https://jobs.lever.co/klarna?lever-source%5B0%5D=pyconse2020&team=Engineering" target="_blank">
<img src="images/sponsors/Klarna_PaymentBadge_OutsideCheckout_Pink.png" alt="" class="img-responsive w260">
</a>
</div>
<div class="col-lg-4 pb-4 d-flex justify-content-center align-items-center">
<a href="https://www.sigmait.se" target="_blank">
<img src="images//sponsors/Sigma-Outline_svart_pycon.png" alt="" class="img-responsive w260">
</a>
</div>
<div class="col-lg-4 pb-4 d-flex justify-content-center align-items-center">
<a href="https://46elks.se/" target="_blank">
<img src="images/sponsors/46elks-logo-blue.png" alt="" class="img-responsive w200">
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<p class="p-heading">
Are you interested in sponsoring? Reach out to
<a href="mailto:info@pycon.se">info@pycon.se</a>
</p>
</div>
</div>
</div> <!-- end of container -->
</div> <!-- end of filter -->
<!-- end of projects -->
<!-- Job Opportunities -->
<div id="jobs" class="cards-2">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">JOB OPPORTUNITIES</div>
</div>
</div>
<br>
<div class="row">
<!-- end of col -->
<div class="col-lg-7 col-xl-6">
<div class="text-container">
<h2>
<div class="col-lg-5 col-xl-6">
<div class="image-container">
<a href="https://46elks.se/jobs" target="_blank">
<img src="images/sponsors/46elks-logo-blue.png" alt="" class="img-responsive w260">
</a>
</div> <!-- end of image-container -->
</div>
</h2>
<p>
We at 46elks make it easy for developers to use mobile networks through an API.
In the past, large sums of money were needed and it took a long time. Now developers
can get started sending and receiving text messages, and automate phone calls in
ten minutes.
</p>
<p>
We think this is cool and we are proud of what we do while we strive to continue
to improve.
We like to use technology to solve problems. We strive to focus ourefforts on
the areas where we can currently do the most good.
</p>
<p>Vill du vara med i vårt team? Titta på våra
<a href="https://46elks.com/jobs" target="_blank">
lediga positioner
</a>
och lär känna oss.
</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-7 col-xl-6">
<div class="text-container">
<br><br>
<h2>
<div class="col-lg-5 col-xl-6">
<div class="image-container">
<a href="https://career.hm.com/content/hmcareer/en_gb/workingathm/what-can-you-do-here/Head%20Office%20Sweden/BusinessTech.html" target="_blank">
<img src="images//sponsors/LogotypeH&MGroup.jpg" alt="" class="img-responsive w260">
</a>
</div> <!-- end of image-container -->
</div>
</h2>
<p>
The H&M Group is on an exciting journey to meet and exceed our customers' expectations
today, tomorrow and in the future. Rapid technological development and new customer
behaviours are transforming the fashion retail industry. To cater the individual needs and
desires of our millions of customers, Business Tech delivers technological solutions for
the entire value chain for all of our brands.
<br>
We explore new ways of working, have a customer focused mindset, embrace our strong values
and release the power of our people to innovate and develop products that make a meaningful
impact to customers all over the world.
<br>
Join our journey and discover your potential!
</p>
<p>
Learn more how we work and open positions at
<a href="https://career.hm.com/content/hmcareer/en_se/workingathm/what-can-you-do-here/corporate/BusinessTech.html" target="_blank">
Business Tech.
</a>
</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
<br><br><br>
<div class="row">
<!-- end of col -->
<div class="col-lg-7 col-xl-6">
<div class="text-container">
<h2>
<div class="col-lg-5 col-xl-6">
<div class="image-container">
<a href="https://jobs.lever.co/klarna?lever-source%5B0%5D=pyconse2020&team=Engineering" target="_blank">
<img src="images/sponsors/Klarna_PaymentBadge_OutsideCheckout_Pink.png" alt="" class="img-responsive w260">
</a>
</div> <!-- end of image-container -->
</div>
</h2>
<p>
Klarna was founded in Stockholm, Sweden in 2005. Since then, we’ve changed the banking
industry forever. And now we’re creating the world’s smooothest shopping experience.
We serve 80 million consumers worldwide, and partner with 190,000 merchants – with a
new merchant joining us every 8 minutes. Including some of the world’s leading brands,
such as H&M, ASOS, IKEA, Adidas, Samsung and Lufthansa. Our offices are spread over
18 different markets, hosted by +3000 people from 90 nationalities.
</p>
<p>Have a look at our
<a href="https://jobs.lever.co/klarna?lever-source%5B0%5D=pyconse2020&team=Engineering" target="_blank">
open engineering positions.
</a>
</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-7 col-xl-6">
<div class="text-container">
<h2>
<div class="col-lg-5 col-xl-6">
<div class="image-container">
<a href="https://funnel.io" target="_blank">
<img src="images/sponsors/funnel-logo.png" alt="" class="img-responsive w350">
</a>
</div> <!-- end of image-container -->
</div>
</h2>
<p>
Our users like to tell data stories, but rarely do they enjoy the mechanics of retrieving
and cleaning up the data.
</p>
<p>
Funnel likes to make data storytellers happy. We have automated connections to hundreds
of online data sources and tools for our users to easily structure the data and make it
ready for storytime. The path to our success is not only what we do, but how we do it.
Supportive teams and transparent information allow everyone to make good decisions in
their everyday work.
<br>
Harmonized teams make for harmonized data.
</p>
<p>
Just nu finns det lediga positioner som
<a href="https://jobs.funnel.io/jobs/948727-coachande-utvecklare" target="_blank">
coachande utvecklare
</a>
och
<a href="https://jobs.funnel.io/jobs/775496-kreativ-utvecklare" target="_blank">
kreativ utvecklare.
</a>
</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
<br><br><br>
<div class="row justify-content-center">
<div class="col-lg-7 col-xl-6">
<div class="text-container">
<h2>
<div class="col-lg-5 col-xl-6">
<div class="image-container">
<a href="https://www.sigmait.se" target="_blank">
<img src="images//sponsors/Sigma-Outline_svart_pycon.png" alt="" class="img-responsive w260">
</a>
</div> <!-- end of image-container -->
</div>
</h2>
<p>
We are leaders at the forefront of the digital revolution. We find the smartest solutions,
take on a vast array of diverse and cutting-edge projects, and work only with the best
people.
</p>
<p>
We are a strong and fast growing IT consulting company, helping our customers with
innovative solutions every day. We have done this work since the Internet’s infancy.
On the way, we have built a dynamic and passionate corporate culture, based on the
vision of a better tomorrow. Something we are very proud of!
</p>
<p>Currently we are searching for a
<a href="https://www.sigmait.se/karriar/lediga-jobb/jobb?id=660" target="_blank">
data scientist
</a>
to join our team.
You find all of our open positions on our
<a href="https://www.sigmait.se/karriar/lediga-jobb" target="_blank">
career page.
</a>
</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of filter -->
<!-- end of Job Opportunities -->
<!-- About -->
<div id="about" class="counter">
<div class="container">
<div class="row">
<div class="col-lg-5 col-xl-6">
<div class="image-container">
<img class="img-fluid" src="images/talk.jpg" alt="alternative">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
<div class="col-lg-7 col-xl-6">
<div class="text-container">
<div class="section-title">ABOUT PYCON SWEDEN</div>
<h2>We're Passionate About Python and the Community</h2>
<p>PyCon Sweden is arranged by Python Sverige, a registered nonprofit organization (SE Org. ID 802476-3792).</p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><a target="_blank" href="http://www.pycon.se/assets/docs/stadgar.pdf">Organization bylaws (in Swedish)</a></div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><a target="_blank" href="https://github.com/python-sverige/protokoll">Meeting minutes GitHub repository (in Swedish)</a></div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><a target="_blank" href="http://www.pycon.se/assets/docs/code_of_conduct.pdf">Code of conduct of the conference</a></div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><a target="_blank" href="http://goo.gl/forms/B4qzi58Lf6">Python Sverige Membership signup (Membership is free!)</a></div>
</li>
</ul>
<!-- Counter -->
<div id="counter">
<div class="cell">
<div class=col-6">
<div class="counter-info">Since</div>
</div>
<div class=col-6">
<div class="counter-value number-count" data-count="2014">1</div>
</div>
</div>
<div class="cell">
<div class="counter-value number-count" data-count="20">1</div>
<div class="counter-info">Talks<br>2019</div>
</div>
<div class="cell">
<div class="counter-value number-count" data-count="4">1</div>
<div class="counter-info">Workshops<br>2019</div>
</div>
</div>
<!-- end of counter -->
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of counter -->
<!-- end of about -->
<!-- Team -->
<div class="basic-2">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>Our Board</h2>
<p class="p-heading">PyCon Sweden is organized by Python Sverige, with its volunteer board members.</p>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<!-- Team Member -->
<div class="team-member">
<div class="image-wrapper">
<img class="img-fluid" src="images/Anna.jpg" alt="alternative">
</div> <!-- end of image-wrapper -->
<p class="p-large">Anna Kazakova Lindegren</p>
<p class="job-title">Chairwoman</p>
<!--
<span class="social-icons">
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
</span>
-->
</div> <!-- end of team-member -->
<!-- end of team member -->
<!-- Team Member -->
<div class="team-member">
<div class="image-wrapper">
<img class="img-fluid" src="images/Helio.jpg" alt="alternative">
</div> <!-- end of image wrapper -->
<p class="p-large">Helio Loureiro</p>
<p class="job-title">Board Member</p>
<!--
<span class="social-icons">
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
</span>
-->
</div> <!-- end of team-member -->
<!-- end of team member -->
<!-- Team Member -->
<div class="team-member">
<div class="image-wrapper">
<img class="img-fluid" src="images/Christine.jpg" alt="alternative">
</div> <!-- end of image wrapper -->
<p class="p-large">Christine Winter</p>
<p class="job-title">Board Member</p>
<!--
<span class="social-icons">
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
</span>
-->
</div> <!-- end of team-member -->
<!-- end of team member -->
<!-- Team Member -->
<div class="team-member">
<div class="image-wrapper">
<img class="img-fluid" src="images/Steve.png" alt="alternative">
</div> <!-- end of image wrapper -->
<p class="p-large">Wei Der Chien</p>
<p class="job-title">Board Member</p>
<!--
<span class="social-icons">
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
</span>
-->
</div> <!-- end of team-member -->
<!-- end of team member -->
<!-- Team Member -->
<div class="team-member">
<div class="image-wrapper">
<img class="img-fluid" src="images/Slavik.jpg" alt="alternative">
</div> <!-- end of image wrapper -->
<p class="p-large">Vyacheslav Olshevsky (Slavik)</p>
<p class="job-title">Board Member</p>
<!--
<span class="social-icons">
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
</span>
-->
</div> <!-- end of team-member -->
<!-- end of team member -->
<!-- Team Member -->
<div class="team-member">
<div class="image-wrapper">
<img class="img-fluid pb-4" src="images/Nuo.jpg" alt="alternative">
</div> <!-- end of image wrapper -->
<p class="p-large">Nuo Xu</p>
<p class="job-title">Board Member</p>
<!--
<span class="social-icons">
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
</span>
-->
</div> <!-- end of team-member -->
<!-- end of team member -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of basic-2 -->
<!-- end of team -->