-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathindex.html
1408 lines (1288 loc) · 83.8 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>FOSSASIA Summit Exhibition | 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 Exhibition" />
<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 Exhibition">
<meta name="twitter:description" content="FOSSASIA Summit Exhibition - 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="">
<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'>
<style type="text/css">
.schedule-overview li{
padding: 24px 45px 24px 20px;
}
</style>
<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://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-md-10 text-right">
<ul class="menu">
<li>
<a target="_self" href="../index.html#top">Home</a>
</li>
<li>
<a target="_self" class="inner-link" href="../tickets/">Tickets</a>
</li>
<li>
<a target="_self" href="../speaker-registration/">Speaker</a>
</li>
<!-- <li class="has-dropdown"><a target="_self" href="../index.html#schedule">Event</a>
<ul class="nav-dropdown" style="min-height:510px">
<li><a target="_self" href="../index.html#schedule">Overview</a></li>
<li><a target="_self" href="../index.html#schedule-roster">Schedule Roster</a></li>
<li><a target="_self" href="../index.html#venue">Venue Location</a></li>
<li><a target="_self" href="../index.html#tracks">Tracks</a></li>
<li><a target="_self" href="../event/schedule.html">Schedule (Complete)</a></li>
<li><a target="_self" href="../index.html#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-15">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" href="../event/tracks.html#2020-03-17">Day 4, Sun, March 22</a></li>
<li><a target="_self" href="../index.html#speakers">Speakers</a></li>
<li><a target="_self" href="../index.html#hackathon">Hackathon</a></li>
<li><a target="_self" href="../index.html#buildingblocs">FOSSASIA Academy</a></li>
<li><a target="_self" href="../index.html#socialevent">Social Events</a></li>
<li><a target="_self" href="../index.html#opentechnights">OpenTechNights</a></li>
<li><a target="_self" href="../index.html#codeheat">Codeheat Award</a></li>
</ul>
</li> -->
<li class="has-dropdown"><a target="_self" class="inner-link" href="#topics"">Exhibition</a>
<ul class="nav-dropdown" style="min-height:120px">
<li><a class="inner-link" target="_self" href="#exhibitionschedule">Exhibition Schedule</a></li>
<!-- <li><a class="inner-link" target="_self" href="#boothlayout">Booth Layout</a></li>
<li><a class="inner-link" target="_self" href="#exhibitors">Exhibitors List</a></li>
<li><a class="inner-link" target="_self" href="../tickets/">Hall Passes</a></li>
<li><a class="inner-link" target="_self" href="https://exhibitors.fossasia.org">Exhibitor Manual</a></li>
<li><a target="_self" href="../FOSSASIA_OTS_2020_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" href="../index.html#volunteer">Volunteer</a>
</li>
<li class="has-dropdown">
<a target="_self" href="../index.html#sponsorship">Sponsor</a>
<ul class="nav-dropdown" style="min-height:70px">
<li>
<a target="_self" href="../index.html#sponsorship">Sponsorship Info</a>
</li>
<li>
<a target="_self" href="../FOSSASIA_OTS_Sponsorships.pdf">Sponsorship Prospectus</a>
</li>
</ul>
</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:380px">
<!--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://fossasia-hackathon.devpost.com">FOSSASIA Hackathon</a>
</li>
<li>
<a target="_self" href="https://2019.fossasia.org">FOSSASIA Summit 2018</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="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 href="../index.html#top" target="_self">Home</a>
</li>
<li>
<a href="../index.html#schedule" target="_self">Schedule</a>
</li>
<li>
<a href="../index.html#topics" target="_self">Topics</a>
</li>
<!-- <li><a href="../speakers.html" target="_self">Speakers</a></li> -->
<li>
<a href="../index.html#press" target="_self">Press</a>
</li>
<li>
<a href="https://blog.fossasia.org" target="_self">Blog</a>
</li>
<li>
<a href="https://2017.fossasia.org" target="_self">FOSSASIA'17</a>
</li>
<li>
<a href="index.html#contact" target="_self">Subscribe</a>
</li>
</ul>
</div>
<div class="widget">
<ul class="social-profiles">
<li>
<a href="http://twitter.com/fossasia" target="_self">
<i class="icon social_twitter"></i>
</a>
</li>
<li>
<a href="http://facebook.com/fossasia" 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-2021 Creative Commons By License, FOSSASIA</span>
</div>
</div>
</div>
</nav>
<section class="section-header overlay preserve3d">
<div class="dark-layer"></div>
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="../img/exhibition1.jpg">
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-sm-12 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">FOSSASIA Summit Exhibition<br>
<a class="inner-link header-text" target="_self" href="#exhibitors">Tech Companies</a> and Open Source Projects<br>
Opening with Lunch Snacks on <a class="inner-link header-text" target="_self" href="#exhibitionschedule">Thu, March 19 at 12.00pm, opens till 6pm.<br>
Runs From 10am - 6pm on Friday and until 5pm on Saturday, March 21</a></h1>
</div>
</div>
</div>
</section>
<a id="intro" class="in-page-link"></a>
<section class="color-blocks">
<div class="color-block block-left col-md-6 col-sm-12"></div>
<div class="color-block block-right col-md-6 col-sm-12"></div>
<div class="container">
<div class="row">
<a href="../tickets/" class="block-content" 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>Get your Ticket for the Exhibition and the Conference here!</h1>
<p class="lead">
Hall passes start at 39 SGD and also provide access to the opening and closing.
</p>
</div>
</a>
<a href="../exhibitors/index.html" 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>Book Your Booth at the Exhibition!</h1>
<p class="lead">
Booth and Sponsorship options are available for you here.
</p>
</div>
</a>
</div>
</div>
</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>Exhibition Areas</h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Technology, Enterprises, Startups" src="../img/startups.jpg">
<h3>Technology, Enterprises, Startups</h3>
<p>Meet companies, startups and Free and Open Source software projects. At the exhibition you find developers and executives of top tech companies like Google, Daimler/Mercedes, and Microsoft.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Hardware and Hands-on" src="../img/hands-on.jpg">
<h3>Hardware Showcases and Hands-On</h3>
<p>Visit the Open Hardware showcases, join hands-on workshops and test conversational chatbots. Learn about the Pocket Science Lab, and how to develop your own project with Arduinos.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="FOSSASIA Tracks" src="../img/careerfair.jpg">
<h3>Job board, Lounge, Lightning Sessions</h3>
<p>Learn about jobs, discuss career strategies or get insights about the latest tech ideas from core developers of projects like VLC, Debian, CentOS, FreeBSD and many more at the exhibition. Find like-minded technologists in the exhibition lounge and get inspired in lightning sessions by exhibitors.</p>
<!-- <div class="text-link">
<a href="../volunteers/" target="_self">Join us here!</a>
</div> -->
</div>
</div>
</div>
</div>
</section>
<a id="exhibitionschedule" class="in-page-link"></a>
<section class="duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Exhibition Schedule</h1>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-4">
<div class="faq-item">
<p class="question">
Wednesday, March 18<br>
2:00 PM - 6:00 PM<br>
Exhibition Setup
</p>
<p>
2:00 PM Exhibition Setup Starts
<br/> 3:30 PM Adhoc Meetings with Organizers
<br/> 6:00 PM Exhibition Setup Finishes
</p>
</div>
</div>
<div class="col-md-3 col-sm-4">
<div class="faq-item">
<p class="question">
Thursday, March 19<br>
9:30 AM - 6:00 PM<br>
Exhibition and Exhibitors Stage
</p>
9:00 AM Exhibitors Breakfast Snacks
<br/> 9:30 AM Exhibition Doors Open
<br/> 12:30 PM Exhibitors on Stage
<br/> 1:00 PM Official Booth Tour
<br/> 6:00 PM Exhibition Doors Close
</p>
</div>
</div>
<div class="col-md-3 col-sm-4">
<div class="faq-item">
<p class="question">
Friday, March 20<br>
9:30 AM - 6:00 PM<br>
Exhibition, Exhibitors Stage, Group Photo, Hackathon
</p>
<p>
9:00 AM Exhibitors Breakfast Snacks
<br/> 9:30 AM Exhibition Doors Open
<br/> 12:30 PM Exhibitors on Stage
<br/> 1:00 PM Official Booth Tour
<br/> 6:00 PM Exhibition Doors Close
</p>
</div>
</div>
<div class="col-md-3 col-sm-4">
<div class="faq-item">
<p class="question">
Saturday, March 21<br>
9:30 AM - 5:00 PM<br>
Exhibition, Exhibitors Stage, Hackathon End
</p>
<p>
9:00 AM Exhibitors Breakfast Snacks
<br/> 9:30 AM Exhibition Doors Open
<br/> 12:30 PM Exhibitors on Stage
<br/> 1:00 PM Official Booth Tour
<br/> 5:00 PM Exhibition Ends, Doors Close
<br/> Until 7:00 PM - Teardown
</p>
</div>
</div>
</div>
</div>
</section>
<a id="boothlayout" class="in-page-link"></a>
<section class="duplicatable-content visitor-info">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Booth Layout</h1>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="info-box">
<a href="../img/FOSSASIA-Summit-2020-Booth-Layout.png"><img alt="FOSSASIA Summit Booth Layout" src="../img/FOSSASIA-Summit-2020-Booth-Layout.png"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<a id="exhibitors" class="in-page-link"></a>
<section class="schedule">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-4">
<h1>FOSSASIA Summit Exhibitors Overview</h1>
<p>
The FOSSASIA Summit exhibition is the opportunity to meet FOSS companies and projects from around the world. Learn about the latest Open Source technologies, meet representatives to discuss job opportunities, get your gadget in a hands-on lab and socialize in the exhibition lounge area.</p>
<a href="../tickets/index.html" class="btn" style="color: white" target="_self">Hall Pass</a><br><br>
<a href="../exhibitors/index.html" class="btn" style="color: white" target="_self">Book Your Booth</a><br><br>
</div>
<div class="col-sm-6 col-md-4">
<ul class="schedule-overview">
<li>
<div class="schedule-title">
<span class="time">Facebook</span>
<span class="title">Facebook Open Source<br></span>
<span class="title"><span>
<a target="default" href="https://opensource.facebook.com">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.facebook.com/DeveloperCircles">
<i class="icon social_facebook"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>
</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Elastic</span>
<span class="title">Elasticsearch, Kibana, Beats, and Logstash<br></span>
<span class="title"><span>
<a target="default" href="https://www.elastic.co">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/elastic">
<i class="icon social_twitter"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>
</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Red Hat</span>
<span class="title">We make open source technologies for the enterprise<br></span>
<span class="title"><span>
<a target="default" href="http://redhat.com">
<i class="icon fa fa-external-link"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>
</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Alibaba Cloud</span>
<span class="title">The data intelligence backbone of Alibaba Groups<br></span>
<span class="title"><span>
<a target="default" href="http://alibabacloud.com">
<i class="icon fa fa-external-link"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p> Established in 2009, Alibaba Cloud is APAC’s top one and the world’s top three IaaS providers, according to Gartner. It is also the largest provider of public cloud services in China, according to IDC. Alibaba Cloud provides a comprehensive suite of cloud computing services to businesses worldwide, including merchants doing business on Alibaba Group marketplaces, start-ups, corporations and public services. Alibaba Cloud is the official Cloud Services Partner of the International Olympic Committee. Alibaba Cloud is ranked first in Asia Pacific by Gartner in its April 2019 report. We are one of the world’s top three provider and number one in APAC for the 2nd consecutive year. Alibaba Cloud now has 63 availability zones across 21 economic centers globally, with coverage extending across mainland China, Hong Kong, Singapore, Malaysia, Indonesia, India, Japan, Australia, the Middle East, Europe, Indonesia, UK and the U.S. (East and West Coast).
</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">WeWe Technology</span>
<span class="title">Voiz FM - Podcast and Audio Books <br></span>
<span class="title"><span>
<a target="default" href="https://wewe.vn">
<i class="icon fa fa-external-link"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>
WeWe technology develops sound ecosystems in Vietnam and Southeast Asia, creates audio platforms that connect content creators and listeners. Main products are Audio books and Podcasts. Besides, the company also creates AI Voice that can learn any voice in the world to produce content
</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">Uilicious</span>
<span class="title">Automating UI Testing<br></span>
<span class="title"><span>
<a target="default" href="https://uilicious.com">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/ui_licious">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/company/ui-licious/">
<i class="icon social_linkedin"></i>
</a>
<a target="default" href="https://www.facebook.com/uilicious/">
<i class="icon social_facebook"></i>
</a>
<a target="default" href="https://github.com/uilicious">
<i class="icon fa fa-github"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>
UI-licious is a solution for automating user interface testing for websites that is easy to use and easy to maintain. It is perfect for lean engineering teams that want to increase their test coverage through automation but have a evolving product and rapidly change UI. Teams can save up to 70% of their time writing and keeping tests up to date using UI-licious’s intuitive testing language.
</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">independIT</span>
<span class="title">Technological leader in the field of Enterprise Job Scheduling<br></span>
<span class="title"><span>
<a target="default" href="https://independit.com">
<i class="icon fa fa-external-link"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>independIT Integrative Technologies GmbH is based in Schrobenhausen (Bavaria). The company was established in 1997 as Topit GmbH by certified mathematician Ronald Jeninga and certified computer scientist Dieter Stubler as a service provider for challenging consulting projects in database environments. Key products are BICsuite and the open source edition schedulix.</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">FreeBSD</span>
<span class="title">OS for a Variety of Platforms<br></span>
<span class="title"><span>
<a target="default" href="https://www.freebsd.org/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/freebsd">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.facebook.com/ThePowerToServe/">
<i class="icon social_facebook"></i>
</a>
<a target="default" href="https://www.linkedin.com/company/freebsd/">
<i class="icon social_linkedin"></i>
</a>
<a target="default" href="https://github.com/freebsd/freebsd">
<i class="icon fa fa-github"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>
FreeBSD is an operating system used to power modern servers, desktops, and embedded platforms. A large community has continually developed it for more than thirty years. Its advanced networking, security, and storage features have made FreeBSD the platform of choice for many of the busiest web sites and most pervasive embedded networking and storage devices.
</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">ISOC Singapore</span>
<span class="title">Internet Society Singapore Chapter<br></span>
<span class="title"><span>
<a target="default" href="https://www.internetsociety.org/tag/singapore">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.facebook.com/ISOCsg">
<i class="icon social_facebook"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>The Internet Society was founded in 1992 by a number of people involved with the Internet Engineering Task Force (IETF). From those early days, one of our principal rationales is to provide an organizational home for and financial support for the Internet standards process.</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">Hackerspace</span>
<span class="title">Singapore's First Co-working Space<br></span>
<span class="title"><span>
<a target="default" href="http://hackerspaces.sg/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/hackerspacesg?lang=en">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.facebook.com/HackerspaceSG/">
<i class="icon social_facebook"></i>
</a>
<a target="default" href="https://www.linkedin.com/company/hackerspace.sg/">
<i class="icon social_linkedin"></i>
</a>
<a target="default" href="https://github.com/hackerspacesg">
<i class="icon fa fa-github"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>
HackerspaceSG is Singapore's very own Hackerspace. Built by and for geeks, nerds, inventors, engineers, and entrepreneurs, HackerspaceSG is the Singapore hacker community's home, living room and laboratory. We host regular events, meetups, presentations, workshops, and movie nights for the local community.
</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">Lifelong Learning Institute</span>
<span class="title">SkillsFuture Singapore<br></span>
<span class="title"><span>
<a target="default" href="https://www.lli.sg">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.facebook.com/LLISG/">
<i class="icon social_facebook"></i>
</a>
<a target="default" href="https://www.linkedin.com/lifelong-learning-institute-sg/">
<i class="icon social_linkedin"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>Launched in 2013, the Lifelong Learning Institute (LLI) is one of two Continuing Education and Training campuses (CET) by SkillsFuture Singapore (SSG). As a vibrant adult-learning campus, LLI serves as a gateway for in-demand skills training and professional upgrading programmes.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
</li>
<li>
<div class="schedule-title">
<span class="time">Hardware Corner</span>
<span class="title">Using PSLab to visualise fundamentals of radio electronics by Roland Turner<br></span>
<span class="title"><span>
</span>
</div>
<div class="schedule-text">
<p>
</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Recruitment Area</span>
<span class="title">Latest Job Openings <br></span>
<span class="title"><span>
</span>
</div>
<div class="schedule-text">
<p>
Recruitment wall is located in the lobby near the registration. Our partners will advertise there latest job openings. Check them out!
</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
</ul>
</div>
<div class="col-sm-6 col-md-4">
<ul class="schedule-overview">
<li>
<div class="schedule-title">
<span class="time">LionsForge</span>
<span class="title">Make In Singapore<br></span>
<span class="title"><span>
<a target="default" href="https://lionsforge.com.sg">
<i class="icon fa fa-external-link"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>
LionsForge Pte Ltd wants to empower the masses to make things with the help of easy-to-use technology and by so doing, spark the next industrial revolution right from the home. We aspire to provide the resources to better the lives of the common people through technology, training and education. Our philosophy of “Make in Singapore” is to empower every Singaporean to believe that they can build their own successful products through innovation and resourcefulness.
</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">FOSSASIA PSLab</span>
<span class="title">Pocket Science Lab<br></span>
<span class="title"><span>
<a target="default" href="https://pslab.fossasia.org/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/pslabapp">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://github.com/fossasia/pslab-android">
<i class="icon fa fa-github"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>An Open Source hardware device (open on all layers) that can be used for experiments by teachers, students and citizen scientists. This tiny pocket lab provides an array of sensors for doing science and engineering experiments. It comes with functions of numerous measurement devices including an oscilloscope, a waveform generator, a frequency counter, a programmable voltage, current source and as a data logger.</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">OpenRobotics</span>
<span class="title">Powering the world's robot<br></span>
<span class="title"><span>
<a target="default" href="https://www.openrobotics.org">
<i class="icon fa fa-github"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>
At Open Robotics, we work with industry, academia, and government to create and support open software and hardware for use in robotics, from research and education to product development.
</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">The Glass Room Community Edition</span>
<span class="title">Hosted by Saad Chinoy<br></span>
<span class="title"><span>
<a target="default" href="https://theglassroom.org/the-glass-room-community-edition">
<i class="icon fa fa-external-link"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>
The Glass Room Community Edition is an eye-catching, self-learning installation on data and privacy anyone can easily set up and host in their own space.
</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">Kiwi TCMS</span>
<span class="title">The leading open source test case management system<br></span>
<span class="title"><span>
<a target="default" href="https://kiwitcms.org">
<i class="icon fa fa-github"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>Our mission is to transform the testing process by making it more organized, transparent & accountable for everyone on your team; to improve engineering productivity and participation in testing.</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">OSI</span>
<span class="title">Open Source Initiative<br></span>
<span class="title"><span>
<a target="default" href="https://opensource.org/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/OpenSourceOrg">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/company/open-source-initiative-osi-/">
<i class="icon social_linkedin"></i>
</a>
<a target="default" href="https://github.com/OpenSourceOrg">
<i class="icon fa fa-github"></i>
</a>
</span>
</div>
<div class="schedule-text">
<p>For over 20 years the Open Source Initiative (OSI) has worked to raise awareness and adoption of open source software, and build bridges between open source communities of practice. As a global non-profit, the OSI champions software freedom in society through education, collaboration, and infrastructure, stewarding the Open Source Definition (OSD), and preventing abuse of the ideals and ethos inherent to the open source movement.</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>