-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
executable file
·810 lines (689 loc) · 29.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
<!doctype html>
<html lang="en">
<head>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<meta name="description" content="The first PyCon in Turkey will be on Sep 26, 2020. 🇹🇷">
<meta name="keywords" content="pycon, turkey" />
<meta name="robots" content="index,follow" />
<meta name="author" content="">
<!-- OpenGraph -->
<meta property="og:title" content="PyCon Turkey 2020 🇹🇷" />
<meta property="og:description" content="The first PyCon in Turkey will be on Sep 26, 2020.">
<meta property="og:type" content="article" />
<meta property="og:url" content="https://tr.pycon.org" />
<meta property="og:image" content="https://tr.pycon.org/images/logo.png?v=2" />
<!-- Twitter -->
<meta name="twitter:creator" content="@pycontr" />
<!-- Title -->
<title>PyCon Turkey 2020</title>
<!-- Link -->
<link rel="shortcut icon" href="images/favicon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css?v=1">
<link href="https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-155672914-1"></script>
<script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'UA-155672914-1');</script>
</head>
<body>
<div class="important-announcement">
Due to the COVID-19 pandemic, PyCon Turkey 2020 will be held online. Thank you for your understanding.
<a href="announcement-online-event.html">Click here for more information.</a>
</div>
<header>
<div class="container">
<a href="/" class="logo">
<img src="images/logo.svg" alt="PyCon Turkey Landing Page">
</a>
<div class="titles">
<h1>PyCon Turkey</h1>
<h2>Sep 26, 2020</h2>
</div>
<a href="#" class="nav-trigger">
<i></i>
</a>
<nav>
<a href="about-us.html">About Us</a>
<a href="code-of-conduct.html">Code of Conduct</a>
<a href="http://hopin.to/events/pycontr-2020" target="_blank" rel="noopener">Register</a>
</nav>
</div>
</header>
<section class="description">
<div class="container">
<div class="col-md-9">
<h2>
Join us at PyCon Turkey 2020!
</h2>
<p>
For the first time in history, PyCon is in Turkey. Well, virtually. And it’s free!
</p>
<p>
PyCon Turkey 2020 is more than just a stream of talks and presentations. In addition to two tracks of talks, you will also have an opportunity to ask questions to the speakers, meet our sponsors, and have random chats with other participants.
</p>
<p>
PyCon is a global event brand for conferences organized by Python programming language users in over 40 countries each year. PyCon Turkey aims to announce our <a href="https://www.meetup.com/python-istanbul/" target="_blank" rel="noopener">Python Istanbul</a> community to the world, as well as to strengthen the Python culture in our country.
</p>
</div>
</div>
</section>
<section class="the-bar">
<div class="container">
<div class="info-holder">
<p class="col-md-5">
Make sure to tune in for announcements!
</p>
<div class="content col-md-6 pull-right">
<div id="mc_embed_signup">
<form action="https://pycon.us20.list-manage.com/subscribe/post?u=84fcf25f9c8c3eed9e733978d&id=0ba819fcd6" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" rel="noopener" novalidate>
<div id="mc_embed_signup_scroll" class="form-group">
<div class="mc-field-group">
<input type="email" value="" name="EMAIL" class="required email form-control" id="mce-EMAIL" placeholder="Email Address" aria-label="Email address">
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none;"></div>
<div class="response" id="mce-success-response" style="display:none;"></div>
</div>
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_84fcf25f9c8c3eed9e733978d_0ba819fcd6" tabindex="-1" value=""></div>
<input type="submit" value="Subscribe to newsletter" name="subscribe" id="mc-embedded-subscribe" class="button submit-btn">
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<section class="get-tickets">
<div class="container">
<div class="col-md-6 module-content">
<h2>
Join the Event
</h2>
<p>
PyCon Turkey 2020 is fully online and free, thanks to our generous sponsors!
</p>
<a href="http://hopin.to/events/pycontr-2020" class="btn secondary" target="_blank" rel="noopener">Register</a>
</div>
</div>
</section>
<section class="schedule">
<div class="container">
<div class="row module-content">
<h2>
Talks
</h2>
</div>
<div class="row tabs-holder">
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade in active" id="firstDay">
<!-- Single Start -->
<div class="talk">
<h3 class="time">
10:10 - 10:25 (GMT+3)
<span class="note">Welcome Talk</span>
</h3>
<div class="content">
<p class="desc">
Welcome Talk
</p>
</div>
</div>
<!-- Single End -->
<!-- Single Start -->
<div class="talk">
<h3 class="time">
10:30 - 11:20 (GMT+3)
<span class="note">Keynote</span>
</h3>
<div class="content">
<div class="cover">
<img src="images/speakers/danieleprocida.jpg"/>
<div class="person">
<span>Daniele Procida</span>
<span></span>
</div>
</div>
<p class="desc">
Programming for pleasure
<span>
As programmers, we’re very lucky - our work is often creative and enjoyable, and the culture of programming itself is inventive and playful. It’s not surprising that one of the things that programmers like to do in their spare time is more programming. Programming can be a pleasure in itself. What we don’t usually recognise is that the effect of this is to make the software we create worse rather better. If we want to make better software, we need to start programming not for pleasure, but for pain.
</span>
</p>
</div>
</div>
<!-- Single End -->
<!-- Multi Start -->
<div class="row">
<div class="talk half">
<h3 class="time">
11:25 - 12:00 (GMT+3)
<span class="note">Talk</span>
</h3>
<div class="content">
<div class="cover">
<img src="images/speakers/cheuktingho.jpg"/>
<div class="person">
<span>Cheuk Ting Ho</span>
<span></span>
</div>
</div>
<p class="desc">
How to be Pythonic? Design a Query Language in Python
<span>
We created Python API calls that let you make queries and manipulate data in our graph database. We thought about what will be best for Pythonistas? What will be the most Pythonic way to do it? (Is it a thing?) Here's our journey in making WOQLpy and we want to make it useful to you.
</span>
</p>
</div>
</div>
<div class="talk half">
<h3 class="time">
11:25 - 12:00 (GMT+3)
<span class="note">Talk</span>
</h3>
<div class="content">
<div class="cover">
<img src="images/speakers/sumercip.jpg"/>
<div class="person">
<span>Sümer Cip</span>
<span></span>
</div>
</div>
<p class="desc">
Hunting Performance in Python Code
<span>
A typical program spends almost all its time in a small subset of its code. Profilers lead us straight to the functions where we should spend our effort on. I aim to make the audience more knowledgeable about the differences and capabilities between various profilers in the Python ecosystem.
</span>
</p>
</div>
</div>
</div>
<!-- Multi End -->
<!-- Multi Start -->
<div class="row">
<div class="talk half">
<h3 class="time">
12:10 - 12:45 (GMT+3)
<span class="note">Talk</span>
</h3>
<div class="content">
<div class="cover">
<img src="images/speakers/aaronbassett.jpg"/>
<div class="person">
<span>Aaron Bassett</span>
<span></span>
</div>
</div>
<p class="desc">
Reduce, Reuse, Recycle - Persisting WebSocket connections with SharedWorkers
<span>
WebSockets have many advantages, reduced latency, lower bandwidth, and reduced costs. But when our browser starts duplicating WebSocket connections, we quickly begin to lose these advantages. In this talk, we'll see how we can share one WebSocket connection across all browser contexts.
</span>
</p>
</div>
</div>
<div class="talk half">
<h3 class="time">
12:10 - 12:45 (GMT+3)
<span class="note">Talk</span>
</h3>
<div class="content">
<div class="cover">
<img src="images/speakers/christianschramm.jpg"/>
<div class="person">
<span>Christian Schramm</span>
<span></span>
</div>
</div>
<p class="desc">
How To Write Python Code For Production Environments
<span>
There's code, and then there's production code – the one that makes or breaks your company's business. A few battle-tested guidelines with real-world examples can help you get the important stuff correct from the get-go, and retain flexibility as the code base grows or requirements change.
</span>
</p>
</div>
</div>
</div>
<!-- Multi End -->
<!-- Multi Start -->
<div class="row">
<div class="talk half">
<h3 class="time">
12:50 - 13:25 (GMT+3)
<span class="note">Talk</span>
</h3>
<div class="content">
<div class="cover">
<img src="images/speakers/neslihanwittek.jpg"/>
<div class="person">
<span>Neslihan Wittek</span>
<span></span>
</div>
</div>
<p class="desc">
Birds of a feather flock together - Tracking pigeons with Python and OpenCV
<span>
In this talk, I want to demonstrate how to use OpenCV to implement basic animal movement tracking use cases. And everything without any fancy machine learning or neuronal networks ;)
</span>
</p>
</div>
</div>
<div class="talk half">
<h3 class="time">
12:50 - 13:25 (GMT+3)
<span class="note">Talk</span>
</h3>
<div class="content">
<div class="cover">
<img src="images/speakers/robsonjunior.jpg"/>
<div class="person">
<span>Robson Júnior</span>
<span></span>
</div>
</div>
<p class="desc">
Mastering a data pipeline with Python: 6 years of learned lessons from mistakes to success
<span>
This talk is a demystification of years of experience and painful mistakes using Python as a core to create data pipelines and manage insanely amount of data. How each python piece fits into this puzzle? best practices and possible issues. PySpark vs Dask and Pandas, Airflow, and Apache Arrow.
</span>
</p>
</div>
</div>
</div>
<!-- Multi End -->
<!-- Single Start -->
<div class="talk">
<h3 class="time">
14:25 - 15:15 (GMT+3)
<span class="note">Keynote</span>
</h3>
<div class="content">
<div class="cover">
<img src="images/speakers/miroslavsedivy.jpg"/>
<div class="person">
<span>Miroslav Šedivý</span>
<span></span>
</div>
</div>
<p class="desc">
Lorem ipsum dolor sit amet
<span>
What type of data do you test your application with? Real data should not be completely real. Random data should not be completely random. A randomly real and a really random talk on useful fake data.
</span>
</p>
</div>
</div>
<!-- Single End -->
<!-- Multi Start -->
<div class="row">
<div class="talk half">
<h3 class="time">
15:20 - 15:55 (GMT+3)
<span class="note">Talk</span>
</h3>
<div class="content">
<div class="cover">
<img src="images/speakers/izzetpembeci.jpg"/>
<div class="person">
<span>Izzet Pembeci</span>
<span></span>
</div>
</div>
<p class="desc">
asyncio Lessons Learnt, Coding Patters Discovered
<span>
This talk is about a project that required performant real-time data processing and traffic where IO between a REST API, MySQL, Redis, RabbitMQ server and a SPA client needs to be orchestrated. asyncio was used extensively to achieve this and we want to share lessons learnt and patterns discovered.
</span>
</p>
</div>
</div>
<div class="talk half">
<h3 class="time">
15:20 - 15:55 (GMT+3)
<span class="note">Talk</span>
</h3>
<div class="content">
<div class="cover">
<img src="images/speakers/taniaallard.jpg"/>
<div class="person">
<span>Tania Allard</span>
<span></span>
</div>
</div>
<p class="desc">
Docker and Python: making them play nicely and securely for Data Science and ML
<span>
The existence of Docker has helped with the "your laptop is not a production environment" (to some extent). It also has a huge potential to improve the way we develop and deploy Machine Learning and data science projects. In this talk, I will explore how you can leverage Docker for Data Science!
</span>
</p>
</div>
</div>
</div>
<!-- Multi End -->
<!-- Single Start -->
<div class="talk">
<h3 class="time">
16:05 - 16:55 (GMT+3)
<span class="note">Keynote</span>
</h3>
<div class="content">
<div class="cover">
<img src="images/speakers/katherinejarmul.jpg"/>
<div class="person">
<span>Katharine Jarmul</span>
<span></span>
</div>
</div>
<p class="desc">
Optimizing Humanity: Privacy, Personalization and Nudging towards Extremes
<span>
How does machine learning, big data and the ever-growing mass of disinformation and misinformation work together to push extremism in public and private debate? In this keynote, we'll dive into the interplay between privacy and private information, advertising and increased personalization and product metrics and nudging interplay together and lead to a more divergent public conversation. We'll also touch on how we, as developers, engineers and data scientists can nudge the ethical and philosophical conversations into our daily work and help ensure our societies remain places where conversation can happen between opposing views.
</span>
</p>
</div>
</div>
<!-- Single End -->
<!-- Single Start -->
<div class="talk">
<h3 class="time">
17:00 - 17:45 (GMT+3)
<span class="note">Lightning Talks</span>
</h3>
<div class="content">
<p class="desc">
Lightning Talks
</p>
</div>
</div>
<!-- Single End -->
<!-- Single Start -->
<div class="talk">
<h3 class="time">
17:45 - (GMT+3)
<span class="note">Closing Talk</span>
</h3>
<div class="content">
<p class="desc">
Closing Talk
</p>
</div>
</div>
<!-- Single End -->
</div>
</div>
</div>
<div class="row module-content">
<a href="https://hopin.to/events/pycontr-2020#schedule" class="btn secondary" target="_blank" rel="noopener" style="display: block;">Full Schedule</a>
</div>
</div>
</section>
<section class="keynote-speakers">
<div class="container">
<div class="row module-content">
<h2>
Keynote Speakers
</h2>
<!-- <p class="col-md-6">
The conference will be held at <b>Albert Long Hall</b>, at Bogazici University. The hall has perfect acoustic characteristics with a capacity of 400 seats.
</p> -->
</div>
<div class="row speakers">
<div class="speaker col-lg-6">
<img src="images/speakers/danieleprocida.jpg" alt="">
<div class="info">
<h3>Daniele Procida</h3>
<p>
Daniele works at Divio, where he helps customers automate cloud deployment of large Python applications. He’s a Django core developer and an enthusiastic supporter of the international Python community and its events.
</p>
</div>
</div>
<div class="speaker col-lg-6">
<img src="images/speakers/katherinejarmul.jpg" alt="">
<div class="info">
<h3>Katharine Jarmul</h3>
<p>
Head of Product at DropoutLabs, a company enabling privacy-preserving machine learning, and a passionate and internationally recognized data scientist, programmer, and lecturer. Her work and research focuses on privacy, ethics and security for data science workflows. Previously, she held numerous roles at large companies and startups in the US and Germany, implementing data processing and machine learning systems with a focus on reliability, testability, privacy and security. She’s an author for O‘Reilly and frequent keynote speaker at international software and AI conferences.
</p>
</div>
</div>
<div class="speaker col-lg-6">
<img src="images/speakers/miroslavsedivy.jpg" alt="">
<div class="info">
<h3>Miroslav Šedivý</h3>
<p>
Senior Software Developer at solute GmbH, using Python to get you the lowest prices online. Always happy to discuss the human stuff in the IT: how humans write in their languages, how they measure time, and how they can teach the computers to do the boring stuff for them.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="sponsors">
<div class="container">
<div class="row module-content">
<h2>
Sponsors
</h2>
</div>
<div class="row sponsor-list">
<div class="tier-1 clearfix">
<h2 class="tier-title">Main Sponsor</h2>
<a href="https://peak.com/" target="_blank" rel="noopener" class="sponsor col-md-6">
<div class="logo-holder">
<img src="images/sponsors/peak.png" alt="Peak" title="Peak" style="border-radius: 20px;">
</div>
<h3>Peak</h3>
<p>
Peak is a leading mobile technology company with a team who values progress. We believe that the best products are created when talented people form autonomous teams striving for impact.
</p>
</a>
</div>
<div class="tier-2 clearfix">
<h2 class="tier-title">Sponsors</h2>
<a href="https://put.io" target="_blank" rel="noopener" class="sponsor">
<div class="logo-holder">
<img src="images/sponsors/putio.png" alt="put.io" title="put.io">
</div>
<h3>put.io</h3>
<p>
put.io downloads publicly available files at high speeds and saves them to your account without leaving a digital footprint. It acts as the remote version of your local “/downloads” folder from which you can stream to your devices at your convenience.
</p>
</a>
<a href="https://hipolabs.com" target="_blank" rel="noopener" class="sponsor">
<div class="logo-holder">
<img src="images/sponsors/hipo.png" alt="Hipo" title="Hipo">
</div>
<h3>Hipo</h3>
<p>
At Hipo, We turn good ideas into amazing digital products. We realize our clients' vision, combined with our decade-spanning experience, always striving to make 'the' product. For the past decade, Python has been giving us the tools to do what we do. This is us giving back.
</p>
</a>
<a href="https://promptapi.com" target="_blank" rel="noopener" class="sponsor">
<div class="logo-holder">
<img src="images/sponsors/promptapi.png" alt="Prompt API" title="Prompt API">
</div>
<h3>Prompt API</h3>
<p>
Prompt API is a highly curated API marketplace with a focus on reliability, scalability and quality. It allows API developers to monetize their APIs, while letting others building the next big thing easier, all with a single API key and SDK.
</p>
</a>
<a href="https://fikrimuhal.com" target="_blank" rel="noopener" class="sponsor">
<div class="logo-holder">
<img src="images/sponsors/fikrimuhal.png" alt="Fikrimuhal" title="Fikrimuhal">
</div>
<h3>Fikrimuhal</h3>
<p>
Fikrimuhal is a software consulting company specialized in Machine Learning and Big Data systems. We develop systems that leverage data to unlock business value.
</p>
</a>
</div>
<div class="tier-2 clearfix">
<a href="https://sufle.io" target="_blank" rel="noopener" class="sponsor">
<div class="logo-holder">
<img src="images/sponsors/sufle.svg" alt="Sufle" title="Sufle">
</div>
<h3>Sufle</h3>
<p>
Sufle applies best practices in technology to build and accelerate your dream business. Our expertise in cloud, software architecture and compliance services helps you to unleash the power of cutting edge technologies. We love and use Python as our primary choice of weapon in every quest of your technology journey.
</p>
</a>
<a href="https://elastic.co" target="_blank" rel="noopener" class="sponsor">
<div class="logo-holder">
<img src="images/sponsors/elastic.png" alt="Elastic" title="Elastic">
</div>
<h3>Elastic</h3>
<p>
Elastic is a search company built on a free and open heritage. Elastic offers three solutions for enterprise search, observability, and security built on one technology stack that can be deployed anywhere. Elastic is a distributed company with Elasticians around the globe.
</p>
</a>
<a href="https://akinon.com" target="_blank" rel="noopener" class="sponsor">
<div class="logo-holder">
<img src="images/sponsors/akinon.png" alt="Akinon" title="Akinon">
</div>
<h3>Akinon</h3>
<p>
Akinon is a global software development company that provides omnichannel solutions for top retail brands. Based on more than 20 years of retail industry experience and with a team of highly skilled software developers, Akinon has created a suite of Cloud-based Omnichannel Applications, which technologically disrupts the retail industry.
</p>
</a>
</div>
<div class="tier-4 clearfix">
<h2 class="tier-title">Service Sponsors</h2>
<a href="https://hello.raklet.com/" target="_blank" rel="noopener" class="sponsor">
<div class="logo-holder">
<img src="images/sponsors/raklet.png" alt="Raklet" title="Raklet">
</div>
<h4>Raklet</h4>
</a>
<a href="https://www.papercall.io/" target="_blank" rel="noopener" class="sponsor">
<div class="logo-holder">
<img src="images/sponsors/papercall.png" alt="PaperCall" title="PaperCall">
</div>
<h4>PaperCall</h4>
</a>
</div>
</div>
</div>
</section>
<section class="become-sponsor">
<div class="container">
<div class="col-md-8 module-content">
<h2>
Become a Sponsor
</h2>
<p>
Sponsoring PyCon Turkey gives you the opportunity of high visibility of your brand and your service, reaching software engineers who are interested in Python, and supporting a strong community.
</p>
<a href="https://forms.gle/4bcRk3cbG6uzk4gr5" class="btn secondary" target="_blank" rel="noopener">Become a Sponsor</a>
</div>
</div>
</section>
<section class="the-venue">
<div class="container">
<div class="col-md-6 module-content">
<h2 class="line-the-venue">
The Venue
</h2>
<p>
Before the COVID-19 pandemic, the conference was planned to be held at <b>Albert Long Hall</b>, at Bogazici University. The hall has perfect acoustic characteristics with a capacity of 400 seats.
</p>
<p>
Bogazici University is a major research university located at the heart of Bosphorus. It has a vibrant campus welcoming dynamic minds from all over the world.
</p>
<p>
We hope to be together in this amazing hall for the next PyCon Turkey conferences.
</p>
</div>
<div class="col-md-4 pull-right venue">
<img src="images/venue.png" alt="">
<span>
<b>Albert Long Hall</b>,
<br>
Bogazici University
</span>
</div>
</div>
</section>
<!--
<section class="become-sponsor">
<div class="container">
<div class="col-md-6 module-content">
<h2>
Take Part
</h2>
<p>
Organizing a conference is hard, organizing an amazing conference is even harder; but it gets easier when people join their forces.
</p>
<p>
Pycon Turkey 2020 is a non-profit event, organized by a volunteer crew. If you'd like to be part of this amazing event, don't hesitate to make a presentation or become a volunteer.
</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfigRGh1Yz-oSakh-XPk2oPFRMHzmJXvbLFjdPh9sUc6z3WRw/viewform?usp=sf_link" class="btn secondary" target="_blank" rel="noopener">Become a Volunteer</a>-->
<!--<a href="https://www.papercall.io/pycon-turkey-2020" class="btn" target="_blank" rel="noopener">Call for Proposal</a>-->
<!--</div>
</div>
</section>-->
<!--
<section class="financial-aid">
<div class="container">
<div class="col-md-6 module-content">
<h2>
Financial Aid
</h2>
<p>
PyCon Turkey 2020 operates a limited financial assistance program to help individuals who would otherwise not be able to attend the conference.
</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSecMvzUSxjxV2MWwdT4-8qFkBLk8erDQmF9ca2fKPmcLt2q2Q/viewform" class="btn secondary" target="_blank" rel="noopener">Apply for Financial Aid</a>
</div>
</div>
</section>
-->
<footer>
<div class="container">
<a href="/" class="logo">
<img src="images/logo.svg" alt="PyCon Turkey Landing Page">
</a>
<div class="titles">
<h1>PyCon Turkey</h1>
<h2>Sep 26, 2020</h2>
</div>
<div class="col-md-5 pull-right socials-holder">
<div class="socials">
<a href="mailto:[email protected]" class="mail">
Get in touch
<img src="images/mail-ico.svg" alt="PyCon Turkey Email">
</a>
<a href="https://twitter.com/pycontr" class="social" target="_blank" rel="noopener">
<img src="images/tw-ico.svg" alt="PyCon Turkey Twitter Page">
</a>
<a href="https://www.instagram.com/pycon_tr/" class="social" target="_blank" rel="noopener">
<img src="images/ig-ico.svg" alt="PyCon Turkey Instagram Page">
</a>
</div>
<nav>
<a href="about-us.html">About Us</a>
<a href="code-of-conduct.html">Code of Conduct</a>
<!--<a href="https://www.papercall.io/pycon-turkey-2020" target="_blank" rel="noopener">CFP</a>-->
</nav>
</div>
</div>
</footer>
<section class="bottom-logos">
<div class="container">
<div class="logos">
<a href="https://www.cmpe.boun.edu.tr/" class="cmple" target="_blank" rel="noopener">
<img src="images/cmple-logo-light.svg" alt="Bogazici University - Department of Computer Engineering">
</a>
<a href="https://www.meetup.com/python-istanbul/" class="pyist" target="_blank" rel="noopener">
<img src="images/pyist-logo.svg" alt="Python Istanbul community - PyIstanbul">
</a>
</div>
</div>
</section>
<!-- Scripts -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- <script src="js/modernizr-custom.js"></script> -->
<script src="js/main.js"></script>
<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';fnames[3]='ADDRESS';ftypes[3]='address';fnames[4]='PHONE';ftypes[4]='phone';fnames[5]='BIRTHDAY';ftypes[5]='birthday';}(jQuery));var $mcj = jQuery.noConflict(true);</script>
</body>
</html>