-
Notifications
You must be signed in to change notification settings - Fork 8
/
index2020.html
1656 lines (1528 loc) · 93.2 KB
/
index2020.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>OpenTechSummit Europe - Open Source Software, Open Hardware, Open Design, Open Data, Open Knowledge</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="OpenTechSummit Europe - Open Source Software, Open Hardware, Open Design, Open Data, Open Knowledge">
<meta name="keywords" content="Open Source, Development, FOSS, Free and Open Source Software, Asia">
<meta name="author" content="OpenTechSummit">
<meta property="og:title" content="OpenTechSummit" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://opentechsummit.eu/img/opntec.png" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@otsbe">
<meta name="twitter:title" content="OpenTechSummit">
<meta name="twitter:description" content="OpenTechSummit Europe - Open Source Software, Open Hardware, Open Design, Open Data, Open Knowledge">
<meta name="twitter:creator" content="@otsbe">
<meta name="twitter:image" content="https://opentechsummit.eu/img/opntec.png">
<link rel=icon href="OpenTechSummit.ico">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/backToTop.css" rel="stylesheet" type="text/css"/>
<link href="css/flexslider.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/elegant-icons.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/pe-icon-7-stroke.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/theme-properorange.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/custom.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/custom-blog.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/bootstrap-theme.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/text-overlay.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/map-view.css" rel="stylesheet" type="text/css" media="all"/>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,300' rel='stylesheet' type='text/css'>
<script>
// changes email address in homepage to make it responsive according to screen resolutions
if (screen.width <=853) {
document.getElementById('mailAdd').innerHTML = 'fossasia@google...';
}
// add eventListener for scroll to top button
const scrollToTopBtn = document.getElementById("scrollToTopBtn");
window.addEventListener("scroll", showScrollToTopBtn);
function showScrollToTopBtn() {
if(document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
scrollToTopBtn.style.display = "block";
} else {
scrollToTopBtn.style.display = "none";
}
}
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js" ></script>
<script src="js/feednami.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/skrollr.min.js"></script>
<script src="js/spectragram.min.js"></script>
<script src="js/flexslider.min.js"></script>
<script src="js/jquery.plugin.min.js"></script>
<script src="js/jquery.countdown.min.js"></script>
<script src="js/lightbox.min.js"></script>
<script src="js/smooth-scroll.min.js"></script>
<script src="js/placeholders.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/tweets.js"></script>
</head>
<body class="no-loader">
<div class="loader">
<div class="strip-holder">
<div class="strip-1"></div>
<div class="strip-2"></div>
<div class="strip-3"></div>
</div>
</div>
<a id="top"></a>
<div class="nav-container">
<nav class="overlay-nav">
<div class="container">
<div class="row">
<div class="col-md-2">
<a target="_self" class="inner-link" href="#top"><img alt="FOSSASIA" class="logo logo-light" src="img/OTS_white.png">
<img alt="FOSSASIA" class="logo logo-dark" src="img/OTS_grey.png"></a>
</div>
<div class="col-md-10 text-right">
<ul class="menu">
<li class="has-dropdown">
<a target="_self" href="./tickets">Tickets</a>
<ul class="nav-dropdown " style="min-height:90px ">
<li>
<a target="_self" href="./tickets">Get Your Ticket</a>
</li>
<li>
<a class="inner-link " href="./friendsticket">Apply for Free Friends Ticket</a>
</li>
</ul>
<li><a target="_self" href="./speaker-registration">Speaker Registration</a></li>
<li class="has-dropdown">
<a class="inner-link " href="#exhibition">Exhibition</a>
<ul class="nav-dropdown " style="min-height:90px ">
<li>
<a class="inner-link " href="./exhibitors">Book Enterprise Booth</a>
</li>
<li>
<a class="inner-link " href="./communitybooth">Apply for Community Booth</a>
</li>
</ul>
<li class="has-dropdown">
<a class="inner-link" href="#schedule" >Event</a>
<ul class="nav-dropdown " style="min-height:300px ">
<li>
<a class="inner-link " href="#topics">Event Topics</a>
</li>
<li>
<a class="inner-link " href="#featured-speakers">Featured Speakers</a>
</li>
<li>
<a class="inner-link " href="#schedule">Daily Overview</a>
</li>
<li>
<a class="inner-link " href="#schedule-roster">Schedule Roster</a>
</li>
<li>
<a target="_self" class="inner-link" href="#venue">Venue Location</a>
</li>
<li>
<a target="_self" class="inner-link" href="#lightningtalks">Lightning Talks</a>
</li>
<li>
<a target="_self" class="inner-link" href="#cloudworkshop">Cloud Workshop</a>
</li>
<li>
<a target="_self" class="inner-link" href="#artificialintelligence">AI Workshop</a>
</li>
<li>
<a target="_self" class="inner-link" href="#pyconworld">Pycon World</a>
</li>
<li>
<a target="_self" class="inner-link" href="#pslab">PSLab Workshop</a>
</li>
<li>
<a target="_self" class="inner-link" href="#coderdojo">Kids Coderdojo</a>
</li>
</ul>
<li class="has-dropdown">
<a target="_self" class="inner-link" href="#sponsors">Sponsors</a>
<ul class="nav-dropdown" style="min-height:70px">
<li>
<a target="_self" class="inner-link" href="#sponsors">List of Sponsors</a>
</li>
<li>
<a target="_self" class="inner-link" href="./sponsorship">Sponsorship Info</a>
</li>
</ul>
</li>
<li><a target="_self" class="inner-link" href="#volunteer">Volunteer</a></li>
<li><a target="_self" class="inner-link" href="#press">Press</a></li>
<!-- <li class="has-dropdown"><a target="_self" href="https://opentechsummit.net">Other Events</a>
<ul class="nav-dropdown events" style="min-height: 355px"> <!--whenever you add/remove an option, change the style="min-height:425px" by +- 25px-->
<!-- <li><a target="_self" href="https://eventyay.com">Open Source Event Management</a></li>
<li><a target="_self" href="https://summit.fossasia.org">FOSSASIA Summit Singapore</a></li>
<li><a target="_self" href="https://opentechsummit.cn">OpenTechSummit China</a></li>
<li><a target="_self" href="https://opentechsummit.eu">OpenTechSummit Europe</a></li>
<li><a target="_self" href="https://opentechsummit.in">OpenTechSummit India</a></li>
<li><a target="_self" href="https://indochina.opentech.asia">OpenTechSummit Indochina</a></li>
<li><a target="_self" href="https://thai.opentech.asia">OpenTechSummit Thailand</a></li>
<li><a target="_self" href="https://vn.opentech.asia">OpenTechSummit Vietnam</a></li>
<li><a target="_self" href="https://jugaadfest.com">Jugaad Fest India</a></li>
</li>
<li><a target="_self" href="https://opentechsummit.net">... More Events</a></li>
</ul> -->
</li>
<li class="social-link hidden-md hidden-sm hidden-xs"><a target="_self" href="https://twitter.com/otsbe"><i class="icon social_twitter"></i></a></li>
<li class="social-link hidden-md hidden-sm hidden-xs"><a target="_self" href="https://www.facebook.com/opentechsummit/"><i class="icon social_facebook"></i></a></li>
<li class="social-link hidden-md hidden-sm hidden-xs"><a target="_self" href="https://github.com/opntec"><i class="fa fa-github fa-lg"></i></a></li>
<!-- <div class="sidebar-menu-toggle" ><i class="icon icon_menu"></i></div> -->
<div class="mobile-menu-toggle"><i class="icon icon_menu"></i></div>
</ul>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
<div class="main-container">
<section class="hero-slider">
<ul class="slides">
<li class="video-header">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="FOSSASIA" src="img/OTS_SriLanka.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-md-offset-1 col-sm-10 col-sm-offset-1 text-center col-md-10">
<img alt="logo" class="logo" src="img/OpenTechSummit.png">
<span class="uppercase text-white sub-heading-font ">Europe 2021</span> <h1 class="large-h1 text-white">
<!-- <span>The future is FOSS!</span><br> -->
<span>'Sustainable Development and the Collaborative Internet of Production'<br>
Europe's Open Source Event in Berlin<br>
Conference + Exhibition 24 May<br>
+ DevSprints</span>
</h1>
<a target="_self" href="./tickets/" class="btn">Tickets</a>
<a target="_self" href="./speaker-registration/" class="btn btn-hollow inner-link">Speaker Registration</a>
</div>
</div>
</div>
</li>
</ul>
</section>
<section class="strip-divider primary-overlay">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="About Image" src="img/15975259801_c9670af70c_z.jpg">
</div>
<div class="video-wrapper">
<video autoplay="" muted="" loop="">
<source src="" type="video/webm">
<source src="" type="video/mp4">
<source src="" type="video/ogg">
</video>
</div>
<a id="covid19" class="in-page-link"></a>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1 class="text-white">COVID19 UPDATE: Due to recent developments the OpenTechSummit Europe will not take place as a face to face event on May 20, 2020.
Instead we are planning a global online event for November. The OTS Europe will return 2021 as a life event. All tickets will be valid for next year. We will soon announce more info for the global online summit in November. Please follow us on <a href="https://twitter.com/otsbe" target="_self">Twitter</a> for updates. Thank you. Stay safe and healthy!
</h1>
</div>
</div>
</div>
</section>
<a id="intro" class="in-page-link"></a>
<section class="color-blocks">
<div class="color-block block-left col-md-6 col-sm-12"></div>
<div class="color-block block-right col-md-6 col-sm-12"></div>
<div class="container">
<div class="row">
<a href="./tickets/" class="block-content col-md-6 col-sm-12" target="_self">
<div class="col-md-4 col-sm-4 text-center">
<i class="icon pe-7s-id icon-large"></i>
</div>
<div class="col-md-8 col-sm-8">
<h1>Get your Ticket now. Let's celebrate Open Tech!</h1>
<p class="lead">
Choose from different options for business and community tickets.
</p>
</div>
</a>
<a href="./speaker-registration" class="block-content col-md-6 col-sm-12" target="_self">
<div class="col-md-4 col-sm-4 text-center">
<i class="icon pe-7s-like2 icon-large"></i>
</div>
<div class="col-md-8 col-sm-8">
<h1>Interested to become a speaker? Propose your session here.</h1>
<p class="lead">
We have different tracks with sessions about Cloud, DevOps, AI, Machine Learning, Blockchain, Open Hardware, Science, Web, Mobile and more.
</p>
</div>
</a>
</div>
</div>
</section>
<a id="topics" class="in-page-link"></a>
<a id="tracks" class="in-page-link"></a>
<section class="duplicatable-content visitor-info">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Topics</h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Artificial Intelligence" src="img/ArtificialIntelligence.jpg">
<h3>Artificial Intelligence</h3>
<p>From building an AI server infrastructure to creating skills and actions for voice assistants or create your own Open Source chatbots with SUSI.AI. Join sessions covering Bot Framework, Big Data, Dataprep and more.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Cloud, Containers, DevOps" src="img/CloudContainersDevOps.jpg">
<h3>Cloud, Container, DevOps</h3>
<p>Get better insights in how to deploy apps on the cloud more efficiently and save your company money. Sessions in the Cloud, Containers, DevOps track cover Kubernetes, Serverless Architecture, Microservices, OpenShift, and Continuous Integration.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Database" src="img/Database.jpg">
<h3>Database</h3>
<p>Meet database engineers and learn how to save your company money with Open Source database solutions. Specific topics include Scaling TB of data, Real-time data masking, Replication Features, Performance Schema, BigQuery, and Immutable Key-Value Stores.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Mobile Technologies" src="img/MobileTechnologies.jpg">
<h3>Mobile Technologies</h3>
<p>Mobile development sessions covers technologies for mobile platforms, Android, iOS, cross platform tools and discuss current trends and future of mobile technologies.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Web" src="img/WebTechnologies.jpg">
<h3>Web Technologies</h3>
<p>Web development sessions covers technologies for web platforms, Javascript, HTML, frameworks, development tools as well as upcoming trends and technologies.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Hardware, Design, Firmware" src="img/OpenSourceHardwareFirmware.jpg">
<h3>Hardware, Design, Firmware</h3>
<p>With the decrease of prices of hardware development tools and production open source hardware projects are gaining popularity. Projects range from laser cutters to pocket science labs. Apart from technical topics speakers will share their experience from making prototype to going to large scale production and working with mass manufacturers.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Kernel & Platform" src="img/KernelPlatform.jpg">
<h3>Kernel & Platform</h3>
<p>Topics from the Linux Kernel to BSD and desktop systems such as Meilix or applications like VLC. Learn about network servers, hacking with x86 Windows tablets, asynchronous integration of GPU computing with HPX many task processing, Unikernelized Linux, Open Build Service in Debian, and C from the trenches.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Science & Education" src="img/ScienceTechEducation.jpg">
<h3>Science & Education</h3>
<p>Science needs to be open and verifiable. As more and more tools are available to a larger part of the population the chance to become a scientist or simply to participate in citizen science increases. What tools exist? What hardware is available? How to do science hands-on with Open Source software and hardware?</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Internet, Society, Community" src="img/OpenDataInternetSocietyCommunity.jpg">
<h3>Internet, Society, Community</h3>
<p>More and more governments, companies and citizens share data for the benefit of the society. What are the use cases for Open data? What possibilities do we have for a truly free society in the times of tracking devices and supervision technologies, how to keep communities engaged in Free and Open Source development?
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Cybersecurity" src="img/cybersecurity.jpg">
<h3>Cybersecurity</h3>
<p>Find out how to keep your services secure in the Cybersecurity track. The track has sessions about Encryption with PGP, SELinux, Secrets Management, Backups, QubesOS, Securing Web and Javascript apps.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Python" src="img/pyconworld.jpg">
<h3>Python Pycon World Track</h3>
<p>At the Pycon World Open Source event track we cover topics for beginners to expert Python users. Python events are hosted all around the world organized by local teams and organizations. We all share the same spirit to spread knowledge, learn from each other and make lasting connections.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Compliance & Legal" src="img/compliance_legal.jpg">
<h3>Compliance & Legal</h3>
<p>Open source compliance is the process by which users, integrators, and developers of open source software observe copyright notices and satisfy license obligations for their open source software components. In the track we discuss how to comply with open source licensing obligations and facilitate effective use of open source in products.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Blockchain" src="img/blockchain.jpg">
<h3>Blockchain</h3>
<p>Let's dive into the world of cryptocurrencies, smart contracts, financial services, video games, supply chain. Blockchain is resistant to modification of the data and Open Source is at the core of the technology. Join us to learn more.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Open Source Business" src="img/opensourcebusiness.jpg">
<h3>Open Source Business</h3>
<p>Learn more about Open Source solutions provided by companies. In the business track you gain insights to the latest Open Source products from selling services, such as training, technical support, or consulting to providing certification, licensing and software as a service.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Academy" src="img/Academy.jpg">
<h3>Academy</h3>
<p>In the Academy track developers and trainers provide free workshops on topics such as Python Introduction, Artificial Intelligence, Databases and Cloud.
</p>
</div>
</div>
</div>
</section>
<a id="featured-speakers" class="in-page-link"></a>
<section class="speakers duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Featured Speakers</h1>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-12 speaker-outer">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Norbert Preining" src="img/NorbertPreining.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://www.linkedin.com/in/norbertpreining/">
<i class="icon social_linkedin"></i>
</a>
<a target="_self" href="https://twitter.com/norbusan">
<i class="icon social_twitter"></i>
</a>
<a target="_self" href="https://github.com/norbusan">
<i class="icon fa fa-github"></i>
</a>
<a target="_self" href="https://www.preining.info/">
<i class="icon fa fa-external-link"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Norbert Preining</h2>
<span class="sub">Tex/Debian/FOSSASIA</span>
<p>Mathematician and Logician by education, he is now working in the Research and Development lab of Accelia, Inc, Tokyo. His core interests are mathematical logic, computer science, machine learning, AI, security, software verification and specification..</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12 speaker-outer">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Michael Christen" src="img/MichaelChristen.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://www.linkedin.com/in/orbiter/">
<i class="icon social_linkedin"></i>
</a>
<a target="_self" href="https://twitter.com/0rb1t3r">
<i class="icon social_twitter"></i>
</a>
<a target="_self" href="https://github.com/Orbiter">
<i class="icon fa fa-github"></i>
</a>
<a target="_self" href="https://www.instagram.com/0rb1t3r/">
<i class="icon social_instagram"></i>
</a>
<a target="_self" href="https://vimeo.com/yacy">
<i class="icon fa fa-external-link"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Michael Christen</h2>
<span class="sub">SUSI.AI</span>
<p>Michael is the founder of SUSI AI, loklak and, the creator of the P2P Search engine YaCy. He is a Big Data Engineer consulting for some of the largest corporate players in Germany on search engine technology.</p>
</div>
</div>
</div>
<!--<div style="text-align: center;"><a target="_self" href="https://eventyay.com/e/aac5bcc7/speakers" class="btn btn-hollow">More Speakers</a></div> -->
</div>
</div>
</section>
<a id="schedule-roster" class="in-page-link"></a>
<section class="duplicatable-content visitor-info">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Schedule Roster</h1>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div style="text-align: center">
<img alt="Schedule Roster" src="img/schedule.png">
<p></p><p></p><br><br>
</div>
</div>
</div>
<!-- <div style="text-align: center;"><a target="_self" href="./event/schedule.pdf" class="btn btn">Download Schedule PDF</a></div>
<p></p><br><br> -->
</div>
</section>
<a id="schedule" class="in-page-link"></a>
<section class="schedule">
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-4">
<h1>Exhibition
<br/>24 May, 2021
</h1>
<ul class="schedule-overview">
<li>
<div class="schedule-title">
<span class="time">Tuesday</span>
<span class="time">22 May</span>
<span class="title">
Exhibition Preparation
</span>
</div>
<div class="schedule-text">
<p>Throughout the day exhibitors prepare for the event.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Wednesday</span>
<span class="time">23 May</span>
<span class="title">
Exhibition opens throughout the day
</span>
</div>
<div class="schedule-text">
<p>8:00 PM Exhibition Preparation
<br/>8:30 PM Breakfast Snacks for Exhibitors
<br/>9:30 Exhibition Opens
<br/>17:30 PM Exhibition Closes</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Thursday</span>
<span class="time">24 May</span>
<span class="title">
Exhibition opens with Workshops and Coderdojos for Kids throughout the day
</span>
</div>
<div class="schedule-text">
<p>8:00 PM Exhibition Preparation
<br/>8:30 PM Breakfast Snacks for Exhibitors
<br/>9:30 Exhibition Opens
<br/>12:30 PM Exhibition Showcases
<br/>17:30 PM Exhibition Closes</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
</ul>
</div>
<div class="col-sm-6 col-md-4">
<h1>Conference & DevSprints
<br>20-21 May (+22), 2021
</h1>
<ul class="schedule-overview">
<li>
<div class="schedule-title">
<span class="time">Wednesday Morning</span>
<span class="time">23 May, 9:30 - 12:30</span>
<span class="title">
Conference Opening and Professional Workshops
</span>
<span class="title">
<p>Venue: University</p>
</span>
</div>
<div class="schedule-text">
<p>8:00 Registration and Breakfast Snacks
<br/>9:30 Conference Opening Track 1: Open Tech
<br/>10:00 Cloud Workshop (Part 1)
<br/>10:00 AI Workshop (Part 1)
<br/>10:45 Coffee Break
<br/>11:00 Keynotes
<br/>12:30 Exhibition Visit
</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Wednesday Afternoon</span>
<span class="time">23 May, 13:30 - 17:30</span>
<span class="title">
Conference Program and Professional Workshops
</span>
<span class="title">
<p>Venue: University
<br/> Different Tracks about Open Source Technologies</p>
</span>
</div>
<div class="schedule-text">
<p>13:30 Tracks Start
<br/>13:30 Cloud Workshop (Part 2)
<br/>13:30 AI Workshop (Part 2)
<br/>15:30 Coffee Break and Exhibition Visit
<br/>16:00 Tracks Continue
<br/>17:30 Sessions End</p>
</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Thursday (Himmelfahrt)</span>
<span class="time">24 May, 9:30 - 17:30</span>
<span class="title">
Conference Program + Pycon World
</span>
<span class="title">
<p>Venue: University
<br/> Different Tracks and Workshops about Open Source Technologies</p>
</span>
</div>
<div class="schedule-text">
<p>9:30 All Tracks Start
<br/>17:30 Sessions End</p>
</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Friday</span>
<span class="time">25 May, 10:00 - 17:00</span>
<span class="title">
Brunch and DevSprints
</span>
<span class="title">
<p>Venue: Co-Working Lab</p>
</span>
</div>
<div class="schedule-text">
<p>Let's get together and do some real coding.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
</ul>
</div>
<a id="socialevent" class="in-page-link"></a>
<div class="col-sm-6 col-md-4">
<h1>Social Events
<br>22-25 May, 2019
</h1>
<ul class="schedule-overview">
<li>
<div class="schedule-title">
<span class="time">Tuesday</span>
<span class="time">22 May, 14:00-16:00</span>
<span class="title">
Arrived in town for the OpenTechSummit? Join us at the Meet and Greet.
</span>
</div>
<div class="schedule-text">
<p>Join the OpenTechSummit Speakers and Attendees casual Meet & Greet hangout, meet the local tech scene.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Tuesday</span>
<span class="time">22 May, 15:00</span>
<span class="title">
Venue Preparation with volunteers, organizers and exhibitors
</span>
</div>
<div class="schedule-text">
<p>Let's set up the venue for the event.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Tuesday</span>
<span class="time">22 May, 19:00</span>
<span class="title">
Let's get together for a Pre-Event Dinner Meetup with speakers of the event.
</span>
</div>
<div class="schedule-text">
<p>Please join us for a pre-event dinner meetup with locals and international participants of the OpenTechSummit.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Wednesday</span>
<span class="time">23 May, 19:00</span>
<span class="title">
Our official OpenTechSummit Social Dinner Event</a>
</span>
</div>
<div class="schedule-text">
<p>Join us for the OpenTechSummit Social Dinner Event. Please get your social event ticket beforehand.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Thursday</span>
<span class="time">24 May, 20:00</span>
<span class="title">
Berlin City Evening Tour</a>
</span>
</div>
<div class="schedule-text">
<p>Join us for an evening tour in Berlin City.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Friday</span>
<span class="time">25 May, 20:00</span>
<span class="title">
DevSprints BBQ</a>
</span>
</div>
<div class="schedule-text">
<p>Join us for DevSprint Spring BBQ!</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<a id="lightningtalks" class="in-page-link"></a>
<section class="image-with-text testimonials preserve-3d">
<div class="go-left side-image col-md-6 col-sm-4">
<div class="background-image-holder">
<img class="background-image" alt="About Image" src="img/lightningtalks.jpg">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Lightning Talks</h1>
<p class="lead">Lightning Talks are short lectures (almost) any conference participant may give at the event! Please simply add your proposal on our wiki page. There is only a review to ensure the lightning talks are covering Open Source or technical topics and rules are kept. Please read details in the wiki and add your proposal for a lightning talk!</p>
<p class="lead">Wednesday/Thursday, 24/24. May</p><br></br>
<!--<a href="./tickets/" class="btn" target="_self">Tickets</a> -->
<a href="./lightningtalks" class="btn btn-hollow" target="_self">Lightning Talk Wiki</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="cloudworkshop" class="in-page-link"></a>
<section class="image-with-text testimonials preserve-3d">
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="loklak" src="img/cloudworkshop.jpg">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Cloud Workshop</h1>
<p class="lead">
Please join us for an intensive workshop with Open Source Cloud experts from around the world on the latest technologies, development and deployment covering DevOps topics such as developing 'Using Kubernetes and Knative to deploy & secure containerized applications'.
</p>
<p class="lead">Wednesday, 23. May<br>
Registration: 9:30, Workshop: 10:00 - 15:30</p><br>
<a href="./cloudworkshop" class="btn btn-hollow" target="_self">Workshop Sign Up</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="pslab" class="in-page-link"></a>
<section class="image-with-text background-dark preserve-3d">
<div class="go-left side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="Pocket Science Lab" src="img/pslab-hackerspace.jpg">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
<h1 class="text-white">Experimenting with Pocket Science Lab</h1>
<p class="lead text-white">Pocket Science Lab is an Open Source measuring device for electronics engineers, scientists and students, that can be plugged into a smartphone or PC. The tiny pocket lab provides functions for an oscilloscope, a multimeter, a waveform generator, a frequency counter, a programmable voltage, current source and a data logger for dust sensors, gas sensors, ph-meter, gyroscope, accelorometer and hundreds more of compatible sensors. Learn how to use the Pocket Science Lab at the open workshop in the exhibition.
</p>
<p class="lead text-white">Thursday, 24. May, 10:00 - 15:00</p><br>
<a href="https://pslab.io" class="btn" target="_self">More Info</a>
</div>
</div>
</div>
</section>
<a id="artificialintelligence" class="in-page-link"></a>
<section class="image-with-text testimonials preserve-3d">
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="Artificial Intelligence" src="img/artificialintelligenceworkshop.jpg">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Artificial Intelligence Workshop</h1>
<p class="lead">
Artificial Intelligence frameworks have reached the point where they can be used as tools in daily work. Capabilities that can be achieved with AI are recognizing objects and making decisions. This workshop introduces participants to the basics of AI and covers topics such as practical deep learning, as well as an understanding of approaches and options for solving real world problems. In addition participants will practice developing and deploying artificial intelligence models.
</p>
<p class="lead">Wednesday, 23. May<br>
Registration: 9:30, Workshop: 10:00 - 15:30</p><br>
<a href="./aiworkshop" class="btn btn-hollow" target="_self">Workshop Sign Up</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="devsprints" class="in-page-link"></a>
<section class="image-with-text background-dark preserve-3d">
<div class="go-left side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="After-Event DevSprints" src="img/devsprints.jpg">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
<h1 class="text-white">After-Event DevSprints</h1>
<p class="lead text-white">Let's get together and meet developers and participants of the OpenTechSummit to learn in-depth how to make use of the knowledge you gained at the event. Participate in coding sessions, learn how to deploy projects and exchange ideas to progress with your projects. Please join us in the morning for a brunch and make use of the expertise of all participants.
</p>
<p class="lead text-white">Friday 25. May, 10:00 - 17:00</p><br>
<a href="./devsprints" class="btn" target="_self">Sign Up</a>
</div>
</div>
</div>
</section>
<a id="coderdojo" class="in-page-link"></a>
<section class="contained-gallery">
<div class="container">
<div class="row">
</div>
<div class="col-md-5 col-sm-6">
<h1>Thu. 24th May | Do. 24. Mai<br>10:00 - 17:00 Kids Coderdojo</h1>
<p class="lead">CoderDojo ist ein Club für Kinder und Jugendliche im Alter von 5 bis 17 Jahren, die Programmieren lernen und Spaß haben wollen. Freiwillige Mentor_innen helfen den Kindern, ihre Ideen umzusetzen. Dabei lernen sie spielerisch die Grundlagen des Programmierens. // CoderDojo is a club for children and teenagers aged 5 to 17 who want to learn programming and have fun. Volunteers help to implement ideas. Participants learn the basics of programming in a playful way.</p>
<!-- <a href="https://zen.coderdojo.com/dojos/de/berlin/dojo-berlin-friedrichshain" class="btn" target="_self">Berlin</a>
<a href="http://coderdojopotsdam.github.io/" class="btn" target="_self">Potsdam</a>
</div> -->
</div>
<div class="col-md-7 col-sm-6">
<div class="lightbox-gallery">
<ul>
<li>
<a href="img/IMG_8512.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/IMG_8512.JPG">
</div>
</a>
</li>
<li>
<a href="img/IMG_8533.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/IMG_8533.JPG">
</div>
</a>
</li>
<li>
<a href="img/IMG_8562.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/IMG_8562.JPG">
</div>
</a>
</li>
<li>
<a href="img/ots-basteln.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/ots-basteln.jpg">
</div>
</a>