-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
2104 lines (2000 loc) · 119 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
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 2019 | Asia's Open Technology Event about AI, Personal Assistants, Blockchain ,Machine Learning, Open Hardware, Open Source Software, Open Design, Open Data in Vietnam</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="OpenTechSummit Vietnam - Open Source, Open Hardware, AI, Cloud, Knowledge Sharing at Asia's Premier Open Technology Event">
<meta name="keywords" content="OpenTechSummit, Free and Open Source Software, Vietnam, Asia">
<meta name="author" content="FOSSASIA">
<meta property="og:title" content="OpenTechSummit Vietnam" />
<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 2019">
<meta name="twitter:description" content="OpenTechSummit Vietnam - Open Source, Open Hardware, AI, Cloud, Knowledge Sharing 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='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>
<a target="_self" class="inner-link" href="./tickets">Tickets</a>
</li>
<li>
<a class="inner-link" href="#schedule">Schedule</a>
</li>
<li>
<a class="inner-link" href="#featured-speakers">Speakers</a>
</li>
<!--li class="has-dropdown">
<a class="inner-link" href="#schedule" ">Event</a>
<ul class="nav-dropdown " style="min-height:540px ">
<li>
<a class="inner-link " href="#schedule">Daily Overview</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" href="./event/schedule.html">Full Schedule</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#2019-03-15">Day 2, Fri, March 15</a>
</li>
<li>
<a target="_self" href="./event/tracks.html#2019-03-16">Day 3, Sat, March 16</a>
</li>
<li>
<a target="_self" href="./event/tracks.html#2019-03-17">Day 4, Sun, March 17</a>
</li>
<li>
<a target="_self" class="inner-link" href="#speakers">Speakers</a>
</li>
<li>
<a target="_self" class="inner-link" href="#hackathon">Hackathon</a>
</li>
<li>
<a target="_self" class="inner-link" href="#buildingblocs">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="#opentechnights">OpenTechNights</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:270px">
<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 class="inner-link" target="_self" href="./tickets/">Hall Passes</a>
</li>
<li>
<a target="_self" href="https://exhibitors.fossasia.org/">Exhibitors Manual</a>
</li>
<li>
<a target="_self" href="./FOSSASIA_OTS_2019_Exhibition_Booklet.pdf">Exhibition Booklet</a>
</li>
<li>
<a target="_self" href="./exhibitors/index.html">Book Booth</a>
</li>
<li>
<a target="_self" href="https://docs.google.com/forms/d/e/1FAIpQLSfJDZNMlvxzqBqrnSr22BEhvUg5Kb8fHxEl3HpHLFMRKh0Vrg/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_OTS_Sponsorships.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>
<a target="_self" href="https://photos.app.goo.gl/jns3GYeHcdYXs69D6">Photos</a>
</li>
<li class="has-dropdown">
<a href="https://events.fossasia.org">More</a>
<ul class="nav-dropdown" style="min-height:410px">
<!--whenever you add/remove an option, change the style="min-height:500px" by +- 25px-->
<li>
<a target="_self" href="https://opentechsummit.asia">OpenTechSummit Asia</a>
</li>
<li>
<a target="_self" href="https://thai.opentechsummit.asia">OpenTechSummit Thailand</a>
</li>
<li>
<a target="_self" href="https://2020.fossasia.org">FOSSASIA Summit 2020</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/otsasia">
<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/opentechsummitasia/">
<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="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="Logo" class="logo" src="img/fossasia-long.png">
<div class="bottom-border"></div>
<div class="widget">
<ul class="menu">
<li>
<a class="inner-link" href="#top" target="_self">Home</a>
</li>
<li>
<a class="inner-link" href="./event/schedule.pdf" target="_self">Full Schedule</a>
</li>
<li>
<a class="inner-link" href="#tracks" target="_self">Tracks</a>
</li>
<!--OLD CORRECT--li><a href="./event/speakers.html" target="_self">Speakers</a></li-->
<li><a href="https://eventyay.com/e/7924665b/speakers" target="_self">Speakers</a></li>
<li>
<a href="https://blog.fossasia.org" target="_self">Blog</a>
</li>
</ul>
</div>
<div class="widget">
<ul class="social-profiles">
<li>
<a href="http://twitter.com/otsasia" target="_self">
<i class="icon social_twitter"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/opentechsummitasia/" target="_self">
<i class="icon social_facebook"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCQprMsG-raCIMlBudm20iLQ" target="_self">
<i class="icon social_youtube icon-large"></i>
</a>
</li>
<li>
<a href="https://www.flickr.com/photos/fossasia/" target="_self">
<i class="icon social_flickr"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/explore/tags/fossasia/" target="_self">
<i class="icon social_instagram"></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 2009-2019 Creative Commons By License, FOSSASIA</span>
</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_vietnam.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 Vietnam</span> <h1 class="large-h1 text-white">
October 11 - 12, 2019<br>
Venue: Officience Vietnam<br>
16A Le Hong Phong, Dist 10, Ho Chi Minh City</span>
</h1>
<a target="_self" href="./tickets" class="btn">Tickets</a>
<a target="_self" href="./event/schedule.pdf" class="btn btn-hollow inner-link">Schedule</a>
</div>
</div>
</div>
</li>
</ul>
</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</h1>
<p class="lead">
Community Ticket ends on Sunday October 6 at 23:30 (VietNam Time GMT+7)
</p>
</div>
</a>
<a href="./event/schedule.pdf" 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 Schedule</h1>
<p class="lead">
Topics cover Python, Git, AI, Blockchain, Open Hardware, Web & Mobile Technologies, Ubuntu Installation Party, Social Event and 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>Speakers</h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Mario" src="img/mariobehling.jpg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/mariobehling/"><i class="icon fa fa-github"></i></a>
<a href="https://twitter.com/mariobehling" target="default"><i class="icon social_twitter"></i></a>
<a href="https://www.facebook.com/mariobehling" target="default"><i class="icon social_facebook"></i></a>
<a href="https://www.linkedin.com/in/mariobehling" target="_self"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Mario Behling</span>
<span>CEO</span>
<span>OpnTec</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Eden" src="img/EdenDang.jpeg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/edenyay"><i class="icon fa fa-github"></i></a>
<a href="https://twitter.com/edenyay" target="default"><i class="icon social_twitter"></i></a>
<a href="https://www.linkedin.com/in/edenyay" target="_self"><i class="icon social_linkedin"></i></a>
<a href="https://debconf18.debconf.org/users/EdenDang/" target="_self"><i class="icon fa fa-external-link"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Eden Dang</span>
<span>Senior Program Manager</span>
<span>FOSSASIA</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="BenoitTellier" src="img/BenoitTellier.jpeg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/chibenwa"><i class="icon fa fa-github"></i></a>
<a href="https://twitter.com/tellierbenoit"><i class="icon social_twitter"></i></a>
<a href="https://www.linkedin.com/in/benoit-tellier-15337aa6/" target="_self"><i class="icon social_linkedin"></i></a>
<a href="https://medium.com/@benoittellier3" target="_self"><i class="icon fa fa-external-link"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Benoit Tellier</span>
<span>Chairman</span>
<span>Apache James</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="clif" src="img/ClifKussmail.jpg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.facebook.com/ckussmaul"><i class="icon fa fa-facebook"></i></a>
<a href="https://twitter.com/kussmaul"><i class="icon fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/clifkussmaul/"><i class="icon social_linkedin"></i></a>
<a href="http://kussmaul.org/"><i class="icon fa fa-external-link"></i></a>
<a href="https://www.muhlenberg.edu/academics/mathcs/about/facultystaff/clifkussmaul/"><i class="icon fa fa-external-link"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Clif Kussmail</span>
<span>Principal Consultant</span>
<span>Green Mango Associates</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="namphuong" src="img/namphuong.jpeg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/namphuongnl/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://officience.com/en/"><i class="icon fa fa-external-link"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Nam Phuong Nguyen Luong</span>
<span>Community Engagement Officer</span>
<span>Officience</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Binh" src="img/binh.jpeg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/vuthebinh/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://netnam.com/"><i class="icon fa fa-external-link"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Vu The Binh</span>
<span>CEO</span>
<span>NetNam</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="BarendScholtus" src="img/BarendScholtus.jpg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/barendscholtus"><i class="icon fa fa-linkedin"></i></a>
<a href="https://github.com/rbscholtus"><i class="icon fa fa-github"></i></a>
<a href="https://twitter.com/rbscholtus"><i class="icon fa fa-twitter"></i></a>
<a href="https://www.facebook.com/barend.scholtus"><i class="icon fa fa-facebook"></i></a>
<a href="https://www.instagram.com/barend.scholtus/"><i class="icon fa fa-instagram"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Barend Scholtus</span>
<span>System Manager</span>
<span>RMIT</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Bien Nguyen" src="img/biennguyen.jpeg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/biendltb/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://twitter.com/sillyxiily"><i class="icon fa fa-twitter"></i></a>
<a href="https://github.com/biendltb"><i class="icon fa fa-github"></i></a>
<a href="https://www.dynimlabs.com/"><i class="icon fa fa-external-link"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Bien Nguyen</span>
<span>AI Software Lead</span>
<span>Dynimlabs</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Wei Tat" src="img/weitat.jpg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.instagram.com/cweitat"><i class="icon fa fa-instagram"></i></a>
<a href="https://github.com/cweitat"><i class="icon fa fa-github"></i></a>
<a href="https://twitter.com/cweitat"><i class="icon fa fa-twitter"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Chung Wei Tat</span>
<span>Developer</span>
<span>FOSSASIA</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Truong Sinh" src="img/TruongSinhTran.jpg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/truongsinh/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://github.com/truongsinh"><i class="icon fa fa-github"></i></a>
<a href="https://www.facebook.com/truongsinhtn"><i class="icon fa fa-facebook"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Truong Sinh Tran-Nguyen</span>
<span>Engineer Director</span>
<span>Inspectorio</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Bella Phan" src="img/bella.jpg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/bella-phan-50418693/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://github.com/bellaphan"><i class="icon fa fa-github"></i></a>
<a href="https://twitter.com/bellaphan2211"><i class="icon social_twitter"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Bella Nghi Phan</span>
<span>Community Advocate</span>
<span>FOSSASIA</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Nguyen Hong Quan" src="img/NguyenHongQuan.jpg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/hongquan"><i class="icon fa fa-github"></i></a>
<a href="https://www.facebook.com/ng.hong.quan"><i class="icon fa fa-facebook"></i></a>
<a href="https://www.linkedin.com/in/bachkhois/"><i class="icon fa fa-linkedin"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Nguyen Hong Quan</span>
<span>CTO</span>
<span>AgriConnect</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Quoc Bao" src="img/bao.png" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/quocbao747/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://www.facebook.com/quocbao.nqb"><i class="icon fa fa-facebook"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Nguyen Quoc Bao</span>
<span>Software Engineer</span>
<span>VNG Cloud</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Tra My Nguyen" src="img/TraMyNguyen.jpg"
width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/mynguyen1709/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://www.facebook.com/mynguyen170987"><i class="icon fa fa-facebook"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Tra My Nguyen</span>
<span>Maker Academy Coordinator,</span>
<span>Kidspire Vietnam</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Tran Diep Bang" src="img/bang.jpeg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/bang-diep-tran-95207b7b/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://www.facebook.com/bangbang.yebang"><i class="icon fa fa-facebook"></i></a>
<a href="https://github.com/trandiepbang"><i class="icon fa fa-github"></i></a>
<a href="https://www.linkedin.com/company/tiki-vn/"><i class="icon fa fa-linkedin"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Tran Diep Bang</span>
<span>Software Engineer</span>
<span>TIKI Corporation</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Tan Dung Phan" src="img/tandung.png" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/hoaquynhtim99"><i class="icon fa fa-github"></i></a>
<a href="https://nukeviet.vn/"><i class="icon fa fa-external-link"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Tan Dung Phan</span>
<span>Team Lead</span>
<span>NukeViet CMS</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Le Cong Tuan" src="img/LeCongTuan.png" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/tuan-le-cong-b41645139/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://twitter.com/tlcong"><i class="icon social_twitter"></i></a>
<a href="https://github.com/tuanlc"><i class="icon fa fa-github"></i></a>
<a href="https://www.elingora.com/"><i class="icon fa fa-external-link"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Le Cong Tuan</span>
<span>Full Stack Engineer</span>
<span>Linagora</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Nguyen Tan Trieu" src="img/NguyenTanTrieu.jpg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/tantrieuf31/"><i class="icon fa fa-linkedin"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Nguyen Tan Trieu</span>
<span>Founder</span>
<span>BigData Vietnam</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Trang Ta" src="img/trangta.jpeg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/trang1/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://www.facebook.com/trangta.saigon"><i class="icon social_facebook"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Trang Ta</span>
<span>Founder</span>
<span>Saigon Compass</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Felix Becquart" src="img/becquart.jpeg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://twitter.com/felixbecquart"><i class="icon social_twitter"></i></a>
<a href="https://github.com/FelixBecquart1990"><i class="icon fa fa-github"></i></a>
<a href="https://www.facebook.com/felix.becquart"><i class="icon social_facebook"></i></a>
<a href="https://www.linkedin.com/in/f%C3%A9lix-becquart-8a5a46a6/"><i class="icon social_linkedin"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Felix Becquart</span>
<span>Web Specialist</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Tran The Toan" src="img/toan.png" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/toantran-ea"><i class="icon fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/toan-tran-988a2616b/"><i class="icon fa fa-linkedin"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Tran The Toan</span>
<span>Android Lead</span>
<span>Inspectorio</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Chau Truong Lam" src="img/ChauTruongLam.jpg " width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/naokichau/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://github.com/naokichau"><i class="icon fa fa-github"></i></a>
<a href="https://www.facebook.com/naokichau"><i class="icon social_facebook"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Chau Truong Lam</span>
<span>Blockchain Engineer</span>
<span>Incognito</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Vuong Huu Nghia" src="img/vuongnghia.jpeg" width="300px">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://www.linkedin.com/in/huu-nghia-kiki-vuong-3b08346/"><i class="icon fa fa-linkedin"></i></a>
<a href="https://www.facebook.com/kiki.vuong"><i class="icon social_facebook"></i></a>
</div>
</div>
</div>
<span class="speaker-name">Vuong Huu Nghia</span>
<span>Open Source Advocate</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="Luu Tran Thien An" src="img/thienan.jpeg" width="300px">
<div class="hover-state text-center preserve3d">
</div>
</div>
<span class="speaker-name">Luu Tran Thien An</span>
<span>Business Analyst</span>
<span>Officience</span>
</div>
</div>
<div class="col-md-4 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img alt="lan" src="img/lan.jpeg" width="300px">
<div class="hover-state text-center preserve3d">
</div>
</div>
<span class="speaker-name">Tran Thi Hoang Lan</span>
<span>Web Developer</span>
<span>Officience</span>
</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>Artificial Intelligence</h3>
<p>From building a terascale AI server infrastructure to build 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/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 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="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 blockchain track.<br><br><br><br><br>
</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 engineers of MySQL and learn how to save your company money with Open Source database solutions in the Database. 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="Web & Mobile" src="img/15979370202_a5303fd3f3_z.jpg">
<h3>Web & Mobile</h3>
<p>Modern Web & Mobile development, existing technologies change, current trend and future of web technologies? Topics include JS, Drupal frameworks, 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>Open Source Hardware and Science</h3>
<p>Introduction to open source hardware projects from laser cutter to pocket science lab. How to do science hands-on with open hardware? 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>
</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/> October 10-12, 2019
<br> Officience, HCM City
</h1>
<ul class="schedule-overview">
<li>
<div class="schedule-title">
<span class="time">Thursday</span>
<span class="time">October 9, 17:00-19:00</span>
<span class="title">
Exhibition Setup and Preparation
</span>
</div>
<div class="schedule-text">
<p> 17:00 Exhibition Setup (Meetup in Lobby)
<br/>19:00 Exhibition Area 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">Friday</span>
<span class="time">October 11, 9:00-17:00</span>
<span class="title">
Exhibition opens throughout the day. Official tour with speakers and VIPs takes place at 12:30.
</span>
</div>
<div class="schedule-text">
<p>8:00 PM Breakfast Snacks for Exhibitors
<br/>8:30 PM Exhibition Opens
<br/>12:30 PM Exhibition Tour with VIPs
<br/>17:00 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">Saturday</span>
<span class="time">October 12, 9:00-17:00</span>
<span class="title">
Exhibition takes place until evening with tech companies and projects.
</span>
</div>
<div class="schedule-text">
<p>8:30 PM Breakfast Snacks for Exhibitors
<br/>9:00 PM Exhibition Opens
<br/>17:00 PM Exhibition Ends</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>