forked from fossasia/fossasia.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1667 lines (1507 loc) · 84.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 | Asia's Open Technology Organization - Developing Open Source Software, Open Hardware, Open Design, Open Data, Open Knowledge to Improve People's Life</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="FOSSASIA - Developing Open Source Software and Open Hardware to improve people's lives. Solutions for Event Management, Artificial Intelligence. FOSSASIA is Asia's Premier Open Technology Organization.">
<meta name="keywords" content="Open Source, Development, FOSSASIA, FOSS, Free and Open Source Software, Asia">
<meta name="author" content="FOSSASIA">
<meta property="og:title" content="FOSSASIA" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://fossasia.org/img.fossasia.png" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@fossasia">
<meta name="twitter:title" content="FOSSASIA">
<meta name="twitter:description" content="FOSSASIA Open Tech Organization - Developing Open Source, Open Hardware and Open Knowledge Tools with Asia's Premier Open Technology Community">
<meta name="twitter:creator" content="@fossasia">
<meta name="twitter:image" content="https://fossasia.org/img/fossasia.png">
<link rel=icon href="fossasia.ico">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/flexslider.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/elegant-icons.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/pe-icon-7-stroke.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/theme-lava.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/custom.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/custom-blog.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/bootstrap-theme.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/text-overlay.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>
<div class="nav-container">
<nav class="overlay-nav">
<div class="container">
<div class="row">
<div class="col-md-2">
<a target="_self" class="inner-link" href="#top"><img alt="FOSSASIA" 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 class="has-dropdown"><a target="_self" class="inner-link" href="#projects">Projects</a>
<ul class="nav-dropdown projects" style="min-height: 480px"> <!--whenever you add/remove an option, change the style="min-height:500px" by +- 25px-->
<li><a target="_self" href="https://github.com/fossasia">Contribute on Github</a></li>
<li><a target="_self" href="https://susi.ai">SUSI.AI</a></li>
<li><a target="_self" href="https://pslab.io/">Pocket Science Lab</a></li>
<li><a target="_self" href="https://eventyay.com">eventyay</a></li>
<li><a target="_self" href="https://github.com/fossasia/badge-magic-android">LED Badge Magic</a></li>
<li><a target="_self" href="https://phimp.me">Phimp.me Image App</a></li>
<li><a target="_self" href="https://meilix.org">Meilix Linux</a></li>
<li><a target="_self" href="https://badgeyay.com/">Badgeyay</a></li>
<li><a target="_self" href="https://loklak.org">loklak Social Search</a></li>
<li><a target="_self" href="https://susper.com">Susper Search</a></li>
<li><a target="_self" href="https://github.com/fossasia/scrum_helper">Scrum Helper</a></li>
<li><a target="_self" href="https://query-server.herokuapp.com/">Query Server</a></li>
<li><a target="_self" href="https://knitting.fossasia.org/">Knitting Lab</a></li>
<li><a target="_self" href="https://labs.fossasia.org">... Project Ideas</a></li>
<li><a target="_self" class="inner-link" href="#projects" target="_self">... More Projects</a></li>
</ul>
</li>
<li class="has-dropdown"><a target="_self" href="https://events.fossasia.org">Events</a>
<ul class="nav-dropdown events" style="min-height: 380px"> <!--whenever you add/remove an option, change the style="min-height:425px" by +- 25px-->
<li><a target="_self" href="https://eventyay.com">Eventyay Platform</a></li>
<li><a target="_self" href="https://events.fossasia.org/#sponsorship">Event Sponsorships</a></li>
<li><a target="_self" href="https://summit.fossasia.org">FOSSASIA Summit Singapore</a></li>
<li><a target="_self" href="https://opentechsummit.cn">OpenTechSummit China</a></li>
<li><a target="_self" href="https://opentechsummit.in">OpenTechSummit India</a></li>
<li><a target="_self" href="https://indochina.opentech.asia">OpenTechSummit Indochina</a></li>
<li><a target="_self" href="https://thai.opentechsummit.asia">OpenTechSummit Thailand</a></li>
<li><a target="_self" href="https://vn.opentechsummit.asia">OpenTechSummit Vietnam</a></li>
<li><a target="_self" href="https://jugaadfest.com">Jugaad Fest India</a></li>
<li class="has-dropdown has-submenu"><a target="_self" href="https://events.fossasia.org">... Past Events</a>
<ul class="nav-dropdown submenu" style="min-height: 380px;">
<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://2009.fossasia.org">GNOME.Asia 2009</a></li>
<li><a target="_self" href="https://sciencehack.asia">Science Hack Asia</a></li>
<li><a target="_self" href="https://sciencehack.in">Science Hack India</a></li>
</ul>
</li>
<li><a target="_self" href="https://events.fossasia.org/">... More Events</a></li>
</ul>
</li>
<li class="has-dropdown"><a class="inner-link" href="#labs-programs">Programs</a>
<ul class="nav-dropdown" style="min-height: 330px"> <!--whenever you add/remove an option, change the style="min-height:425px" by +- 25px-->
<li><a target="_self" href="https://academy.fossasia.org">Academy</a></li>
<li><a target="_self" class="inner-link" href="#programs">Programs & Opportunities</a></li>
<li><a target="_self" href="https://jobs.fossasia.org">Job Opportunities</a></li>
<li><a target="_self" href="https://docs.google.com/document/d/1E4kNgrOSw64R2IAG45JSIgQL9Yxia-mG2dqlRcrUo-U/edit#heading=h.tk1f81imz6al">Program Guidelines</a></li>
<li><a target="_self" href="https://codeheat.org">Codeheat Contest</a></li>
<li><a target="_self" href="./internship">University Internship Program</a></li>
<li><a target="_self" href="./apply-pupils">High School Student Program</a></li>
<li><a target="_self" href="./adp">Advanced Developer Program</a></li>
<li class="has-dropdown has-submenu"><a target="_self" class="inner-link" href="#programs">Become A Mentor</a>
<ul class="nav-dropdown submenu" style="min-height: 90px;">
<li><a target="_self" href="./mentor">Become University Student Mentor</a></li>
<li><a target="_self" href="./gci-mentor">Become High School Student Mentor</a></li>
</ul>
</li>
</ul>
<li><a target="_self" href="https://fossasia.com">Shop</a></li>
<li><a target="_self" href="https://blog.fossasia.org">Blog</a></li>
</li>
<li class="has-dropdown"><a target="_self" class="inner-link" href="#about">About</a>
<ul class="nav-dropdown" style="min-height: 285px"> <!--whenever you add/remove an option, change the style="min-height:425px" by +- 25px-->
<li><a target="_self" href="https://community.fossasia.org">Membership</a></li>
<li><a target="_self" href="https://jobs.fossasia.org">Jobs</a></li>
<li><a target="_self" class="inner-link" href="#activities">Activities</a></li>
<li><a target="_self" class="inner-link" href="#mission">Background & Mission</a></li>
<li><a target="_self" href="https://blog.fossasia.org/open-source-developer-guide-and-best-practices-at-fossasia/">Best Practices</a></li>
<li><a target="_self" href="./licenses">Licenses</a></li>
<li><a target="_self" href="./team">Team</a></li>
<li><a target="_self" href="./coc">Code of Conduct</a></li>
<li><a class="inner-link" href="#subscribe" target="_self">Subscribe</a></li>
</ul>
<li class="hidden-sm hidden-xs"><a target="_self" href="./donate/">Donate</a></li>
<!-- <li class="hidden-sm hidden-xs"><a target="_self" href="./contact/">Contact</a></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>
<div class="sidebar-menu-toggle" ><i class="icon icon_menu"></i></div>
<div class="mobile-menu-toggle"><i class="icon icon_menu"></i></div>
</ul>
</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">Home</a></li>
<li><a class="inner-link" href="#about">About</a></li>
<li><a target="_self" class="inner-link" href="#projects">Projects</a></li>
<li><a target="_self" href="https://events.fossasia.org">Events</a></li>
<li><a target="_self" class="inner-link" href="#labs-programs">Labs & Programs</a></li>
<li><a href="https://github.com/fossasia" target="_self">Contribute</a></li>
<!-- <li><a class="inner-link" href="#support" target="_self">Support</a></li>
<li><a class="inner-link" href="#subscribe" target="_self">Subscribe</a></li> -->
<li><a href="https://summit.fossasia.org" target="_self">FOSSASIA Summit</a></li>
<li><a href="https://blog.fossasia.org" target="_self">Blog</a></li>
<li><a href="./donate/" target="self">Donate</a></li>
<li><a href="https://blog.fossasia.org/contact/" target="_self">Contact</a></li>
</ul>
</div>
<div class="widget">
<ul class="social-profiles">
<li><a href="https://twitter.com/fossasia" target="_self"><i class="icon social_twitter"></i></a></li>
<li><a href="https://facebook.com/fossasia" target="_self"><i class="icon social_facebook"></i></a></li>
<li><a href="https://youtube.com/fossasiaorg" 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 class="main-container">
<section class="hero-slider">
<ul class="slides">
<li class="hero-slide">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/fossasia-pnompenh.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<img alt="FOSSASIA" class="logo" src="img/fossasia-squarewhite-path.png">
<h1 class="large-h1 text-white">Bringing together an inspiring community across borders and ages to form a better future with Open Technologies and ICT</h1>
<a href="https://community.fossasia.org" class="btn btn" target="_self">Become a Member!</a>
</div>
</div>
</div>
</li>
<li class="hero-slide">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/banner2a.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<img alt="FOSSASIA" class="logo" src="img/fossasia-squarewhite-path.png">
<h1 class="large-h1 text-white">Organizing training programs and coding events for thousands of developers, engineers and designers every year</h1>
<a href="https://summit.fossasia.org/tickets/" class="btn btn" target="_self">Summit Tickets</a>
</div>
</div>
</div>
</li>
<li class="hero-slide">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/OpenTechSummit-LinuxCommunity.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<img alt="FOSSASIA" class="logo" src="img/fossasia-squarewhite-path.png">
<h1 class="large-h1 text-white">Developing Free and Open Source Software and Hardware and cooperating with the most forward thinking Open Tech innovators and companies of the planet</h1>
<a href="https://github.com/fossasia/" class="btn btn-hollow" target="_self">Get our Code</a>
</div>
</div>
</div>
</li><li class="hero-slide">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/community-map.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-7">
<img alt="FOSSASIA" class="logo" src="img/fossasia-squarewhite-path.png">
<h1 class="large-h1 text-white">Incubating Open Tech Projects and Accelerating FOSS/Open Source Companies to Develop a Sustainable FOSS Ecosystem</h1>
<a href="https://fossasia.com" class="btn btn" target="_self">Visit our Shop</a>
</div>
</div>
</div>
</li>
</ul>
</section>
<section class="color-blocks">
<div class="color-block block-left col-sm-12 col-md-6"></div>
<div class="color-block block-right col-sm-12 col-md-6"></div>
<div class="container">
<div class="row">
<a href="https://summit.fossasia.org/tickets/" class="block-content" target="_self">
<div class="col-sm-4 text-center col-md-2">
<i class="icon pe-7s-cash icon-large"></i>
</div>
<div class="col-sm-8 col-md-4">
<h1>Get tickets to FOSSASIA Summit 2020.</h1>
<p>
Get your summit ticket on eventyay, our Open Source event management platform developed by FOSSASIA. It offers ticketing and scheduling of events.
</p>
</div>
</a>
<a href="https://codeheat.org" class="block-content" target="_self">
<div class="col-sm-4 text-center col-md-2">
<i class="icon pe-7s-sun icon-large"></i>
</div>
<div class="col-sm-8 col-md-4">
<h1>Codeheat Coding Contest, Sep.15 2019 - Feb 2, 2020.</h1>
<p>
Build up your developer profile with FOSSASIA and win a trip to our annual summit in Singapore from March 19-22, 2020.
</p>
</div>
</a>
<!-- <a href="#apply class="block-content" target="_self">
<div class="col-sm-4 text-center col-md-2">
<i class="icon pe-7s-sun icon-large"></i>
</div>
<div class="col-sm-8 col-md-4">
<h1>Join our coding programs or fill open internship and job positions. Register now and apply!</h1>
<p>
We are constantly looking for good developers, who can join our developer programs or apply for internship and job vacancies at FOSSASIA. Please register yourself on our application page.
</p>
</div>
</a> -->
</div>
</div>
</section>
<a id="activities" class="in-page-link"></a>
<section class="duplicatable-content visitor-info">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>FOSSASIA Activities<br></h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Venue" src="img/16684326949_3f300eacf7_z.jpg">
<h3>Software and Hardware Projects</h3>
<p>We create Open Source software and open hardware from science apps like the Pocket Science Lab (PSLab), event management systems (Eventyay), big "open" data analytics software (loklak), Open Source personal assistants (SUSI.AI), tools for development (Scrum Helper), to Android apps like the imaging app Phimp.me.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://github.com/fossasia" target="_self">Get our Code on GithHub</a>
<a href="https://fossasia.com" target="_self">Visit Shop</a>
<a href="https://play.google.com/store/apps/developer?id=FOSSASIA" target="_self">Apps on Playstore</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Venue" src="img/FOSSASIA_Meetup.jpg">
<h3>Events and Meetups<br></h3>
<p>Our signature event, the FOSSASIA OpenTechSummit, takes place every year in March in Singapore. Other OpenTechSummits are in China, India, Vietnam, Indonesia and Thailand. We organize Science Hackathons in cooperation with companies and International organizations like the UNESCO and have meetups throughout Asia from Beijing, Saigon, Singapore to Dubai. Please join our events.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="#events" class="inner-link" target="_self">Find Out About Events</a>
<a href="https://eventyay.com" target="_self">Get Tickets on Eventyay</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Venue" src="img/16704948658_0dff7bd62c_z.jpg">
<h3>Coding Programs and Labs<br></h3>
<p><div>At FOSSASIA Labs we are collecting ideas for new features of our applications and entirely new projects. In our coding contests and development and mentorship programs we support new developers to join the Open Tech community. The annual Codeheat contest offers many prizes and the winners fly to the FOSSASIA Summit in Singapore. We also cooperate with partners in programs such as Google Summer of Code.</div><div><br><br><br></div></p>
<div class="text-link">
<a href="https://labs.fossasia.org" target="_self">Learn about ideas at FOSSASIA Labs</a>
<a href="#labs-programs" class="inner-link" target="_self">Join FOSSASIA Programs</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="sponsors">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1>Proudly developed at FOSSASIA</h1>
</div>
</div>
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="row">
<div class="col-10 col-sm-offset-1">
<div class="col-10 col-sm-offset-0">
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://susi.ai">
<img alt="SUSI.AI" src="img/SUSI.AI.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://loklak.org">
<img alt="Loklak" src="img/loklak.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://phimp.me">
<img alt="Phimp.me" src="img/phimpme.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://pslab.io">
<img alt="PSLab.io" src="img/PSLab-io.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://eventyay.com">
<img alt="Open Event - Eventyay" src="img/eventyay.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://susper.com">
<img alt="Susper" src="img/susper.svg">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://badgeyay.com">
<img alt="Badgeyay" src="img/badgeyay.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://github.com/fossasia/scrum_helper">
<img alt="Scrum Helper" src="img/scrumhelper-path.svg">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://github.com/fossasia?utf8=✓&q=neuro">
<img alt="Neurolab" src="img/neurolab.svg">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://meilix.org">
<img alt="Meilix" src="img/meilix.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://github.com/fossasia/yaydoc">
<img alt="Yaydoc" src="img/yaydoc.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://github.com/fossasia/searss">
<img alt="SEARSS" src="img/searss.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://query-server.herokuapp.com/">
<img alt="Query Server" src="img/query_server.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://knitting.fossasia.org/">
<img alt="Knitting" src="img/fossasia-knitting.svg">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://github.com/fossasia/mew">
<img alt="Mew" src="img/mew.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://github.com/fossasia/labyrinth">
<img alt="Mew" src="img/labyrinth.png">
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="https://github.com/fossasia?utf8=✓&q=badge-magic">
<img alt="Badge Magic" src="img/badge-magic.svg">
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 text-center">
<span>Find more of our projects on <a href="https://github.com/fossasia">GitHub</a></span>
</div>
</div>
</div>
</div>
</section>
<section id="android" class="sponsors">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1>Android Apps of FOSSASIA</h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-12 sponsor-column" >
<div class=" text-center" style="margin-bottom: 30px">
<a href="https://play.google.com/store/apps/details?id=ai.susi">
<img alt="SUSI.AI" src="img/SUSI.AI-Android.jpg" height="500">
<div class="text-block">
<h4><strong><font color="black">SUSI.AI Android</font></strong></h4>
</div>
</a>
<div style="display: flex;flex-direction: row;justify-content: center; align-items: center;">
<a href='https://play.google.com/store/apps/details?id=ai.susi'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' width="125"/></a>
<a href='https://f-droid.org/en/packages/ai.susi/'><img alt='Get it on F-Droid' src='https://fdroid.gitlab.io/artwork/badge/get-it-on.png' width="125"/></a>
<a href='https://github.com/fossasia/susi_android'><img alt="GitHub" src="img/GitHub.png" height="35"></a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-12 sponsor-column" >
<div class=" text-center" style="margin-bottom: 30px">
<a href="https://play.google.com/store/apps/details?id=io.pslab">
<img alt="Pocket Science Lab" src="img/PSLab_Android.jpg" height="500">
<div class="text-block">
<h4><strong><font color="black">PSLab Android</font></strong></h4>
</div>
</a>
<div style="display: flex;flex-direction: row;justify-content: center; align-items: center;">
<a href='https://play.google.com/store/apps/details?id=io.pslab'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' width="125"/></a>
<a href='https://f-droid.org/app/io.pslab'><img alt='Get it on F-Droid' src='https://fdroid.gitlab.io/artwork/badge/get-it-on.png' width="125"/></a>
<a href='https://github.com/fossasia/pslab-android'><img alt="GitHub" src="img/GitHub.png" height="35"></a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-12 sponsor-column" >
<div class=" text-center" style="margin-bottom: 30px">
<a href="https://play.google.com/store/apps/details?id=org.fossasia.phimpme">
<img alt="Phimp.me" src="img/Phimpme_Android.jpg" height="500">
<div class="text-block">
<h4><strong><font color="black">Phimp.me Android</font></strong></h4>
</div>
</a>
<div style="display: flex;flex-direction: row;justify-content: center; align-items: center;">
<a href='https://play.google.com/store/apps/details?id=org.fossasia.phimpme'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' width="125"/></a>
<a href='https://github.com/fossasia/phimpme-android'><img alt="GitHub" src="img/GitHub.png" height="35"></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-12 sponsor-column" >
<div class=" text-center" style="margin-bottom: 30px">
<a href="https://play.google.com/store/apps/details?id=org.fossasia.badgemagic">
<img alt="Badge Magic" src="img/Badge_Magic_Android.jpg" height="500">
<div class="text-block">
<h4><strong><font color="black">Badge Magic Android</font></strong></h4>
</div>
</a>
<div style="display: flex;flex-direction: row;justify-content: center; align-items: center;">
<a href='https://play.google.com/store/apps/details?id=org.fossasia.badgemagic'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' width="125"/></a>
<a href='https://f-droid.org/en/packages/org.fossasia.badgemagic/'><img alt='Get it on F-Droid' src='https://fdroid.gitlab.io/artwork/badge/get-it-on.png' width="125"/></a>
<a href='https://github.com/fossasia/badge-magic-android'><img alt="GitHub" src="img/GitHub.png" height="35"></a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-12 sponsor-column" >
<div class=" text-center" style="margin-bottom: 30px">
<a href="https://play.google.com/store/apps/details?id=com.eventyay.attendee">
<img alt="Eventyay Attendee" src="img/Eventyay_Attendee_App.jpg" height="500">
<div class="text-block">
<h4><strong><font color="black">Eventyay Attendee App</font></strong></h4>
</div>
</a>
<div style="display: flex;flex-direction: row;justify-content: center; align-items: center;">
<a href='https://play.google.com/store/apps/details?id=com.eventyay.attendee'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' width="125"/></a>
<a href='https://f-droid.org/en/packages/com.eventyay.attendee/'><img alt='Get it on F-Droid' src='https://fdroid.gitlab.io/artwork/badge/get-it-on.png' width="125"/></a>
<a href='https://github.com/fossasia/open-event-attendee-android'><img alt="GitHub" src="img/GitHub.png" height="35"></a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-12 sponsor-column" >
<div class=" text-center" style="margin-bottom: 30px">
<a href="https://play.google.com/store/apps/details?id=com.eventyay.organizer">
<img alt="Eventyay Organizer" src="img/Eventyay_Organizer_App.jpg" height="500">
<div class="text-block">
<h4><strong><font color="black">Eventyay Organizer App</font></strong></h4>
</div>
</a>
<div style="display: flex;flex-direction: row;justify-content: center; align-items: center;">
<a href='https://play.google.com/store/apps/details?id=com.eventyay.organizer'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' width="125"/></a>
<a href='https://f-droid.org/en/packages/com.eventyay.organizer/'><img alt='Get it on F-Droid' src='https://fdroid.gitlab.io/artwork/badge/get-it-on.png' width="125"/></a>
<a href='https://github.com/fossasia/open-event-organizer-android'><img alt="GitHub" src="img/GitHub.png" height="35"></a>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 text-center">
<span>Find more apps on the <a href="https://play.google.com/store/apps/developer?id=FOSSASIA">Play Store</a></span>
</div>
</div>
</div>
</div>
</section>
<a id="about" class="in-page-link"></a>
<section class="section-header overlay preserve3d">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="./img/hero7.jpg">
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-sm-offset- col-sm-12">
<i class="icon pe-7s-global"></i>
<i class="icon pe-7s-like icon-large"></i>
<i class="icon pe-7s-sun icon-large"></i>
<h1 class="text-white">A little more about FOSSASIA</h1>
<p class="lead text-white">
FOSSASIA is an organization developing Open Source software applications and Open Hardware together with a global community from its base in Asia. It is our goal to provide access to open technologies, science applications and knowledge that improve people's lives. We want to enable people to adapt and change technology according to their own ideas and needs and validate science and knowledge through an Open Access approach. FOSSASIA was established 2009 by Hong Phuc Dang and Mario Behling. We organize and participate in conferences, meetups and code camps. The annual FOSSASIA Summit in Singapore is one of the top tech events in Asia. Other summits take place in Vietnam, Cambodia, Thailand and India. FOSSASIA also runs a number of coding programs such as Codeheat. Please join us and start contributing <a href="https://github.com/fossasia/">to our projects</a>, participate as a coder, designer, hardware developer or event organizer, become a sponsor of projects and events or support us by buying Open Tech products on the <a href="https://fossasia.com">FOSSASIA store</a>
</div>
</div>
</div>
</section>
<a id="labs" class="in-page-link"></a>
<section class="contained-gallery">
<div class="container">
<div class="row">
<div class="col-md-7 col-sm-6">
<div class="lightbox-gallery">
<ul>
<li>
<a href="img/fossaspa-app.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/fossaspa-app.jpg">
</div>
</a>
</li>
<li>
<a href="img/3dprinter.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/3dprinter.JPG">
</div>
</a>
</li>
<li>
<a href="img/SUSI.AI-Skills.png" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/SUSI.AI-Skills.png">
</div>
</a>
</li>
<li>
<a href="img/bodyapps-female-3d.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/bodyapps-female-3d.jpg">
</div>
</a>
</li>
<li>
<a href="img/pslab-io-board.png" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/pslab-io-board.jpg">
</div>
</a>
</li>
<li>
<a href="img/bodyapps-ui-3d.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/bodyapps-ui-3d.jpg">
</div>
</a>
</li>
<li>
<a href="img/pslab-io-box.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/pslab-io-box.jpg">
</div>
</a>
</li>
<li>
<a href="img/pslab-robot.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/pslab-robot.jpg">
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-5">
<h1>Incubating Open Tech Projects</h1>
<p class=lead>
We incubate our most advanced projects into FOSS companies to support a sustainable FOSS Ecosystem.</p>
<p>Our teams are developing software to run <a href="https://eventyay.com" target="_self">events</a>. We have Android apps to <a href="https://phimp.me" target="_self">enhance photos</a> or do <a href="https://play.google.com/store/apps/details?id=io.pslab" target="_self">scientific experiments</a>. You can set up your own <a href="https://susi.ai" target="_self">SUSI.AI</a> personal assistant. Or, you use the Pocket Science Lab (PSLab) to measure just about anything. We also fund the production of Open Hardware like <a href="https://pslab.io" target="_self">PSLab</a> to get FOSS moving forward.
</p>
<a target="_self" class="btn inner-link" href="#projects">Learn about Projects</a>
<a href="https://pslab.io" class="btn btn-hollow" target="_self">Check out PSLab.io</a>
</div>
</div>
</div>
</section>
<section class="contained-gallery">
<div class="container">
<div class="row">
<div class="col-sm-12">
</div>
</div>
<div class="row">
<div class="col-md-6">
<h1>Pocket Science Lab - Open Hardware</h1>
<p class="lead">
PSLab is a FOSS/Open Hardware extension for your smartphone or PC. It enables you to measure all kinds of things by connecting it to your phone or PC via USB. You can use it as an Oscilloscope, Multimeter, Frequency counter, Power Source, Logic Analyzer, Wavelength Generator, Luxmeter, Barometer and many more. Use our <a href="https://play.google.com/store/apps/details?id=io.pslab" target="_self">Android</a> or desktop app to collect and view the data. And, you can even plug in hundreds of compatible sensors to the PSLab pin slots. What experiments you can do is just limited by your imagination!
</p>
<a href="https://github.com/fossasia?utf8=✓&q=pslabhttps://github.com/fossasia?utf8=✓&q=pslab" class="btn" target="_self">PSLab GitHub</a>
<a href="https://fossasia.com" class="btn btn-hollow" target="_self">Buy PSLab</a>
</div>
<div class="col-md-6">
<div class="embedded-video-holder vju">
<a href="https://pslab.io" target="_self"><img alt="Pocket Science Lab" src="img/pslab-io-box.jpg"></a>
</div>
</div>
</div>
</div>
</section>
<section class="strip-divider call-to-action">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="BG Image" src="img/grey-bg.jpg">
</div>
<div class="container">
<div class="row">
<div class="text-center">
<h1>Connect with FOSSASIA!</h1>
<span class="uppercase">Meet us at our events or online.</span>
<a target="_self" class="btn btn-lg" href="https://events.fossasia.org">FOSSASIA Events</a><a target="_self" class="btn btn-lg" href="https://blog.fossasia.org">Blog</a>
<span class="uppercase">Oh, invite your friends too</span>
<a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=fossasia.org"><i class="icon social_facebook icon-large"></i></a>
<a target="_blank" href="https://twitter.com/home?status=Join%20me%20for%20the%20%40FOSSASIA%20%23OpenTechSummit%20in%20March%202018%20in%20Singapore%20%3A%20https%3A//fossasia.org"><i class="icon social_twitter"></i></a>
<a target="_blank" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A//fossasia.org&title=Join%20me%20for%20the%20%40FOSSASIA%20%23OpenTechSummit%20in%20March%202018%20in%20Singapore&summary=FOSSASIA%20%7C%20Asia's%20Open%20Technology%20Organization%20for%20Open%20Source%20Software,%20Open%20Hardware,%20Open%20Design,%20Open%20Data,%20Open%20Knowledge&source="><i class="icon social_linkedin icon-large"></i></a>
<a target="_blank" href="https://www.tumblr.com/share/link?url=https%3A%2F%2Ffossasia.org&name=Join%20me%20for%20the%20%40FOSSASIA%20%23OpenTechSummit%20in%20March%202018%20in%20Singapore!&description=FOSSASIA%20%7C%20Asia's%20Open%20Technology%20Organization%20for%20Open%20Source%20Software%2C%20Open%20Hardware%2C%20Open%20Design%2C%20Open%20Data%2C%20Open%20Knowledge"><i class="icon social_tumblr icon-large"></i></a>
<a target="_blank" href="https://pinterest.com/pin/create/button/?url=https%3A//fossasia.org&media=https%3A//2017.fossasia.org/img/fossasia2016.jpg&description=Join%20me%20for%20the%20%40FOSSASIA%20%23OpenTechSummit%20in%20March%202018%20in%20Singapore."><i class="icon social_pinterest icon-large"></i></a>
</div>
</div>
</div>
</section>
<a id="events" class="in-page-link"></a>
<section class="duplicatable-content visitor-info">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Events, Conferences, Meetups, Jugaad Fests, Hackathons, Science Days</h1>
</div>
</div>
<div class="row equal-row">
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OTS Day Sri Lanka" src="img/OTS_SriLanka.jpg">
<h3>OTS Day Sri Lanka</h3>
<h3>6 January, 2020<br>University of Moratuwa, Colombo</h3>
<p>The OpenTechSummit Day in Sri Lanka.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://srilanka.opentech.asia" target="_self">Website</a>
<a href="https://srilanka.opentech.asia/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OpenTechSummit Myanmar" src="img/OTS_Myanmar.jpg">
<h3>OpenTechSummit Myanmar</h3>
<h3>15-16 February, 2020<br>OpenTechSummit Myanmar, Yangon</h3>
<p>OpenTechSummit Myanmar, Yangon<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://myanmar.opentech.asia" target="_self">Website</a>
<a href="https://myanmar.opentech.asia/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="FOSSASIA Summit" src="img/FOSSASIA_Summit.jpg">
<h3>FOSSASIA Summit Singapore</h3>
<h3>19-21 March, 2020<br>Singapore</h3>
<p>The FOSSASIA Summit in Singapore is our feature event and Asia's Premier Open Technology conference with thousands of participants and an Open Tech exhibition taking place every year in March.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://summit.fossasia.org" target="_self">Website</a>
<a href="https://summit.fossasia.org/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OpenTechSummit Vietnam" src="img/OTS_Vietnam.jpg">
<h3>OpenTechSummit Vietnam</h3>
<h3>27 March, 2020<br>Hanoi</h3>
<p>The OpenTechSummit Vietnam takes place Hanoi. The event covers a large variety of subjects from cloud to web and blockchain. The first FOSSASIA event in the city took place in 2009.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://vietnam.opentech.asia" target="_self">Website</a>
<a href="https://vietnam.opentech.asia/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OTS Day Japan" src="img/OTS_Japan.jpg">
<h3>OTS Day Japan</h3>
<h3>18 June, 2020<br>Tokyo</h3>
<p>OTS Day Tokyo.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://japanday.opentech.asia" target="_self">Website</a>
<a href="https://japanday.opentech.asia/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OpenTechSummit Indochina" src="img/OTS_Indochina.jpg">
<h3>OpenTechSummit Indochina</h3>
<h3>2-3 October, 2020<br>Ho Chi Minh City</h3>
<p>OpenTechSummit Indochina<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://indochina.opentech.asia" target="_self">Website</a>
<a href="https://indochina.opentech.asia/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Jugaad Fest South India" src="img/Jugaadfest_Bangalore.jpg">
<h3>Jugaad Fest South India</h3>
<h3>7 October, 2020<br>Hyderabad, India</h3>
<p>Hack the Indian way! The idea of Jugaad is to make things work in an innovative and quick way using available resources. Jugaad Fest events are a perfect opportunity to get together, learn, and make Open Tech work.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://jugaadfest.com" target="_self">Website</a>
<a href="https://jugaadfest.com/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OpenTechSummit Day South India" src="img/OTS_SouthIndia.jpg">
<h3>OpenTechSummit Day South India</h3>
<h3>7 October, 2020<br>Hyderabad, India</h3>
<p>OpenTechSummit Day South India<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://south.opentechsummit.in" target="_self">Website</a>
<a href="https://south.opentechsummit.in/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OpenTechSummit India" src="img/OTS_India.jpg">
<h3>OpenTechSummit India</h3>
<h3>10-11 October, 2020<br>Delhi, India</h3>
<p>OpenTechSummit India<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://opentechsummit.in" target="_self">Website</a>
<a href="https://opentechsummit.in/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Jugaad Fest India" src="img/Jugaadfest_India.jpg">
<h3>Jugaad Fest India</h3>
<h3>10-11 October, 2020<br>Delhi, India</h3>
<p>Hack the Indian way! The idea of Jugaad is to make things work in an innovative and quick way using available resources. Jugaad Fest events are a perfect opportunity to get together, learn, and make Open Tech work.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://jugaadfest.com" target="_self">Website</a>
<a href="https://jugaadfest.com/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OpenTechSummit Day" src="img/OTS_Thailand.jpg">
<h3>OpenTechSummit Thailand</h3>
<h3>5-7 November, 2020<br>Bangkok, Thailand</h3>
<p>The Thailand developers community day takes place in July in Bangkok. Here you will meet developers, engineers and students from leading universities in Thailand.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://thai.opentech.asia" target="_self">Website</a>
<a href="https://thai.opentech.asia/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OpenTechSummit China" src="img/OTS_China.jpg">
<h3>OpenTechSummit China</h3>
<h3>26-28 November, 2020<br>Tsinghua University Shenzhen</h3>
<p>The OpenTechSummit China takes place Shenzhen with a focus on hardware, cloud, devops and artificial intelligence.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://opentechsummit.cn" target="_self">Website</a>
<a href="https://opentechsummit.cn/sponsorship/" target="_self">Sponsor</a>
</div>
</div>
</div>
</div>
<div class="text-link">
<div class="col-sm-12 text-center">
<span>Find more 2020 <a href="https://events.fossasia.org">events here</a>.</span>
</div>
</div>
</div>
</section>
<a id="events2019" class="in-page-link"></a>
<section class="duplicatable-content visitor-info">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Events 2019</h1>
</div>
</div>
<div class="row equal-row">
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OpenTechSummit China" src="img/OTS_China.jpg">
<h3>OpenTechSummit China</h3>
<h3>Tsinghua University Shenzhen<br>21-23 November, 2019</h3>
<p>The OpenTechSummit China brings together developers and business representatives for collaborative workshops and talks in China. There are also activities like a visit of the famous hardware district Huaqiang Bei und cultural events.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://opentechsummit.cn" target="_self">Website</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="OpenTechSummit Day" src="img/OTS_Thailand.jpg">
<h3>OpenTechSummit Thailand</h3>
<h3>Knowledge Exchange (KX) Bangkok<br>1-2 October, 2019</h3>
<p>The Thailand developers community day takes place in July in Bangkok. Here you will meet developers, engineers and students from leading universities in Thailand.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://thai.opentechsummit.asia" target="_self">Website</a>