-
Notifications
You must be signed in to change notification settings - Fork 196
/
index.html
8048 lines (7614 loc) · 505 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 2018 | 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 2018 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 2018" />
<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 2018">
<meta name="twitter:description" content="FOSSASIA SUmmit 2018 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="">
<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>
(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="default" class="inner-link" href="#top">Home</a>
</li>
<li>
<a target="_self" class="inner-link" href="/tickets/">Tickets</a>
</li>
<li class="has-dropdown">
<a class="inner-link" href="#schedule" ">Schedule</a>
<ul class="nav-dropdown " style="min-height:480px ">
<li><a class="inner-link " href="#schedule">Overview</a>
</li>
<li>
<a class="inner-link " href="#tracks">Tracks</a>
</li>
<li>
<a target="_self" href="./event/schedule.html">Schedule (Complete)</a>
</li>
<li>
<a target="_self" class="inner-link" href="#keynotes">Keynotes and Featured</a>
</li>
<li>
<a target="_self" href="./event/rooms.html#venue-4450">Day 1, Event Opening</a>
</li>
<li>
<a target="_self" href="./event/tracks.html#2018-03-23">Day 2, Fri, March 23</a>
</li>
<li>
<a target="_self" href="./event/tracks.html#2018-03-24">Day 3, Sat, March 24</a>
</li>
<li>
<a target="_self" href="./event/tracks.html#2018-03-25">Day 4, Sun, March 25</a>
</li>
<li>
<a target="_self" class="inner-link" href="#speakers">Speakers</a>
</li>
<li>
<a target="_self" class="inner-link" href="#codeheat">Codeheat Award</a>
</li>
<li>
<a target="_self" class="inner-link" href="#cloudtraining">Cloud Training Day</a>
</li>
<li>
<a target="_self" class="inner-link" href="#youngdevday">Young Developer Day</a>
</li>
<li>
<a target="_self" class="inner-link" href="#hackathon">UNESCO Hackathon</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>
</ul>
</li>
<li class="has-dropdown">
<a target="_self" class="inner-link" href="#exhibition">Exhibition</a>
<ul class="nav-dropdown" style="min-height:170px">
<li>
<a class="inner-link" target="_self" href="./exhibition/index.html#exhibitionschedule">Exhibition Schedule</a>
</li>
<li>
<a class="inner-link" target="_self" href="./exhibition/index.html#boothlayout">Booth Layout</a>
</li>
<li>
<a class="inner-link" target="_self" href="./exhibition/index.html#exhibitors">Exhibitors List</a>
</li>
<li>
<a class="inner-link" target="_self" href="./tickets/">Free Hall Passes</a>
</li>
<li>
<a class="inner-link" target="_self" href="https://exhibitors.fossasia.org/">Exhibitors Manual</a>
</li>
</ul>
</li>
<li>
<a target="_self" class="inner-link" href="#sponsors">Sponsors</a>
</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">FOSSASIA Events</a>
<ul class="nav-dropdown">
<!--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://unesco.sciencehack.asia">UNESCO Hackathon</a>
</li>
<li>
<a target="_self" href="https://2019.fossasia.org">FOSSASIA Summit 2019</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>
<li class="social-link hidden-md hidden-sm hidden-xs">
<a target="_self" href="https://in.linkedin.com/company/fossasia">
<i class="icon social_linkedin"></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="#schedule" target="_self">Schedule</a>
</li>
<li>
<a class="inner-link" href="#topics" target="_self">Topics</a>
</li>
<!-- <li><a href="./speakers.html" target="_self">Speakers</a></li> -->
<li>
<a class="inner-link" href="#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 class="inner-link" href="https://fossasia.org/#subscribe" 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-2018 Creative Commons By License, FOSSASIA</span>
</div>
</div>
</div>
</nav>
<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/fossasia2016.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">FOSSASIA Open Tech Summit
<br>Thursday March 22 - Sunday March 25, 2018
<br>at Lifelong Learning Institute in Singapore</span>
<h1 class="large-h1 text-white">
<span>Personal Voice Assistants, Blockchain, Cloud and AI for the Open Conversational Web at
Asia's Premier Developer Event</span>
</h1>
<a target="_self" href="./tickets/" class="btn">Tickets</a>
<a target="_self" href="./event/schedule.html" 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" 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 now!</h1>
<p class="lead">
Choose from different options for business, community, academics and the young developer day pass for Saturday. A limited
number of free exhibition hall passes are available too!
</p>
</div>
</a>
<a href="./event/tracks.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>Check out the 4 day conference schedule</h1>
<p class="lead">
There are 12 tracks about AI, Cloud, Blockchain Science Tech, Web and more. The schedule has 200+ sessions from speakers
around the world.
</p>
</div>
</a>
</div>
</div>
</section>
<a id="topics" class="in-page-link"></a>
<a id="tracks" class="in-page-link"></a>
<section class="duplicatable-content visitor-info">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Topics 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, Container, 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, Container, DevOps" target="_self">Cloud, Container, 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 and Mobile" target="_self">Web and Mobile</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, Science, Design and Local Production</h3>
<p>The FOSSASIA Open Tech Summit covers topics from software to hardware and knowledge. These are the ingredients for local production. We have a dedicated track on <a href="./event/tracks.html#Open Design, IoT, Hardware, Imaging" target="_self">Open Design, IoT, Hardware, Imaging</a>.<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#Open Data, Internet Society, Community" target="_self">Open Data, Internet Society, 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 Tech" 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="img/32663717444_b6a10ec5a6_z.jpg" src="img/25783043271_87a7c01824_z.jpg">
<h3>Open Event Solutions</h3>
<p><a href="./event/tracks.html#Open Event Solutions" target="_self">Open Event Conf</a> covers topics to run your event entirely with Free/Open Source. FOSSASIA develops its own solutions hosted at <a href="./tickets/" target="_self">Eventyay.com</a> . What is the status and what are the next steps to make it end consumer ready? How can contributors join the development and what are the opportunities?
</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>UNESCO Open Science and Open Data Hackathon</h3>
<p>In the <a href="https://unesco.sciencehack.asia" target="_self">UNESCO Hackathon</a> developers, designers, tech contributors, bloggers, and journalists join in to develop Open Data apps and games for sustainable development.</p>
</div>
</div>
</div>
</div>
</section>
<a id="keynotes" class="in-page-link"></a>
<section class="speakers duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>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="Vlado Koljibabic" src="img/VladoKoljibabic.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="https://www.daimler.com/en/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/daimler">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/kvlado80">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description Felipe">
<h2>Vlado Koljibabic</h2>
<span class="sub">Head of CASE IT at Daimler AG</span>
<p>Vlado leads IT for the new CASE business unit. He delivers digital channels for CASE and
runs major projects in the manner of services for e-mobility and customer centricity.
CASE stands for Connected, Autonomous, Shared, Electric..</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="Kaz Sato" src="img/KazSato.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="https://www.google.com/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://github.com/kazunori279">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/kazunori279/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description Felipe">
<h2>Kaz Sato</h2>
<span class="sub">Developer Advocate at Google</span>
<p>Kaz is Staff Developer Advocate at Google Cloud focusing on Machine Learning and Data Analytics
products, such as TensorFlow, Cloud ML and BigQuery. He is supporting developer communities
for Google Cloud for over 8 years and is also interested in hardware and IoT.</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="Chris Aniszczyk" src="img/Chris Aniszczyk.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="http://aniszczyk.org/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://medium.com/@cra_82903">
<i class="icon fa fa-medium"></i>
</a>
<a target="default" href="https://twitter.com/cra">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/caniszczyk/">
<i class="icon social_linkedin"></i>
</a>
<a target="default" href="https://github.com/caniszczyk">
<i class="icon fa fa-github"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Chris Aniszczyk</h2>
<span class="sub">Cloud Native Computing Foundation</span>
<p>Chris is currently a VP at the Linux Foundation focused on developer relations and running
the Open Container Initiative (OCI) / Cloud Native Computing Foundation (CNCF). Furthermore,
he's a partner at Capital Factory where he focuses on mentoring, advising and investing
in open source and infrastructure focused startups.</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/Michael Christen.jpeg">
<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 Peer-to-Peer Search engine
YaCy. He is a Big Data Engineer consulting for some of the largest corporate players
in Germany on search engine technology and digital transformation strategies. He is also the architect
of the German Digital Library search portal.</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="Ramji Venkateswaran" src="img/RamjiVenkateswaran.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="https://www.jpmorgan.com/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/ramjiv/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description Felipe">
<h2>Ramji Venkateswaran</h2>
<span class="sub">Global Head of Cloud Ecosystem at J.P. Morgan</span>
<p>Ramji an experienced leader in the financial technology industry known for creating teams and culture that focus on pragmatic technical excellence and thought leadership, whilst maintaining obsessive focus on business goals.</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="Bunnie Huang" src="img/DouglasGray.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/douglasgray">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Douglas Gray</h2>
<span class="sub">Senior Vice President, Engineering at Indeed</span>
<p>Doug defines the organizational and development processes for the engineering team as a member
of Indeed’s senior leadership team. His areas of expertise include product revitalization,
process change and team development. He holds a degree in Computer Science from Stanford
University.
</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="Liang Moung" src="img/LiangMoung.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="http://www.sph.com.sg">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/moung-liang-a4544626/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Liang Moung</h2>
<span class="sub">Head of Digital Technology at Singapore Press Holdings</span>
<p>Liang leads a high performing engineering team to develop and support the various websites
and mobile applications for SPH’s flagship news brands, including The Straits Times,
and Lianhe Zaobao. She holds a degree in Computer Science from Stanford.</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">
<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="http://togaware.com/about/graham-williams/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/graham-williams-34024815/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Dr Graham Williams</h2>
<span class="sub">Data Science Director at Microsoft</span>
<p>Graham is as a practitioner and researcher in areas of health, banking, insurance, finance,
taxation, immigration, and many more. He has lead projects in data mining since the 1980’s.
He was previously a Lead Data Scientist with the Australian Government. </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="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
alarm 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="Carsten Haitzler" src="img/CarstenHaitzler.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="http://www.samsung.com">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/carsten-haitzler-817541">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Carsten Haitzler</h2>
<span class="sub">Samsung Electronics</span>
<p>He is also known as Raster or Rasterman to the open source community, best known for initiating
and leading the development of the Enlightenment window manager and its libraries. Since
2010 he has been working on Samsung's Linux platform Tizen.</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="Frank Karlitschek" src="img/FrankKarlitschek.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="https://krlitschek.de/">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.facebook.com/karlitschek">
<i class="icon fa fa-facebook"></i>
</a>
<a target="default" href="https://twitter.com/fkarlitschek">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/frankkarlitschek/">
<i class="icon social_linkedin"></i>
</a>
<a target="default" href="https://github.com/karlitschek">
<i class="icon fa fa-github"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Frank Karlitschek</h2>
<span class="sub">Nextcloud</span>
<p>Frank is the Founder and Managing Director at Nextcloud. He also founded the ownCloud project
in 2010 to return control over the storing and sharing of information to consumers. Frank
is also a KDE contributor since 2001.</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12 speaker-outer">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Jean Baptiste Kempf" src="img/JeanBaptisteKempf.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="http://videolan.org">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/videolan">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/jbkempf/">
<i class="icon social_linkedin"></i>
</a>
<a target="default" href="https://github.com/jbkempf">
<i class="icon fa fa-github"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Jean-Baptiste Kempf</h2>
<span class="sub">VLC/Videolan</span>
<p>Jean-Baptiste is the President of VideoLAN and VLC Lead Developer. Since 2005 he works VideoLAN
projects, including VLC for desktop, the relicensing of libVLC, the ports to mobile operating
systems, and various multimedia libraries.</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="Jean Baptiste Kempf" src="img/JonasvonMalottki.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="https://www.daimler.com">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/jonas-von-malottki/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Jonas von Malottki</h2>
<span class="sub">Senior Manager Finance at Daimler</span>
<p>Jonas is shaping the Blockchain and DLT activities from the technology perspective within
Daimler. He holds a Diploma in Computer Science and Japanese Studies from University
of Bonn. Main focus topics were Metadata and Data Quality as well as Neural Networks.
He is a member of the Governing Board of Hyperledger.</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="Chris Van Tuin" src="img/ChrisVanTuin.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="https://redhat.com">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/chrisvantuin">
<i class="icon fa fa-twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/chrisvantuin/">
<i class="icon fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Chris Van Tuin</h2>
<span class="sub">Red Hat</span>
<p>Chris is the Chief Technologist at Red Hat. He has 20+ years of experience in Sales Engineering
and Services at Red Hat, Intel, Loudcloud, and Linux startups.</p>
</div>
</div>
</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 Program
<br/> March 22 - 24, 2018
<br> Lifelong Learning Institute, Exhibition Halls, Floor 1
</h1>
<ul class="schedule-overview">
<li>
<div class="schedule-title">
<span class="time">Thursday, March 22, 12:00 PM - 6:00 PM</span>
<span class="title">
<a class="inner-link" target="_self" href="./exhibition/index.html#exhibitionschedule">Exhibition, Career Fair, VIP Tour</a>
</span>
</div>
<div class="schedule-text">
<p>12:00 PM Exhibition & Career Fair Doors Open
<br/> 12:15 PM Welcome Snacks
<br/> 3:30 PM VIP Tour at Exhibition
<br/> 3:30 PM Career Booth Crawl
<br/> 6:00 PM Exhibition Doors Close</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, March 23, 10:00 AM - 6:00 PM</span>
<span class="title">
<a class="inner-link" target="_self" href="./exhibition/index.html#exhibitionschedule">Exhibition, Business Lunch and Afternoon Booth Tour</a>
</span>
</div>
<div class="schedule-text">
<p>9:30 AM Exhibitors Breakfast Snacks
<br/> 10:00 AM Exhibition Doors Open
<br/> 6:00 Exhibition Doors Close</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, March 24, 10:00 AM - 6:00 PM</span>