-
Notifications
You must be signed in to change notification settings - Fork 95
/
index1.html
3539 lines (3374 loc) · 220 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>FOSSASIA Summit 2020 | Asia's Open Technology Event about AI, Personal Assistants, Blockchain ,Machine Learning, Open Hardware, Open Source Software, Open Design, Open Data in Singapore</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="FOSSASIA Summit 2020 Singapore - Open Source, Big Data, Design Thinking and Free Knowledge Tools at Asia's Premier Open Technology Event">
<meta name="keywords" content="FOSSASIA Summit,FOSS, Free and Open Source Software,Singapore, Asia">
<meta name="author" content="FOSSASIA">
<meta property="og:title" content="FOSSASIA Summit 2020" />
<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="FOSSASIA Summit 2020">
<meta name="twitter:description" content="FOSSASIA Summit 2020 Singapore - Open Source, Big Data, Design Thinking and Free Knowledge Tools at Asia's Premier Open Technology Event">
<meta name="twitter:creator" content="@fossasiasg">
<meta name="twitter:image" content="">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type="text/css" rel="stylesheet" href="resources/sheet.css" >
<style type="text/css">.ritz .waffle a { color: inherit; }.ritz .waffle .s11{background-color:#f4cccc;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:bottom;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s17{background-color:#6aa84f;text-align:center;color:#ffffff;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s6{background-color:#ffffff;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s5{background-color:#ffffff;text-align:left;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s13{background-color:#e55e1e;text-align:center;color:#ffffff;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s2{background-color:#ffffff;text-align:left;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s10{background-color:#4de3a1;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s20{background-color:#cc4125;text-align:center;color:#ffffff;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s14{background-color:#d0e0e3;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s18{background-color:#b35d16;text-align:center;color:#ffffff;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s22{background-color:#4b8bbe;text-align:center;color:#ffffff;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s15{background-color:#e69138;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s27{background-color:#f7ffa5;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s19{background-color:#ead1dc;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s16{background-color:#ffff00;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s7{background-color:#fff2cc;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s26{background-color:#b4a7d6;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s12{background-color:#006699;text-align:center;color:#ffffff;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s23{background-color:#f0d02b;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s0{background-color:#ffffff;text-align:left;font-weight:bold;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s8{background-color:#f4cccc;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s9{background-color:#ffffff;text-align:center;color:#ffffff;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s4{border-bottom:1px SOLID #000000;background-color:#ffffff;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s3{border-bottom:1px SOLID #000000;background-color:#ffffff;text-align:left;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s21{background-color:#d0e0e3;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s1{background-color:#ffffff;text-align:center;font-weight:bold;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s24{background-color:#6d9eeb;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s25{background-color:#ffae2a;text-align:center;color:#000000;font-family:'Arial';font-size:10pt;vertical-align:middle;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}</style>
<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.6.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="css/map-box.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>
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () { scrollFunction() };
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("myBtn").style.display = "block";
} else {
document.getElementById("myBtn").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
$('html, body').animate({ scrollTop: 0 }, 'slow');
}
</script>
<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">
<button onclick="topFunction()" id="myBtn" title="Go to top"><i class="fa fa-chevron-up"></i></button> <!-- Go to top button -->
<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-sm-2">
<a target="_self" href="https://fossasia.org">
<img alt="FOSSASIA Summit" class="logo logo-light" src="img/fossasia-long.png">
<img alt="FOSSASIA" class="logo logo-dark" src="img/fossasia-dark.png">
</a>
</div>
<div class="col-sm-10 text-right">
<ul class="menu">
<li>
<a target="default" class="inner-link" href="#top">Home</a>
</li>
<li class="has-dropdown">
<a class="inner-link" href="./tickets/">Sign up</a>
<ul class="nav-dropdown " style="min-height:30px ">
<li>
<a class="inner-link " href="#communitytickets">Community Tickets</a>
</li>
</ul>
<li class="has-dropdown">
<a class="inner-link" href="./event/schedule.html" ">Event</a>
<ul class="nav-dropdown " style="min-height:370px ">
<!-- <li>
<a class="inner-link " href="#schedule">Daily Overview</a>
</li> -->
<li>
<a class="inner-link " href="#covid19">COVID19 Update</a>
</li>
<li>
<a target="_self" href="./event/schedule.html">Full Schedule</a>
</li>
<li>
<a class="inner-link " href="#schedule-roster">Schedule Track Roster</a>
</li>
<li>
<a target="_self" class="inner-link" href="#venue">Venue Location</a>
</li>
<li>
<a class="inner-link " href="#tracks">Tracks</a>
</li>
<!-- <li>
<a target="_self" class="inner-link" href="#keynotes">Keynotes and Featured</a>
</li> -->
<li>
<a target="_self" href="./event/rooms.html">Day 1, Event Opening</a>
</li>
<li>
<a target="_self" href="./event/tracks.html#2020-03-20">Day 2, Fri, March 20</a>
</li>
<li>
<a target="_self" href="./event/tracks.html#2020-03-16">Day 3, Sat, March 21</a>
</li>
<li>
<a target="_self" class="inner-link" href="./event/speakers.html">Speakers</a>
</li>
<li>
<a target="_self" class="inner-link" href="#academy">FOSSASIA Academy</a>
</li>
<li>
<a target="_self" class="inner-link" href="#cloudtraining">Cloud and AI Training</a>
</li>
<!-- <li>
<a target="_self" class="inner-link" href="#socialevent">Social Events</a>
</li> -->
<li>
<a target="_self" class="inner-link" href="#codeheat">Codeheat Award</a>
</li>
</ul>
</li>
<li class="has-dropdown">
<a target="_self" class="inner-link" href="./exhibition/">Exhibition</a>
<ul class="nav-dropdown" style="min-height:120px">
<li>
<a target="_self" href="./exhibition/index.html#exhibitionschedule">Exhibition Schedule</a>
</li>
<!-- <li>
<a target="_self" href="./exhibition/index.html#boothlayout">Booth Layout</a>
</li>
<li>
<a target="_self" href="./exhibition/index.html#exhibitors">Exhibitors List</a>
</li>
<li>
<a target="_self" href="https://exhibitors.fossasia.org/">Exhibitors Manual</a>
</li>
<li>
<a target="_self" href="./FOSSASIA_Summit_2020_Exhibition.pdf">Exhibition Booklet</a> -->
</li>
<li>
<a target="_self" href="./exhibitors/">Book Booth</a>
</li>
<li>
<a target="_self" href="https://docs.google.com/forms/d/e/1FAIpQLSfT3S92SeY96bfZivu06sh05FT8pJT5ubFiUmuPth65hYDLIw/viewform">Apply for Community Booth</a>
</li>
</ul>
</li>
<li>
<a target="_self" class="inner-link" href="#volunteer">Volunteer</a>
</li>
<li>
<a target="_self" class="inner-link" href="#sponsors">Sponsors</a>
</li>
<!-- <li class="has-dropdown">
<a target="_self" class="inner-link" href="#sponsors">Sponsor</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>
<li>
<a target="_self" href="./FOSSASIA_Summit_2020_Sponsorship.pdf">Sponsorship Prospectus</a>
</li>
</ul>
</li>
<li>
<a target="_self" class="inner-link" href="#press">Press</a>
</li> -->
<li>
<a target="_self" href="https://blog.fossasia.org">Blog</a>
</li>
<li class="has-dropdown">
<a href="https://events.fossasia.org">More</a>
<ul class="nav-dropdown" style="min-height:390px">
<!--whenever you add/remove an option, change the style="min-height:500px" by +- 25px-->
<li>
<a target="_self" href="https://labs.fossasia.org">FOSSASIA Labs</a>
</li>
<li>
<a target="_self" href="https://2019.fossasia.org">FOSSASIA Summit 2019</a>
</li>
<li>
<a target="_self" href="https://2018.fossasia.org">FOSSASIA Summit 2018</a>
</li>
<li>
<a target="_self" href="https://2017.fossasia.org">FOSSASIA Summit 2017</a>
</li>
<li>
<a target="_self" href="https://2016.fossasia.org">FOSSASIA Summit 2016</a>
</li>
<li>
<a target="_self" href="https://2015.fossasia.org">FOSSASIA Summit 2015</a>
</li>
<li>
<a target="_self" href="https://2014.fossasia.org">FOSSASIA Summit 2014</a>
</li>
<li>
<a target="_self" href="https://2012.fossasia.org">FOSSASIA Summit 2012</a>
</li>
<li>
<a target="_self" href="https://2011.fossasia.org">FOSSASIA Summit 2011</a>
</li>
<li>
<a target="_self" href="https://2010.fossasia.org">FOSSASIA Summit 2010</a>
</li>
<li>
<a target="_self" href="https://coc.fossasia.org">Code of Conduct</a>
</li>
</ul>
</li>
<li class="social-link hidden-md hidden-sm hidden-xs">
<a target="_self" href="https://twitter.com/fossasia">
<i class="icon social_twitter"></i>
</a>
</li>
<li class="social-link hidden-md hidden-sm hidden-xs">
<a target="_self" href="https://facebook.com/fossasia">
<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/fossasia">
<i class="fa fa-github fa-lg"></i>
</a>
</li>
</ul>
<div class="mobile-menu-toggle"><i class="icon icon_menu"></i></div>
</div>
</div>
</div>
<div class="bottom-border"></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/fossasia-summit.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/fossasia-squarewhite-path.png">
<span class="uppercase text-white sub-heading-font ">OpenTechSummit Singapore</span> <h1 class="large-h1 text-white">
<!-- <span>The future is FOSS!</span><br> -->
<span>Asia's Premier Developer Event<br>
Exhibition + Conference, March 19 - 21 + DevSprints, March 22, 2020<br>
Lifelong Learning Institute</span>
</h1>
<a target="_self" href="./event/schedule.html" class="btn">Schedule</a>
<a target="_self" href="https://www.youtube.com/fossasiaorg" class="btn btn-hollow inner-link">Live Stream</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 FOSSASIA Summit will take place as an offline and online event.
Please read about <a href="https://github.com/fossasia/Event-Safety-Measures" target="_self">Hygiene and Health Measures</a>, find infos on this <a href="https://blog.fossasia.org/fossasia-summit-2020-takes-places-as-online-and-offline-event/" target="_self">blog post</a>, follow us on <a href="https://twitter.com/fossasia" target="_self">Twitter</a> and join our <a href="https://t.me/fossasiasg" target="_self">Telegram channel</a> for updates.
</h1>
</div>
</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 and Tracks</h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Personal Voice Assistants, AI and Cloud" src="img/25903306426_6c2a0ca3f0_z.jpg">
<h3>Personal Voice Assistants and Artificial Intelligence</h3>
<p>Learn about natural language processing, how to build skills and actions for voice assistants or how to create your own Open Source chatbots in the <a href="./event/tracks.html#Artificial Intelligence" target="_self">Artificial Intelligence</a> deep technology track. Join sessions covering Bot Framework, Tensorflow, 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/exhibitionfossasia.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 <a href="./event/tracks.html#Cloud, Containers, DevOps" target="_self">Cloud, Containers, DevOps</a> track cover Kubernetes, Serverless Architecture, Microservices, Docker Kompose, Omnibus, OpenStack, Virtual Kubelet, and Continuous Integration.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Blockchain" src="img/25249251663_aca02d5fff_z.jpg">
<h3>Blockchain</h3>
<p>Meet developers and startups working on the blockchain to create solutions for distributed computing, cloud services and Fintech in the <a href="./event/tracks.html#Blockchain" target="_self">Blockchain</a> track.<br><br><br><br><br>
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Cybersecurity" src="img/32663717444_b6a10ec5a6_z.jpg">
<h3>Cybersecurity</h3>
<p>Find out how to keep your services secure in the <a href="./event/tracks.html#Cybersecurity" target="_self">Cybersecurity</a> 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="Web & Mobile" src="img/15979370202_a5303fd3f3_z.jpg">
<h3>Web & Mobile</h3>
<p>What technologies will we need for the Conversational Web? How will existing technologies change and what else is happening in tech for web and mobile platforms? A wide variety of topics are covered in the <a href="./event/tracks.html#Web Technologies" target="_self">Web Technologies</a> and <a href="./event/tracks.html#Mobile Technologies" target="_self">Mobile Technologies</a> track with talks and workshops about JS frameworks, PWA, Android, Web VR and AR.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Hardware, Design and Local Production" src="img/hands-on1.jpg">
<h3>Hardware, Design and Production</h3>
<p>The FOSSASIA Open Tech Summit covers topics from software to hardware and knowledge. These are the ingredients for production. We have a dedicated track on <a href="./event/tracks.html#Hardware & Design" target="_self">Hardware & Design</a>. Apart from technical topics speakers will share their experience from making prototype to going to large scale production and working with mass manufacturers.<br><br>
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Open Data, Internet Society, Community" src="img/opendata.jpg">
<h3>Open Data, 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? These are some of the questions in the <a href="./event/tracks.html#Internet, Society, Community" target="_self">Open Data, Internet, and Community</a> track.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Database" src="img/database-track.jpg">
<h3>Database</h3>
<p>Meet developers of PostgreSQL, MySQL, Apache Spark, MariaDB and NoSQL projects and learn how to save your company money with Open Source database solutions in the <a href="./event/tracks.html#Database" target="_self">Database</a> track. 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="Kernel & Platform" src="img/25929228935_3914b83c0d_z.jpg">
<h3>Kernel & Platform</h3>
<p>The <a href="./event/tracks.html#Kernel & Platform" target="_self">Kernel & Platform</a> track covers topics from the Linux Kernel to BSD and desktop systems such as Meilix or applications like VLC. Learn about BSD 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 Learn C from the trenches.</p><br><br><br>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Science Tech and Education" src="img/fossasiaopenhardware.jpg">
<h3>Science Tech and 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? The <a href="./event/tracks.html#Science & Education" target="_self">Science Tech and Education</a> track covers it.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="FOSSASIA Tracks" src="img/15792689510_8aaee85b12_z.jpg">
<h3>Python Pycon World</h3>
<p>In the <a href="./event/tracks.html#Python" target="_self">Pycon World </a> track it is all about Python. Learn about development technologies for web, desktop and cloud solutions using Python.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Compliance and Legal" src="img/fossasiaopenhardware.jpg">
<h3>Compliance and Legal</h3>
<p>In order to use Open Source in companies across the world it is important to understand the legal settings in different countries that IT companies using and developing Open Source operate in. In the <a href="./event/tracks.html#Compliance & Legal" target="_self">Compliance and Legal</a> experts share their knowledge about laws and legal frameworks in regards to Open Source.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="img/32663717444_b6a10ec5a6_z.jpg" src="img/25783043271_87a7c01824_z.jpg">
<h3>Open Source Business</h3>
<p><a href="./event/tracks.html#Open Source Business" target="_self">Open Source Business</a> covers topics around economic questions of FOSS technologies. What current questions exist? What new business models and opportunities exist for developers and contributors?
</p>
</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>Sign up for the event in Singapore!</h1>
<p class="lead">
Choose from different options and join us!
</p>
</div>
</a>
<a href="./event/schedule.html" 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>Check out the summit schedule here.</h1>
<p class="lead">
Learn about the tracks and sessions about Cloud, DevOps, AI, Machine Learning, Blockchain, Open Hardware, Science, Web, Mobile and much more.
</p>
</div>
</a>
</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="Bunnie Huang" src="img/BunnieHuang.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="https://chibitronics.com">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/chibitronics">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/bunnie-huang-b98910/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Bunnie Huang</h2>
<span class="sub">Chibitronics PTE LTD</span>
<p>Bunnie is best known for his work hacking the Microsoft Xbox, as well as for his efforts in designing and manufacturing open source hardware, including the chumby (app-playing al
clock), chibitronics (teaching electronics through arts and crafts), and Novena (DIY laptop).</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="Mitch Altman" src="img/MitchAltman.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://www.linkedin.com/in/altmanmitch/">
<i class="icon social_linkedin"></i>
</a>
<a target="_self" href="https://cornfieldelectronics.com/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/maltman23">
<i class="icon social_twitter"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Mitch Altman</h2>
<span class="sub">Open Hardware Creator</span>
<p>Mitch Altman is a San Francisco-based hacker and inventor, best known for inventing TV-B-Gone, as featured speaker at hacker conferences, as international expert on the hackerspace movement, and for teaching introductory electronics workshops.</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="Dr Koh Tat Suan" src="img/KohTatSuan.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://www.lli.sg/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="_self" href="https://www.linkedin.com/in/tat-suan-koh-99335b40/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Dr Koh tat Suan</h2>
<span class="sub">Director ofLifelong Learning Institute</span>
<p>He oversees the management of the Lifelong Learning Institute and supports the Lifelong Learning Council to promote lifelong learning mindset among Singaporeans under the SkillsFuture. He has been a public service officer for nearly 38 years.</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="ShankerVSelvadurai" src="img/ShankerVSelvadurai.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://www.ibm.com/in-en/?ar=1">
<i class="icon fa fa-external-link"></i>
</a>
<a target="_self" href="https://www.linkedin.com/in/shankervs/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Shanker V Selvadurai</h2>
<span class="sub">Vice President of IBM Asia Pacific</span>
<p>He leads the technical organization that helps clients across Asia Pacific to explore and co-create cloud based solutions that leverage data, analytics and AI capabilities. Prior to joining IBM, he held key positions in areas of research, development,sales and marketing.</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="Duane O'Brien" src="img/DuaneOBrien.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="https://indeed.com">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/duaneobrien/"></i>
<a target="default" href="https://twitter.com/DuaneOBrien">
<i class="icon social_twitter"></i></a>
<a target="default" href="https://github.com/DuaneOBrien">
<i class="icon fa fa-github"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Duane O'Brien</h2>
<span class="sub">Head of Open Source at Indeed.com</span>
<p>Duane is passionate about enabling smart and meaningful contributions to the open source ecosystem. He navigates the path between engineering and management, drawing on both his experience as a developer.</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="Lim Tit Meng" src="img/TitMeng.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://sg.linkedin.com/in/lim-tit-meng-4497849">
<i class="icon social_linkedin"></i>
</a>
<a target="_self" href="http://www.science.edu.sg/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/ScienceCentreSG">
<i class="icon social_twitter"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Lim Tit Meng</h2>
<span class="sub">CEO Science Centre, Vice Dean NUS</span>
<p>As the CEO of Science Centre and Vice Dean of NUS Mr Lim Tit Meng promotes STEM as an engine for knowledge-based innovation economy; engages stake holders to share the mission and champions creative science communication.</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="Sindhu Chengad" src="img/SindhuChengad.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="http://microsoft.com">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/sindhuchengad">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://sg.linkedin.com/in/sindhuc">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Sindhu Chengad</h2>
<span class="sub">Head OSS Lead at Microsoft</span>
<p>Sindhu Chengad heads the open source business for Microsoft's Asia Pacific region. She is responsible for defining Microsoft’s open source strategy and for growing the cloud business in the APAC region through key partnerships. </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="Rahul Akolkar" src="img/RahulAkolkar.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="https://twitter.com/4ahu1">
<i class="icon social_twitter"></i></a>
<a target="default" href="https://www.linkedin.com/in/rahulakolkar/">
<i class="icon social_linkedin"></i>
<a target="default" href="http://www.ibm.com">
<i class="icon fa fa-external-link"></i>
</a>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Rahul Akolkar</h2>
<span class="sub">Worldwide Technical Sales Leader, Data Science and AI at IBM</span>
<p>Rahul's work has been featured in a US Super Bowl advertisement and has helped Olympic athletes. Rahul has contributed to numerous open source projects and standards. He is an elected Member of the Apache Software Foundation.</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="default" href="https://yacy.net/en/index.html">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/0rb1t3r">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/orbiter/">
<i class="icon social_linkedin"></i>
</a>
<a target="default" href="https://github.com/orbiter/">
<i class="icon fa fa-github"></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 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="Sachin Shridhar" src="img/SachinShridhar.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://pivotal.io/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="_self" href="https://sg.linkedin.com/in/shridharsachin">
<i class="icon social_linkedin"></i>
</a>
<a target="default" href="https://twitter.com/shridharsachin">
<i class="icon social_twitter"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Sachin Shridhar</h2>
<span class="sub">Customer Success Pivotal Software</span>
<p>Sachin is responsible for APAC and Japan in the CSO group, which takes care of all technical services including Solution Architecture, Implementation, Delivery, Consulting and Education.
</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="Jollen Chen" src="img/JollenChen.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://flowchain.co">
<i class="icon fa fa-external-link"></i>
</a>
<a target="_self" href="https://www.linkedin.com/in/jollen/">
<i class="icon social_linkedin"></i>
</a>
<a target="_self" href="http://jollen.org">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://github.com/jollen">
<i class="icon fa fa-github"></i>
</a>
<a target="default" href="https://twitter.com/jollen">
<i class="icon social_twitter"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Jollen Chen</h2>
<span class="sub">Creator Flowchain</span>
<p>Jollen is the creator and lead of Flowchain, an open source based IoT blockchain solutions. His research interests are the Distributed Ledger Technology (DLT) and IoT data security.</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="colincharles" src="img/colin.jpeg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="http://www.bytebot.net/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/bytebot">
<i class="icon social_twitter"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Colin Charles</h2>
<span class="sub">Managing Consultant at GrokOpen</span>
<p>Colin was on the founding team of MariaDB Server, and has been around the MySQL ecosystem including being an early employee at MySQL,
and worked actively on the Fedora and OpenOffice.org projects.</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="DavideStorti" src="img/DavideStorti.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://unesco.org/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="_self" href="https://www.linkedin.com/in/davidestorti/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Davide Storti</h2>
<span class="sub">FOSS Programme Manager at UNESCO</span>
<p>Davide Storti leads the YouthMobile initiative, which aims at inspiring young girls and boys to drive technological innovation by acquiring the skills and confidence to code and develop mobile apps for sustainable development.</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="MisakoITO" src="img/MisakoITO.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://unesco.org/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="_self" href="https://www.linkedin.com/in/misako-ito-0b235b9/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Misako Ito</h2>
<span class="sub">Advisor at UNESCO</span>
<p>She is responsible for UNESCO’s Communication and Information programme in the Mekong countries and coordinates the UNESCO Memory of the World programme for safeguarding the documentary heritage in Asia and the Pacific.</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="Hong Phuc" src="img/HongPhucDang.jpeg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<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</h2>
<span class="sub">Co-founder FOSSASIA</span>
<p>Hong Phuc Dang co-founded FOSSASIA in 2009 as a community devoted to improving people’s lives through sharing Open Technologies and fostering global connections. She especially wanted to encourage developers from Asia to participate in the FOSS movement.</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="mariobehling" src="img/mariobehling.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://opntec.com/">
<i class="icon fa fa-external-link"></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>
<a target="default" href="https://github.com/mariobehling">
<i class="icon fa fa-github"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Mario Behling</h2>
<span class="sub">CEO of Opntec</span>
<p>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 works with the community on SUSI.AI and Open Hardware solutions like Pocket Science Lab.</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 Cheng" src="img/MichaelCheng.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://www.linkedin.com/in/priorart/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Michael Cheng</h2>
<span class="sub">Facebook</span>
<p>Lawyer. Raspberry Pi/GPIO Fanatic. Currently supporting open source program office at Facebook. Former IT sysadmin, investment banker and high school dropout. Born in Taiwan. Currently based in the US. Spent 10+ years in China, Thailand, Japan, Myanmar and Hong Kong.</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="HarishPillay" src="img/harishpillay.jpeg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="_self" href="https://twitter.com/harishpillay">
<i class="icon social_twitter"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Harish Pillay</h2>
<span class="sub">Red Hat</span>
<p>Harish Pillay serves as Head of Community Architecture and Leadership at Red Hat, Inc. and served as its Chief Technology Architect of South Asia. He co-founded the Linux Users' Group Singapore in 1993.He has been a Trustee of Internet Society since June 18, 2016.</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="Graham Williams" src="img/GrahamWilliams.jpg">
<div class="hover-state text-center preserve3d">