forked from fossasia/labs.fossasia.org
-
Notifications
You must be signed in to change notification settings - Fork 2
/
projects.html
1314 lines (1127 loc) · 68.5 KB
/
projects.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>Labs and Projects at FOSSASIA | How to contribute in Asia's Open Technology Organization</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Search Engines -->
<meta name="description" content="FOSSASIA develops software and hardware and cooperates with Open Tech projects.">
<meta itemprop="name" content="Labs and Projects at FOSSASIA">
<meta itemprop="description" content="FOSSASIA develops software and hardware and cooperates with Open Tech projects.">
<meta name="keywords" content="collaborative, open source, tech communities, asia, developers, creators, coding, documentation, outreach, design, quality control, exciting, projects, students">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Labs and Projects at FOSSASIA">
<meta name="twitter:description" content="FOSSASIA develops software and hardware and cooperates with Open Tech projects.">
<meta name="twitter:site" content="@fossasia">
<meta name="twitter:creator" content="@fossasia">
<!-- Facebook, Pinterest & Google+ -->
<meta name="og:title" content="Labs and Projects at FOSSASIA">
<meta name="og:description" content="FOSSASIA develops software and hardware and cooperates with Open Tech projects.">
<meta name="og:url" content="https://labs.fossasia.org/">
<meta name="og:site_name" content="Labs and Projects at FOSSASIA">
<meta name="og:type" content="website">
<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="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'>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" media="all">
<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="https://fossasia.org/"><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 href="https://fossasia.org/about">About</a>
<ul class="nav-dropdown" style="min-height: 135px"> <!--whenever you add/remove an option, change the style="min-height:425px" by +- 25px-->
<li><a target="_self" href="https://fossasia.org/about#background">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="https://fossasia.org/licenses">Licenses</a></li>
<li><a target="_self" href="https://fossasia.org/team">Team</a></li>
</ul>
<li class="has-dropdown"><a href="https://fossasia.org/apply.html">Apply</a>
<ul class="nav-dropdown" style="min-height: 290px"> <!--whenever you add/remove an option, change the style="min-height:425px" by +- 25px-->
<li><a target="_self" href="https://fossasia.org/apply/index.html">Programs and Guidelines</a></li>
<li><a target="_self" href="https://fossasia.org/internship">Internship Summer Program</a></li>
<li><a target="_self" href="https://fossasia.org/apply-students">University Student Programs/Internships</a></li>
<li><a target="_self" href="https://fossasia.org/apply-pupils">Pre-University Student Programs</a></li>
<li><a target="_self" href="https://codeheat.org">Code Heat Contest</a></li>
<li><a target="_self" href="https://fossasia.org/gci-mentor">Code-in Mentor Application</a></li>
<li><a target="_self" href="https://fossasia.org/adp">Advanced Developer Program</a></li>
</ul>
<li class="has-dropdown"><a target="_self" class="inner-link" href="#projects">Projects</a>
<ul class="nav-dropdown projects" style="min-height: 451px"> <!--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="ideas.html">Project Ideas</a></li>
<li><a target="_self" class="inner-link" href="#top" >FOSSASIA Labs</a></li>
<li><a target="_self" href="https://susi.ai">SUSI.AI</a></li>
<li><a target="_self" href="https://Eventyay.com">eventyay</a></li>
<li><a target="_self" href="https://loklak.org">loklak Social Search</a></li>
<li><a target="_self" href="https://susper.com">Susper Seach Engine</a></li>
<li><a target="_self" href="https://yaydoc.org">Yaydoc Document Generator</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://pslab.io/">Pocket Science Lab</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://badgeyay.com/">Badgeyay</a></li>
<li class="has-dropdown has-submenu"><a>Google CODE-IN</a>
<ul class="nav-dropdown menu" style="min-height: 161px;">
<li><a target="_self" href="https://gci18.fossasia.org">Code-In 2018</a></li>
<li><a target="_self" href="https://gci17.fossasia.org">Code-In 2017</a></li>
<li><a target="_self" href="https://gci16.fossasia.org">Code-In 2016</a></li>
<li><a target="_self" href="https://gci15.fossasia.org">Code-In 2015</a></li>
<li><a target="_self" href="https://gci14.fossasia.org">Code-In 2014</a></li>
</ul>
</li>
</ul>
</li>
<li><a target="_self" class="inner-link" href="http://fossasia.org/#subscribe">Subscribe</a></li>
<li><a target="_self" href="https://blog.fossasia.org">Blog</a></li>
<li class="has-dropdown"><a href="https://events.fossasia.org">Events</a>
<ul class="nav-dropdown events" style="min-height: 575px"> <!--whenever you add/remove an option, change the style="min-height:425px" by +- 25px-->
<li><a target="_self" href="https://events.fossasia.org/#sponsorship">Sponsorship</a></li>
<li><a target="_self" href="https://calendar.fossasia.org">Event Calendar</a></li>
<li><a target="_self" href="https://eventyay.com">FOSSASIA Event Management</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>
<li><a target="_self" href="https://2019.fossasia.org">FOSSASIA Summit 2019</a></li>
<li><a target="_self" href="https://opentechsummit.cn">OpenTechSummit China</a></li>
<li><a target="_self" href="https://jugaadfest.com">Jugaadfest India</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://coc.fossasia.org">Code of Conduct</a></li>
</ul>
<li><a target="_self" href="https://2019.fossasia.org">Summit'19</a></li>
<li class="hidden-sm hidden-xs"><a target="_self" href="https://fossasia.org/donate/">Donate</a></li>
<li class="hidden-sm hidden-xs"><a target="_self" href="https://blog.fossasia.org/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>
</ul>
</div>
</div>
</div>
<div class="bottom-border"></div>
<div class="sidebar-menu">
<img alt="Logo" class="logo" src="img/fossasia-long.png"/ style="margin-bottom: 12px;">
<div class="bottom-border"></div>
<div class="sidebar-content">
<div class="widget" style="padding-top:50px;">
<ul class="menu">
<li><a href="https://fossasia.org" target="_self">Home</a></li>
<li><a href="https://fossasia.org/about" target="_self">About</a></li>
<li><a href="https://eventyay.com" target="_self">eventyay Event Management</a></li>
<li><a class="inner-link" href="#top" target="_self">Labs & Code</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://2018.fossasia.org" target="_self">FOSSASIA Summit'18</a></li>
<li><a href="https://blog.fossasia.org" target="_self">Blog</a></li>
<li><a href="https://fossasia.org/donate/" target="self">Donate</a></li>
<li><a href="https://groups.google.com/group/fossasia" target="_self">Mailing List</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://fossasia.net" target="_self"><i class="icon social_dribbble"></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>
</ul>
</div>
<div class="copy-text">
<span>© Copyright 2016 Creative Commons By License, FOSSASIA</span>
</div>
</div>
</div>
</nav>
</div>
<div class="main-container"><section class="section-header overlay preserve3d">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/header-fossasia.jpg">
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-sm-6 col-sm-offset-">
<h1 class="text-white">FOSSASIA Labs</h1>
<p class="lead text-white">
Open Technology projects, initiatives and coding programs. FOSSASIA runs Science Hack, software and hardware projects.
</p>
</div>
</div>
</div>
</section>
<section class="color-blocks block-left">
<div class="color-block col-sm-12 col-md-12"></div>
<div class="container">
<div class="row">
<a href="https://labs.fossasia.org/ideas.html" class="block-content" target="_self">
<div class="col-md-4 col-sm-4 text-center">
<i class="icon pe-7s-cash"></i>
</div>
<div class="col-sm-8 col-md-6">
<h1>Google Summer of Code</h1>
<p>FOSSASIA is proud to participate for several years as a mentor organization in the Summer of Code program of Google and at Google Code-In. Google Summer of Code offers students stipend to write code for our open source projects. Since 2011 FOSSASIA functions as an umbrella organization for a number of projects.</p>
</div>
</a>
</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/machine-knitting.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/machine-knitting.jpg">
</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/ayab-knitting.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/ayab-knitting.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/lubuntu-netbook.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/lubuntu-netbook.jpg">
</div>
</a>
</li>
<li>
<a href="img/loklak-fossasia.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/loklak-fossasia.jpg">
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-5">
<h1>FOSSASIA Labs<div>Software and Hardware Projects</div></h1>
<p class="lead">
FOSSASIA develops software and hardware and cooperates with Open Tech projects. Please check out our Github projects.
</p>
<a href="http://github.com/fossasia" class="btn" target="_self"></i>Contribute on Github</a>
<a href="http://labs.fossasia.org/ideas.html" class="btn btn-hollow" target="_self">Open Student Projects</a>
</div>
</div>
</div>
</section>
<a id="projects" class="in-page-link"></a>
<section class="duplicatable-content visitor-info">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>FOSSASIA Projects<br></h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Venue" src="img/16704948658_0dff7bd62c_z.jpg">
<h3>Science Hack Lab<br></h3>
<p>
In the FOSSASIA Pocket Science Lab project we develop hardware for schools and universities to enable hands-on learning for about physics and chemistry. We also organize Science Hack Days across Asia and cooperate with universities and numerous local partners and companies.<br><br><br></p>
<div class="text-link">
<a href="http://sciencehack.asia" target="_self">sciencehack.asia</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Venue" src="img/16685244587_dc6defba93_z.jpg">
<h3>Software Projects</h3>
<p>We develop many Open Source software projects from Wordpress plugins to knitting machine projects or event management solutions. Please join us in creating useful tools that make the world a better place.<br><br><br><br></p>
<div class="text-link">
<a href="https://github.com/fossasia" target="default">FOSSASIA Github Repo</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Venue" src="img/16684326949_3f300eacf7_z.jpg">
<h3>Hardware Projects</h3>
<p>The boundaries between hardware and software are increasingly blurry. For many years we cooperate with commmunities that work on open hardware such as OpenWrt, the Machine Knitting community, IoT projects for the smart city and open data hardware applications.</p><br/><br/>
<div class="text-link">
<a href="https://github.com/fossasia?utf8=%E2%9C%93&q=hardware&type=&language=" target="default">Hardware Repos</a>
</div>
</div>
</div>
</div>
</section>
</section>
<a id="data-machinelearning" class="in-page-link"></a>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">SUSI.AI, Data Science and Machine Learning</h1>
<p class="lead text-white">
We are implementing data science and machine learning capabilities in a number of projects. At <a href="http://susi.ai" target="_self">SUSI.AI</a> we are using big data to provide a personal assistant for users. SUSI.ai can be used inside chat applications like messengers as well as mobile Android apps and iOS apps.<br>[Technologies used: NodeJS, ExpressJS, APIs, Facebook, Slack, Messenger Services, Javascript, HTML, CSS]<br>
<div class="project-links">
<a href="https://susi.ai" target="_self" title="Website" class="fa fa-link"></a>
<a href="https://groups.google.com/group/susiai" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://github.com/fossasia?utf8=✓&q=susi" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/asksusiai/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/susiai_" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
<div class="project-links">
<div style="padding: 0.5rem 1rem;">Chat Channels : </div>
<a href="https://gitter.im/fossasia/susi_server" target="_self" title="Chat Channel - Server" class="fa fa-server"></a>
<a href="https://gitter.im/fossasia/susi_android" target="_self" title="Chat Channel - Android" class="fa fa-android"></a>
<a href="https://gitter.im/fossasia/susi_iOS" target="_self" title="Chat Channel - iOS" class="fa fa-apple"></a>
</div>
</p>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="FOSSASIA Wordpress Plugins" src="img/asksusi.png">
</div>
</div>
</section>
<a id="SUSIAI_Android" class="in-page-link"></a>
<section class="image-with-text testimonials preserve-3d">
<div class="go-left side-image col-md-6 col-sm-4">
<div class="background-image-holder">
<img class="background-image" alt="Susi Android" src="img/susi_android_a.png">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>SUSI.AI Android App</h1>
<p class="lead">
The Android app project of SUSI.AI enables users to use the Open Source personal Assistant with Android phones.<br>
[Technologies used: Python, Javascript, HTML, CSS, JSON, Rest-APIs]<br>
<div class="project-links">
<a href="https://chat.susi.ai/overview" target="_self" title="Website" class="fa fa-link"></a>
<a href="https://groups.google.com/forum/#!forum/susiai" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/susi_android" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia/susi_android" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/asksusiai/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/susiai_" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="SUSI_iOS" class="in-page-link"></a>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">SUSI.AI iOS</h1>
<p class="lead text-white">
The SUSI iOS app projects enables users to run SUSI.AI on their Apple smartphone.. At <a href="http://susi.ai" target="_self">SUSI.AI</a> we are using big data to provide a personal assistant for users. SUSI.ai can be used inside chat applications like messengers as well as mobile Android apps and iOS apps.<br>[Technologies used: NodeJS, ExpressJS, APIs, Facebook, Slack, Messenger Services, Javascript, HTML, CSS]<br>
<div class="project-links">
<a href="https://susi.ai" target="_self" title="Website" class="fa fa-link"></a>
<a href="https://groups.google.com/group/susiai" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://github.com/fossasia?utf8=✓&q=susi" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/asksusiai/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/susiai_" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
<div class="project-links">
<div style="padding: 0.5rem 1rem;">Chat Channels : </div>
<a href="https://gitter.im/fossasia/susi_server" target="_self" title="Chat Channel - Server" class="fa fa-server"></a>
<a href="https://gitter.im/fossasia/susi_android" target="_self" title="Chat Channel - Android" class="fa fa-android"></a>
<a href="https://gitter.im/fossasia/susi_iOS" target="_self" title="Chat Channel - iOS" class="fa fa-apple"></a>
</div>
</p>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="SUSI.AI IOS " style="width="100%"; src="img/susi_ios.png">
</div>
</div>
</section>
<a id="pocketscience" class="in-page-link"></a>
<section class="image-with-text testimonials preserve-3d">
<div class="go-left side-image col-md-6 col-sm-4">
<div class="background-image-holder">
<img class="background-image" alt="Pocket Science" src="img/pocketscience.jpg">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Pocket Science Lab</h1>
<p class="lead">
Pocket Science Lab is a project to enable open source science experiments and data acquisition systems for physics education and research. We want to enable citizien scientists around the world and offer the software tools and hardware layouts to start finding answers for the most urgent problems of the planet.<br>
[Technologies used: Python, Javascript, HTML, CSS, JSON, Rest-APIs]<br>
<div class="project-links">
<a href="http://pslab.io" target="_self" title="Website" class="fa fa-link"></a>
<a href="https://groups.google.com/group/fossasia-pslab" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/pslab" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia?utf8=✓&q=pslab" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/pslabapp/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/pslabapp" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="pslab-hardware" class="in-page-link"></a>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">PSLab Hardware</h1>
<p class="lead text-white">
In the PSLab hardware project engineers and developers collaborate to develop an Open Source Science device with a number of instruments to conduct scientific experiments.<br>[Technologies used: Python, Flask, Javascript, HTML, CSS, JSON, Rest-APIs, Swagger]<br>
<div class="project-links">
<a href="https://pslab.io/" target="_self" title="Test Site" class="fa fa-link"></a>
<a href="https://groups.google.com/forum/#!forum/pslab-fossasia" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/pslab" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia/pslab.io" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/pslabapp/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/pslabapp" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">Facebook
<img class="background-image" alt="Open Event" src="img/pslab.png">
</div>
</div>
</section>
<section class="image-with-text testimonials preserve-3d">
<div class="go-left side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="Open Event Organizer App" src="img/open-event-orga-app.png">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-offset-7 col-sm-7 col-sm-offset-5 col-md-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Pocket Science Lab Android App</h1>
<p class="lead">
The goal of the app is to enable Android users to conduct experiments using the PSLab Hardware and their phone.<br>[Technologies used: Node.js, Ionic Framework v2, Angular 2, Apache Cordova, Gulp]<br>
<div class="project-links">
<a href="https://github.com/fossasia/open-event-orga-app/raw/apk/test-android-debug.apk" target="_self" title="Test App" class="fa fa-android"></a>
<a href="https://groups.google.com/group/open-event" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/open-event-orga-app" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia/open-event-orga-app" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/eventyay/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/eventyay" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="neuroflight" class="in-page-link"></a>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">Neurolab Android</h1>
<p class="lead text-white">
Neurolab Android is the Android app for the Neurolab Hardware. Neurolab's goal is to produce an easy-to-use open-hardware measurement headset for brainwaves that can be connected to the app, letting us better understand our brains.<br>[Technology used: YAML]<br>
<div class="project-links">
<a href="https://github.com/fossasia/neurolab-android" target="_self" title="Contribute" class="fa fa-github"></a>
</div>
</p>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="Neurolab Resource" src="https://raw.githubusercontent.com/fossasia/neurolab-desktop/master/src/main/resources/universe1.png">
</div>
</div>
</section>
<a id="neuro-pslab" class="in-page-link"></a>
<section class="image-with-text testimonials preserve-3d">
<div class="go-left side-image col-md-6 col-sm-4">
<div class="background-image-holder">
<img class="background-image" alt="Neurolab Resource" src="https://raw.githubusercontent.com/fossasia/neurolab-desktop/master/src/main/resources/universe2.png">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Neurolab Hardware</h1>
<p class="lead">
Neurolab Hardware is used in the development of a neuro-device to collect brainwaves as a headband with integrated electronics.
[Technologies used: KiCad, DICOM]<br>
<div class="project-links">
<a href="https://github.com/fossasia/neurolab-hardware" target="_self" title="Contribute" class="fa fa-github"></a>
</div>
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="open-event" class="in-page-link"></a>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">Open Event</h1>
<p class="lead text-white">
The FOSSASIA Open Event Project makes it easier for events, conferences, tech summits, concerts to create a website, sell tickets and generate an Android app.<br>[Technologies used: Python, Flask, Javascript, HTML, CSS, JSON, Rest-APIs, Swagger]<br>
<div class="project-links">
<a href="http://open-event-dev.herokuapp.com" target="_self" title="Test Site" class="fa fa-link"></a>
<a href="https://groups.google.com/group/open-event" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/open-event-server" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia/open-event-server" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/eventyay/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/eventyay" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">Facebook
<img class="background-image" alt="Open Event" src="img/open-event.jpg">
</div>
</div>
</section>
<section class="image-with-text testimonials preserve-3d">
<div class="go-left side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="Open Event Organizer App" src="img/open-event-orga-app.png">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-offset-7 col-sm-7 col-sm-offset-5 col-md-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Open Event Organizer Android App</h1>
<p class="lead">
The main feature of the app is to check in attendees by scanning a QR code and to keep the ticket status in sync with the orga server data.<br>[Technologies used: Node.js, Ionic Framework v2, Angular 2, Apache Cordova, Gulp]<br>
<div class="project-links">
<a href="https://github.com/fossasia/open-event-orga-app/raw/apk/test-android-debug.apk" target="_self" title="Test App" class="fa fa-android"></a>
<a href="https://groups.google.com/group/open-event" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/open-event-orga-app" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia/open-event-orga-app" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/eventyay/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/eventyay" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">Open Event Attendee App</h1>
<p class="lead text-white">
The Open Event Attendee App is a web application for attendees of events.<br>[Technologies used: Javascript, HTML, CSS, JSON, Rest-APIs, Scripts]<br>
<div class="project-links">
<a href="http://opev-webgen-dev.herokuapp.com/" target="_self" title="Test Site" class="fa fa-link"></a>
<a href="https://groups.google.com/group/open-event" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/open-event-webapp" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia/open-event-webapp" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/eventyay/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/eventyay" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="Open Event" src="img/webapp.png">
</div>
</div>
</section>
<section class="image-with-text testimonials preserve-3d">
<div class="go-left side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="Open Event Android" src="img/OpenEventAndroidApp.jpg">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-offset-7 col-sm-7 col-sm-offset-5 col-md-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Open Event Android App Generator</h1>
<p class="lead">
The Open Event Android App Generator consists of 2 main parts - the app generator itself that creates apps and the Android app for browsing any event. The generator can be installed as a stand alone application or integrated as a microservice into the Open Event Server. Updates to content of events are done automatically through Rest-APIs of the server.<br>[Technologies used: Java, Shell Script, Python, Javascript, HTML, CSS, JSON, Rest-APIs, Android SDK]<br>
<div class="project-links">
<a href="http://droidgen.eventyay.com" target="_self" title="Test Site" class="fa fa-link"></a>
<a href="https://groups.google.com/group/open-event" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/open-event-android" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia/open-event-android" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/eventyay/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/eventyay" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">Open Event Web App Generator</h1>
<p class="lead text-white">
The Open Event Web App is a web application that can generate event websites by getting data from JSON files and media files, that are stored in a compressed zip file. You can also access the application through a Rest API. Websites that are generated by the "web app generator" can be uploaded to any web location, e.g. on Github pages or any server (e.g. via ftp).<br>[Technologies used: Javascript, HTML, CSS, JSON, Rest-APIs, Scripts]<br>
<div class="project-links">
<a href="http://opev-webgen-dev.herokuapp.com/" target="_self" title="Test Site" class="fa fa-link"></a>
<a href="https://groups.google.com/group/open-event" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/open-event-webapp" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia/open-event-webapp" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/eventyay/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/eventyay" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="Open Event" src="img/webapp.png">
</div>
</div>
</section>
<a id="badgeyay" class="in-page-link"></a>
<section class="image-with-text background-dark preserve-3d">
<div class="go-left side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="query-server" src="img/Badgeyay.png">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
<h1 class="text-white">Badgeyay</h1>
<p class="lead text-white">
Badgeyay is a simple badge generator with a simple web UI to add data and generate printable badges in a zip. The user should be able to Choose size of badges, Choose background of badges and upload logo and background image and should Upload a CSV file or manually enter CSV data as name, type of attendee, nick/handle, organization/project<br>[Technologies used: Flask, Bootstrap, Shell, Heroku, Travis, Github Release]<br>
<div class="project-links">
<a href="https://badgeyay-dev.herokuapp.com/" target="_self" title="Heroku App" class="fa fa-rocket"></a>
<a href="https://groups.google.com/forum/#!forum/fossasia" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/badgeyay" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia/badgeyay" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/pslabapp/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/pslabapp" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</div>
</div>
</div>
</section>
<a id="phimpme" class="in-page-link"></a>
<section class="image-with-text testimonials preserve-3d">
<div class="go-left side-image col-md-6 col-sm-4">
<div class="background-image-holder">
<img class="background-image" alt="PhimpMe" src="img/phimpme.jpg">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>phimp.me Android App</h1>
<p class="lead">
The idea of the phimp.me project is to enable users to easily enhance and upload their photos through the phimp.me Android app to any social media and open source web app like Wordpress, Drupal and Joomla. We develop the Android app and plugins for content management systems.<br>
[Technologies used: Web Technologies, PHP, Java, Android SDK, HTML, CSS, APIs]<br>
<div class="project-links">
<a href="http://phimp.me" target="_self" title="Website" class="fa fa-link"></a>
<a href="https://groups.google.com/group/phimpme" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/phimpme/" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia?utf8=✓&q=phimpme" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/phimpmeapp/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/phimpme" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="loklak" class="in-page-link"></a>
<section class="image-with-text testimonials preserve-3d">
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="loklak" src="img/loklak.jpg">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Loklak</h1>
<p class="lead">
Distributed Social Media Message Search Server. Collect, search, download and visualize messages from various sources: tweets, youtube descriptions and from more social media sources.<br>[Technologies used: Java, Javascript, Angular, Node, HTML, CSS, JSON, Rest-APIs, Elastic Search, Kibana]<br>
<div class="project-links">
<a href="http://loklak.org" target="_self" title="Test Site" class="fa fa-link"></a>
<a href="http://blog.loklak.net" target="_self" title="Blog" class="fa fa-rss"></a>
<a href="https://groups.google.com/group/opntec-dev" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/loklak/loklak" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia?utf8=✓&q=loklak" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/loklak.org/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/loklak_" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="query-server" class="in-page-link"></a>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">Query Server</h1>
<p class="lead text-white">
Query server stores a query string on a server. The query string calls the search engine result scraper scraper.py that is based on the scraper at searss. This scraper takes search engine, presently Google, Bing, DuckDuckGo and Yahoo as additional input and searches on that search engine. The output from the scraper, which can be in XML or in JSON depending on the API parameters is returned, while the search query is stored into MongoDB database. <br>[Technologies used: Flask, MongoDB, PrismJS, BeautifulSoup]<br>
<div class="project-links">
<a href="https://query-server.herokuapp.com" target="_self" title="Heroku App" class="fa fa-rocket"></a>
<a href="https://groups.google.com/forum/#!forum/fossasia" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/query-server" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia/query-server" target="_self" title="Contribute" class="fa fa-github"></a>
</div>
</p>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="query-server" src="img/query-server.jpg">
</div>
</div>
</section>
<a id="search-engine" class="in-page-link"></a>
<section class="image-with-text testimonials preserve-3d">
<div class="go-left side-image col-md-6 col-sm-4">
<div class="background-image-holder">
<img class="background-image" alt="Susper Search Engine" src="img/susper.png">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Susper Search Engine</h1>
<p class="lead">
Susper is a decentralised search engine using the peer to peer search technology of yacy and search engine applications like Apache Solr. <br>[Technologies used: Yacy, Apache Solr, Angular2, TypeScript, HTML, CSS, JSON]<br>
<div class="project-links">
<a href="http://susper.com" target="_self" title="Website" class="fa fa-link"></a>
<a href="https://groups.google.com/group/opntec-dev" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/susper.com/" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia/susper.com" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/suspersearch/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/Susper_" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="linux" class="in-page-link"></a>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">Meilix</h1>
<p class="lead text-white">
A beautiful and customizable Linux build for out of the box features for an Internet Kiosk.
You can use the Meilix Generator (Web app) to make a Linux for your own brand/event, also add apps and features you need pre-installed,
it will create an ISO Image of your Linux, which you can use as a live boot or install on PCs.
<div class="project-links">
<a href="https://groups.google.com/group/meilix" target="_self" title="Mailing List" class="fa fa-envelope"></a>
<a href="https://gitter.im/fossasia/meilix" target="_self" title="Chat Channel" class="fa fa-comments"></a>
<a href="https://github.com/fossasia?utf8=✓&q=meilix" target="_self" title="Contribute" class="fa fa-github"></a>
<a href="https://www.facebook.com/meilixsystem/" target="_self" title="Facebook Profile" class="fa fa-facebook"></a>
<a href="https://twitter.com/meilix_" target="_self" title="Twitter Profile" class="fa fa-twitter"></a>
</div>
</p>
</div>
</div>