-
Notifications
You must be signed in to change notification settings - Fork 2
/
index1.html
1115 lines (1009 loc) · 61.7 KB
/
index1.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 China 2019 | China's Open Technology Event, Artificial Intelligence, Personal Assistants, Machine Learning, Open Hardware, Open Source Software, Open Design, Open Data, Cognitive Experts</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="OpenTechSummit China 2019 Shenzhen - Open Source, Big Data, Design Thinking and Knowledge Tools at China's Premier Open Technology Event">
<meta name="keywords" content="OpenTechSummit, Open Source Software, China, Shenzhen, FOSSASIA, Asia">
<meta name="author" content="FOSSASIA">
<meta property="og:title" content="OpenTechSummit China 2019" />
<meta property="og:type" content="website" />
<meta property="og:image" content="" />
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@fossasiasg">
<meta name="twitter:title" content="OpenTechSummit China 2019">
<meta name="twitter:description" content="OpenTechSummit 2019 China - Open Source, Big Data, Design Thinking and Knowledge Tools at China's Open Technology Event">
<meta name="twitter:creator" content="@fossasiasg">
<meta name="twitter:image" content="">
<link rel="shortcut icon" href="fossasia.ico" type="image/x-icon" />
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/flexslider.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/elegant-icons.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/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-lava.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/custom.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>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-17146009-5', 'auto');
ga('send', 'pageview');
</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>
<nav class="overlay-nav">
<div class="container">
<div class="row">
<div class="col-md-2">
<a target="_self" href="https://opentechsummit.cn"><img alt="OpenTechSummit" class="logo logo-light" src="img/Logo_OpenTecSummit_white.png">
<img alt="FOSSASIA" class="logo logo-dark" src="img/Logo_OpenTecSummit_TXT_grey.png"></a>
</div>
<div class="col-md-10 text-right">
<ul class="menu">
<li><a target="_self" class="inner-link" href="#top">Home</a></li>
<li class="has-dropdown">
<a target="_self" href="./tickets">Tickets</a>
<ul class="nav-dropdown " style="min-height:70px ">
<li><a target="_self" href="./tickets">Tickets @eventyay</a></li>
<li><a target="_self" href="https://www.huodongxing.com/go/ots">Tickets @huodongxing</a></li>
</ul>
</li>
<li><a target="_self" class="inner-link" href="./OTS_CN_Schedule.pdf">Schedule</a></li>
<!-- <li><a target="_self" href="./speakers.html">Speakers</a></li>
<li class="has-dropdown"><a href="./tracks.html">Schedule</a>
<ul class="nav-dropdown">
<li><a target="_self" href="./schedule.html">Schedule</a></li>
<li><a target="_self" href="./tracks.html">Tracks</a></li>
<li><a target="_self" href="./rooms.html">Rooms</a></li>
</ul>
</li> -->
<!-- <li><a target="_self" class="inner-link" href="./speaker-registration/">Speakers</a></li>
<!--li class="has-dropdown">
<a target="_self" href="./event/schedule.html">Schedule</a>
<ul class="nav-dropdown " style="min-height:130px ">
<li><a target="_self" href="./event/schedule.html">Schedule (Complete)</a></li>
<li><a target="_self" class="inner-link" href="#keynotes">Keynote Speaker</a></li>
<li><a target="_self" href="./event/tracks.html">Tracks</a></li>
<li><a class="inner-link " href="#schedule">Daily Overview</a></li>
</ul>
</li>
<li><a target="_self" href="./event/tracks.html#2018-11-30">Tech Excursion</a></li-->
<li><a target="_self" class="inner-link" href="#exhibition">Exhibition</a></li>
<li><a target="_self" class="inner-link" href="#sponsors">Sponsors</a></li>
<li><a target="_self" href="./accommodation/index.html">Hotel</a></li>
<li class="has-dropdown"><a target="_self" href="https://blog.fossasia.org">OpenTechSummits</a>
<ul class="nav-dropdown" style="min-height:450px"> <!--whenever you add/remove an option, change the style="min-height:500px" by +- 25px-->
<li><a target="_self" href="https://2018.opentechsummit.cn">China 2018</a></li>
<li><a target="_self" href="https://2020.fossasia.org">Singapore 2020</a></li>
<li><a target="_self" href="https://2019.fossasia.org">Singapore 2019</a></li>
<li><a target="_self" href="https://2018.fossasia.org">Singapore 2018</a></li>
<li><a target="_self" href="https://2017.opentechsummit.net">Potsdam 2017</a></li>
<li><a target="_self" href="https://2017.fossasia.org">Singapore 2017</a></li>
<li><a target="_self" href="https://2016.opentechsummit.net">Berlin 2016</a></li>
<li><a target="_self" href="https://2016.fossasia.org">Singapore 2016</a></li>
<li><a target="_self" href="https://2015.fossasia.org">Singapore 2015</a></li>
<li><a target="_self" href="https://2014.fossasia.org">Phnom Penh 2014</a></li>
<li><a target="_self" href="https://2012.fossasia.org">Mekong Delta 2012</a></li>
<li><a target="_self" href="https://2011.fossasia.org">Saigon 2011</a></li>
<li><a target="_self" href="https://2010.fossasia.org">Saigon 2010</a></li>
<li><a target="_self" href="https://coc.fossasia.org">Code of Conduct</a></li>
</ul>
</li>
<li class="social-link"><a target="_self" href="https://twitter.com/fossasia"><i class="icon social_twitter"></i></a></li>
<!-- <li class="social-link"><a target="_self" href="https://facebook.com/fossasia"><i class="icon social_facebook"></i></a></li> -->
</ul>
<div class="sidebar-menu-toggle"><i class="icon icon_menu"></i></div>
<div class="mobile-menu-toggle"><i class="icon icon_menu"></i></div>
</div>
</div>
</div>
<div class="bottom-border"></div>
<div class="sidebar-menu">
<img alt="FOSSASIA" class="logo" src="img/Logo_OpenTecSummit_white.png">
<div class="bottom-border"></div>
<div class="sidebar-content">
<div class="widget">
<ul class="menu">
<li><a class="inner-link" href="#top" target="_self">Home</a></li>
<li><a class="inner-link" href="#topics" target="_self">Topics</a></li>
<li><a href="./OTS_CN_Schedule.pdf" target="_self">Schedule</a></li-->
<li><a href="./speaker-registration/" target="_self">Speakers</a></li>
<!-- <li><a class="inner-link" href="#team" target="_self">Team</a></li>-->
<li><a href="https://blog.fossasia.org" target="_self">Blog</a></li>
<li><a class="inner-link" href="#contact" target="_self">Subscribe</a></li>
</ul>
</div>
<div class="widget">
<ul class="social-profiles">
<li><a href="https://twitter.com/fossasia" target="_self"><i class="icon social_twitter"></i></a></li>
<li><a href="https://facebook.com/fossasia" target="_self"><i class="icon social_facebook"></i></a></li>
<li><a href="https://www.flickr.com/photos/fossasia/" target="_self"><i class="icon social_instagram"></i></a></li>
<li><a href="https://plus.google.com/108920596016838318216" target="_self"><i class="icon social_googleplus"></i></a></li>
<li><a href="https://github.com/fossasia" target="_self" ><i class="fa fa-github fa-lg"></i></a></li>
</ul>
</div>
<div class="copy-text-box">
<div class="copy-text-bottom">
<span>© Copyright 2019 Creative Commons By License, FOSSASIA</span>
</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_China.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>
<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/Logo_OpenTecSummit_White-Rectangle.png">
<span class="uppercase text-white">China's Open Technology Event at Tsinghua University<br> Open Faculty for Innovation, Education, Science, Technology and Art</span>
<h1 class="large-h1 text-white"><span>OpenTechSummit China<br>
21 - 23 Nov 2019, Shenzhen</span><br>
<span>深圳开源技术峰会清华大学<br> 国际开放创新教育中心主办</span></h1>
<a target="_self" href="./tickets/" class="btn">Tickets | 注册</a>
<a target="_self" href="./OTS_CN_Schedule.pdf" class="btn btn-hollow inner-link">Schedule</a>
</div>
</div>
</div>
</li>
</ul>
</section>
<a id="speaker" 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" target="_self">
<div class="col-md-2 col-sm-4 text-center">
<i class="icon pe-7s-like2 icon-large"></i>
</div>
<div class="col-md-4 col-sm-8">
<h1>Get your Ticket for the event now here!</h1>
</div>
</a>
<a href="./OTS_CN_Schedule.pdf" class="block-content" target="_self">
<div class="col-md-2 col-sm-4 text-center">
<i class="icon pe-7s-id icon-large"></i>
</div>
<div class="col-md-4 col-sm-8">
<h1>Check out the Schedule here.</h1>
</div>
</a>
</div>
</div>
</section>
<!--a id="keynotes" class="in-page-link"></a>
<section class="speakers duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Keynote Speakers</h1>
</div>
</div>
<div class="row">
<!--
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Chan Cheow Hoe" src="img/ChanCheowHoe.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://www.tech.gov.sg/"><i class="icon fa fa-external-link"></i></a>
<a target="_self" href="https://github.com/GovTechSG"><i class="icon fa fa-github"></i></a>
<a target="_self" href="https://twitter.com/GovTechSG"><i class="icon social_twitter"></i></a>
<a target="_self" href="https://www.linkedin.com/in/cheow-hoe-chan-92646215"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Chan Cheow Hoe</h2>
<span class="sub">Government CIO, GovTech Singapore</span>
<p>
Chan Cheow Hoe is the Government Chief Information Officer (CIO)/DCE of GovTech. As the Government CIO, Cheow Hoe oversees Singapore Government’s central information technology systems and infrastructure, and drives the development and delivery of innovative public services for citizens and businesses.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Øyvind Roti" src="img/ØyvindRoti.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://cloud.google.com/"><i class="icon fa fa-external-link"></i></a>
<a target="_self" href="https://www.linkedin.com/in/oyvindr/"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Øyvind Roti</h2>
<span class="sub">Head of Solutions Architecture at Google Cloud</span>
<p>
I lead Google's international team of Cloud Architects. My professional focus areas include cloud infrastructure, data analytics and machine learning. I enjoy making toy projects with Python, Go and C and consider myself a pragmatist (Emacs with Evil mode). Always looking for opportunities to learn from others. So, please find me and share your knowledge!
</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Frank Karlitschek" src="img/FrankKarlitschek.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://nextcloud.com"><i class="icon fa fa-external-link"></i></a>
<a target="_self" href="https://github.com/karlitschek"><i class="icon fa fa-github"></i></a>
<a target="_self" href="https://twitter.com/fkarlitschek"><i class="icon social_twitter"></i></a>
<a target="_self" href="https://www.linkedin.com/in/frankkarlitschek"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Frank Karlitschek</h2>
<span class="sub">Founder at Nextcloud</span>
<p>Frank is the Founder and Managing Director at Nextcloud. He also founded the ownCloud project in 2010 to return control over the storing and sharing of information to consumers. Frank is also a KDE contributor since 2001.</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Naomi Wu" src="img/naomiwu.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://www.youtube.com/channel/UCh_ugKacslKhsGGdXP0cRRA"><i class="icon fa fa-external-link"></i></a>
<a target="_self" href="https://twitter.com/RealSexyCyborg"><i class="icon social_twitter"></i></a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Naomi Wu</h2>
<span class="sub">Tech Maker & Hacker</span>
<p>Naomi Wu is known for her work in the open source hardware Sino:Bit, Creality3D Ender-3, Wu Ying Shoes & many other wearable technologies. She was listed as one of the 43 most influential women in 3D printing by 3D Printer & 3D Printing News. </p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Mario Behling" src="img/mariobehling.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://opntec.org"><i class="icon fa fa-external-link"></i></a>
<a target="_self" href="https://github.com/mariobehling"><i class="icon fa fa-github"></i></a>
<a target="_self" href="https://twitter.com/mariobehling"><i class="icon social_twitter"></i></a>
<a target="_self" href="https://www.linkedin.com/in/mariobehling"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Mario Behling</h2>
<span class="sub">CEO at OpnTec</span>
<p>Mario Behling is the CEO of OpnTec. He is a technologist with 15 years of experience in leading international development teams in Europe, Asia and India. He helped to get FOSSASIA started and advises Open Source Neurotech projects in Germany. </p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Hong Phuc Dang" src="img/hongphucdang.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://fossasia.org"><i class="icon fa fa-external-link"></i></a>
<a target="_self" href="https://twitter.com/hpdang"><i class="icon social_twitter"></i></a>
<a target="_self" href="https://www.linkedin.com/in/hongphucdang"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Hong Phuc Dang</h2>
<span class="sub">Founder at FOSSASIA</span>
<p>Hong Phuc Dang is the founder of FOSSASIA, the Open Source organization from Asia with the goal to bring together a global community to develop Open Tech solutions to form a better future. She advises open source and inner source strategies for NGOs and corporations such as Daimler and Zalando.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<a id="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 speakers-row">
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Guojie Luo" src="img/GuojieLuo.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://ceca.pku.edu.cn/en/people_/faculty_/guojie_luo/"><i class="icon fa fa-external-link"></i></a>
<a target="_self" href="https://www.linkedin.com/in/guojie-luo/"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Guojie Luo<br></span>
<span>Associate Professor</span>
<span>Beijing University / Pengcheng Lab</span>
</div>
</div>
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Pei Zhang" src="img/PeiZhang.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://www.linkedin.com/in/pei-zhang-45a4a4102/"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Pei Zhang</span>
<span>Senior Quality Engineer</span>
<span>Red Hat</span>
</div>
</div>
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Mario Behling" src="img/mariobehling.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://gitlab.com/mariobehling"><i class="icon fa fa-external-link"></i></a>
<a target="_self" href="https://github.com/mariobehling/"><i class="icon fa fa-github"></i></a>
<a target="_self" href="https://twitter.com/mariobehling"><i class="icon social_twitter"></i></a>
<a target="_self" href="https://www.linkedin.com/in/mariobehling/"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Mario Behling<br></span>
<span>CEO</span>
<span>OpnTec Germany</span>
</div>
</div>
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Charles Shih" src="img/CharlesShih.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://www.linkedin.com/in/shi3chen2/"><i class="icon social_linkedin"></i></a>
<a target="_self" href="https://shichen.blog.csdn.net/"><i class="icon fa fa-external-link"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Charles Shih<br></span>
<span>Software Engineer</span>
<span>Red Hat </span>
</div>
</div>
</div>
<a target="_self" href="./OTS_CN_Schedule.pdf" class="btn">Schedule PDF</a>
</section-->
<a id="topics" 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="Technology and Startups" src="img/seeedatotscn.jpg">
<h3>Technology and Startups</h3>
<p>Learn about new developments in software, hardware, science and machine learning. Meet developers of Open Source neurotech, laptops that can send and receive on all frequencies, cloud deployment technologies like Kubernetes and web technologies across the board. In the business track you will meet startups that tell us how they succeed with Open Tech.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OpenTech, Artificial Intelligence and Blockchain" src="img/otschina2019.jpg">
<h3>OpenTech, Artificial Intelligence and Blockchain</h3>
<p>What are the technologies and scientific achievements that make our world run? What is the role of Data Scientists today? We have sessions on AI and machine learning personal assistants, sessions on Open Source solutions, customized hardware production and applications using Arduinos, Rapsberry PIs, and design focused workshops with topics ranging from UX design to production.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="FOSSASIA Tracks" src="img/25249251663_aca02d5fff_z.jpg">
<h3>Tracks at OpenTechSummit</h3>
<p>OpenTechSummit China is always looking for team members who are interested to support the event."
<a href="./volunteers/" target="_self">Join us here!</a>
</div>
</div>
</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="./OTS_CN_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 schedule-with-text">
<div class="container">
<div class="row">
<div class="col-md-5 col-sm-6">
<h1>Visit OpenTechSummit China to connect with developers, makers and learn about the Silicon Valley of the Far East.</h1>
<a href="./tickets/" class="btn" target="_self" style="color: white; text-decoration: none">Buy a ticket | 注册</a>
<a href="./OTS_CN_Schedule.pdf" class="btn" target="_self">Check out the schedule</a>
</div>
<div class="col-md-7 col-sm-6">
<ul class="schedule-overview">
<li>
<div class="schedule-title">
<span class="time">Day 1 - November 21 </span>
<span class="title">Shenzhen Tech Scene Exploration Day</span>
</div>
<div class="schedule-text">
<p>Visit the famous Huqiangbei and meet local makers.</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">Day 2 - November 22</span>
<span class="title">Conference Day</span>
</div>
<div class="schedule-text">
<p>
Opening, Keynotes, and presentations</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">Day 3 - November 23</span>
<span class="title">Python Workshop Track and Open Hack Lab<span>
</div>
<div class="schedule-text">
<p>Join us at OpenFIESTA Institute at Tsinghua University Graduate Campus and participate in the Python Workshop or work on projects in the Open Hack Lab.
</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="techexcursion" class="in-page-link"></a>
<section class="image-with-text testimonials preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>10:00 AM, Thursday, 21 Nov.<br>
Tech Excursion at Hua Qiang Bei</h1>
<p class="lead">
We are going to explore the hardware Mekka of Shenzhen together. We meet at Huaqiang Bei.</p>
<!-- <a href="./cloud" class="btn btn-hollow" target="_self">Cloud Day Signup</a> -->
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="go-right side-image col-md-6 col-sm-4">
<div class="background-image-holder">
<img class="background-image" alt="About Image" src="img/huaqiangbei.jpg">
</div>
</div>
</section>
<a id="PyconWorld" 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="Susi Android" src="img/aimeetup.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>15:00, Thursday, 21 Nov.<br>
AI Meetup at Pengcheng Lab</h1>
<p class="lead">AI meetup at Peng Cheng Lab on Thursday, November 21 at 3:00PM.
<br>
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">10:00 AM, Saturday, 23 Nov.<br/>
Python Workshop at OpenFIESTA</h1>
<p class="lead text-white">
In cooperation with Pycon World we conduct an introductory Python Workshop on Saturday, November 23 at OpenFIESTA.<br></p>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="FOSSASIA OpenTechSummit" src="img/pyconworkshop.jpg">
</div>
</div>
</section>
<a id="openxlab" class="in-page-link"></a>
<section class="duplicatable-content visitor-info">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Open X Lab, Saturday November 23, 10:00 - 17:00 at OpenFIESTA</h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Pocket Science Lab" src="img/pocketsciencelab.jpg">
<h3>Do Science with PSLab Open Hardware at Open X Lab</h3>
<p>Become a Scientist with Pocket Science Lab. We will have different tables to experiment with the Pocket Science Lab. Simply connect your phone to a PSLab and start measuring!</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Pocket Science Lab" src="img/susi_ai.jpg">
<h3>Create Open Voices Assistants with SUSI.AI at Open X Lab</h3>
<p>Set up personal voice assistants with SUSI.AI, .</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Science Hacks at FOSSASIA Summit" src="img/25903306426_6c2a0ca3f0_z.jpg">
<h3>Do your own project at Open X Lab</h3>
<p>Create and show your own work at Open X Lab. Come to the event, share your ideas and goals and get contributors on board. Or simply, play around with projects like Magic LED Badges, make your own video screencasts and Open Hardware.</p>
</div>
</div>
</div>
</div>
</section>
<section class="section-header overlay preserve3d">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/16844586226_096e027e17_z.jpg">
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-sm-6 col-sm-offset-">
<i class="icon pe-7s-global"></i>
<i class="icon pe-7s-glasses"></i>
<i class="icon pe-7s-sun icon-large"></i>
<h1 class="text-white">A little more about the OpenTechSummit</h1>
<p class="lead text-white">
The OpenTechSummit is a place where developers, start-ups, and contributors around the world get together. Previous events took place in Singapore, Taiwan, Germany and Vietnam. Presentations range from hardware, to design, graphics and software. The OpenTechSummit was established in 2006.
</p>
</div>
</div>
</div>
</section>
<a id="kids" class="in-page-link"></a>
<section class="contained-gallery">
<div class="container">
<div class="row">
<div class="col-md-7 col-sm-6">
<div class="lightbox-gallery">
<ul>
<li>
<a href="img/25245287424_65a2570d5a_z.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/25245287424_65a2570d5a_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/FOSSASIA_OpenTechSummit.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/FOSSASIA_OpenTechSummit.jpg">
</div>
</a>
</li>
<li>
<a href="img/25598552180_f29b783d76_z.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/25598552180_f29b783d76_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/25873223686_77e54ec684_z.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/25873223686_77e54ec684_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/25873226456_4999a5c39b_z.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/25873226456_4999a5c39b_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/25628649310_c32454edca_z.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/25628649310_c32454edca_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/25878014605_f111ca20ce_z.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/25878014605_f111ca20ce_z.jpg">
</div>
</a>
</li>
<li>
<a href="img/25783043271_87a7c01824_z.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/25783043271_87a7c01824_z.jpg">
</div>
</a>
</li>
</ul>
</div>
</div>
<a id="exhibition" class="in-page-link"></a>
<div class="col-md-5 col-sm-6">
<h1>Exhibition Lounge</h1>
<p class="lead">
Open source projects are showcasing their work at the exhibition lounge. Showcases include Open Hardware Pocket Science Lab, Nextcloud, Security Keys, SUSI.AI and more. This is also a relax area next to the conference hall where all attendees hangout and mingle.</p>
<!-- <a href="./tickets/" class="btn" target="_self">Get Tickets</a>
<a target="_self" href="./tracks.html" class="btn btn-hollow">Check the Schedule</a> -->
</div>
</div>
</div>
</section>
<a id="sponsors" class="in-page-link"></a>
<section class="sponsors">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1>Proudly supported by</h1>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://opntec.com" target="_self">
<img alt="Sponsor" src="img/logo_opntec.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://fossasia.org" target="_self">
<img alt="Sponsor" src="img/fossasia.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://www.fiesta.tsinghua.edu.cn/" target="_self">
<img alt="Sponsor" src="img/tsinghua-uni.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://susi.ai" target="_self">
<img alt="Sponsor" src="img/SUSI.AI_logo.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://en.openi.org.cn" target="_self">
<img alt="Sponsor" src="img/openI.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://www.fiesta.tsinghua.edu.cn" target="_self">
<img alt="Sponsor" src="img/openfiesta.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://pslab.io" target="_self">
<img alt="Sponsor" src="img/pslab-io.png">
</a>
</div>
</div>
</div>
<div class="col-sm-12 text-center">
<span>Interested in becoming a sponsor? <a href="mailto:[email protected]" target="_self">Get in touch</a></span>
</div>
</div>
<a id="team" class="in-page-link"></a>
<section class="speakers duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Team</h1>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Samita Yan" src="img/SamitaYan.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://linuxstory.org" target="_self"><i class="icon fa fa-external-link"></i></a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Samita Yan</h2>
<span class="sub">Event Manager</span>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Li Ji" src="img/LIJi.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/gisoongchee" target="_self"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Li Ji</h2>
<span class="sub">Tsinghua University</span>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Gi Soong Chee" src="img/GiSoongChee.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://twitter.com/gisoongchee" target="_self"><i class="icon social_twitter"></i></a>
<a href="https://www.linkedin.com/in/gisoongchee" target="_self"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Gi Soong Chee</h2>
<span class="sub">FOSSASIA Mentor</span>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Xing Haijiao" src="img/haijiao.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://twitter.com/fossasia" target="_self"><i class="icon social_twitter"></i></a>
<a href="https://www.linkedin.com/company/fossasia" target="_self"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>邢海娇</h2>
<span class="sub">FOSSASIA Coordinator</span>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="AnandJain" src="img/EdenDang1.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://twitter.com/dangphuchau" target="_self"><i class="icon social_twitter"></i></a>
<a href="https://www.linkedin.com/in/dangphuchau/" target="_self"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Eden Dang</h2>
<span class="sub">FOSSASIA Program Manager</span>
</div>
</div>
</div>
</section>
<a id="venue" class="in-page-link"></a>
<section class="contact-tweets">
<div class="container vertical-align">