forked from fossasia/2018.codeheat.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2624 lines (2436 loc) · 98.5 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">
<meta charset="utf-8">
<title>Codeheat Coding Contest of FOSSASIA | Asia's Open Technology Organization, Open Hardware, Free Software, Open Design, Open Data
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Code Heat Coding Contest - Open Source, Big Data, Design Thinking and Free Knowledge Tools with Asia's Premier Open Technology Organization">
<meta name="keywords" content="Code Heat, Coding Contest, FOSSASIA, FOSS, Free and Open Source Software,Asia">
<meta name="author" content="FOSSASIA">
<meta property="og:title" content="Code Heat Coding Contest of FOSSASIA" />
<meta property="og:type" content="website" />
<meta property="og:image" content="" />
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@fossasia">
<meta name="twitter:title" content="Code Heat">
<meta name="twitter:description" content="Code Heat Coding Contest of FOSSASIA">
<meta name="twitter:creator" content="@fossasia">
<meta name="twitter:image" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="code-logo.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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-sulphur.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/custom.css" rel="stylesheet" type="text/css" media="all" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" type="text/css"
media="all">
<link href='http://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', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-17146009-9', '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/logo.png">
<img alt="FOSSASIA" class="logo logo-dark" src="img/logo-dark.png">
</a>
</div>
<div class="col-md-10 text-right">
<ul class="menu">
<li class="has-dropdown">
<a href="#about" class="inner-link" target="_self">About</a>
<ul class="nav-dropdown">
<li>
<a href="https://fossasia.org.org" target="_self">FOSSASIA.org</a>
</li>
<li>
<a href="https://codeheat.org" target="_self">Codeheat 2019</a>
</li>
<li>
<a href="https://2018.codeheat.org" target="_self">Codeheat 2018</a>
</li>
<li>
<a href="https://2017.codeheat.org" target="_self">Codeheat 2017</a>
</li>
<li>
<a href="https://2016.codeheat.org" target="_self">Codeheat 2016</a>
</li>
</ul>
</li>
<li>
<a class="inner-link" href="#timeline" target="_self">Timeline</a>
</li>
<li>
<a class="inner-link" href="#winners" target="_self">Winners</a>
</li>
<li>
<a class="inner-link" href="#jury" target="_self">Jury</a>
</li>
<li>
<a class="inner-link" href="#mentors" target="_self">Mentors</a>
</li>
<li class="has-dropdown">
<a href="#projects" class="inner-link" target="self">Projects</a>
<ul class="nav-dropdown" style="min-height:325px">
<li>
<a href="https://github.com/fossasia" target="_self">FOSSASIA Github</a>
</li>
<li>
<a href="https://github.com/fossasia?utf8=✓&q=open-event" target="_self">Open Event project</a>
</li>
<li>
<a href="https://github.com/fossasia?utf8=%E2%9C%93&q=susi" target="_self">SUSI.AI</a>
</li>
<li>
<a href="https://github.com/fossasia/phimpme-android" target="_self">Phimp.me</a>
</li>
<li>
<a href="https://github.com/fossasia?utf8=%E2%9C%93&q=pslab" target="_self">Pocket Science Lab</a>
</li>
<li>
<a href="https://github.com/fossasia?utf8=%E2%9C%93&q=meilix" target="_self">Meilix</a>
</li>
<li>
<a href="https://github.com/fossasia/susper.com" target="_self">Susper Search</a>
</li>
<li>
<a href="https://github.com/fossasia/yaydoc" target="_self">Yaydoc</a>
</li>
<li>
<a href="https://github.com/fossasia/MMM-SUSI-AI" target="_self">SUSI.AI Magic Mirror</a>
</li>
<li>
<a href="https://github.com/fossasia/badgeyay" target="_self">Badgeyay</a>
</li>
</ul>
</li>
<li>
<a class="inner-link" href="#faq" target="_self">FAQ</a>
</li>
<li>
<a class="inner-link" href="http://blog.fossasia.org/tag/codeheat/" target="_self">Blog</a>
</li>
<li class="social-link">
<a href="https://twitter.com/codeheat_" target="_self">
<i class="icon social_twitter"></i>
</a>
</li>
<li class="social-link">
<a href="https://www.facebook.com/codeheat.org/" target="_self">
<i class="icon social_facebook"></i>
</a>
</li>
<!-- <li class="has-dropdown">
<a href="/" class="inner-link" target="_self">EN</a>
<ul class="nav-dropdown">
<li>
<a href="index_cn.html" target="_self">汉语</a>
</li>
</ul>
</li> -->
</ul>
<div class="mobile-menu-toggle">
<i class="icon icon_menu"></i>
</div>
</div>
</div>
</div>
<div class="bottom-border"></div>
<div class="sidebar-menu">
<img alt="Logo" class="logo" src="img/logo.png">
<div class="bottom-border"></div>
<div class="sidebar-content">
<div class="widget">
<ul class="menu">
<li>
<a class="inner-link" href="#top">Home</a>
</li>
<li>
<a class="inner-link" href="#projects">Projects</a>
</li>
<li>
<a class="inner-link" href="#timeline">Timeline</a>
</li>
<li>
<a class="inner-link" href="#mentors">Mentors</a>
</li>
<li>
<a class="inner-link" href="#faq">FAQ</a>
</li>
</ul>
</div>
<div class="widget">
<ul class="social-profiles">
<li>
<a href="https://twitter.com/codeheat_">
<i class="icon social_twitter"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/codeheat.org/">
<i class="icon social_facebook"></i>
</a>
</li>
</ul>
</div>
<div class="copy-text">
<span>© Copyright 2018 FOSSASIA</span>
</div>
</div>
</div>
</nav>
</div>
<div class="main-container">
<section class="hero-slider">
<ul class="slides">
<li class="video-header">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Code Heat" src="img/codeheat2018.jpg">
</div>
<div class="video-wrapper">
<video autoplay="" muted="" loop="">
<source src="video/video.webm" type="video/webm">
<source src="video/video.mp4" type="video/mp4">
<source src="video/video.ogv" type="video/ogg">
</video>
</div>
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-sm-10 col-sm-offset-1 text-center col-md-8">
<img alt="logo" class="logo" src="img/fossasia-squarewhite-path.png">
<span class="uppercase text-white">CodeHeat Runs From September 10th, 2018 to February 1st, 2019</span>
<h1 class="large-h1 text-white">{In the Heat of the Code}
<br>
<br>Build up your developer profile with FOSSASIA and win a trip to our summit in Singapore from March 14 - 17, 2019
<br>
</h1>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfhIZHnDIFwHZjRHrp1LmzcBE5eaAtudCFgQKEoFwxb229Ulw/viewform" class="btn"
target="_blank">Register for Code Heat</a>
<a href="#about" class="btn btn-hollow inner-link" target="_self">Learn More</a>
</div>
</div>
</div>
</li>
</ul>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-sm-3">
<h2>700+ participants</h2></a><br>
<p>
700 registered in the Codeheat contest 2018/19 and learnt how to participate in the FOSSASIA developer community.
</p>
</div>
<div class="col-sm-5">
<h2>2000+ merged pull requests</h2><br>
<p>
More than 2000 pull requests were merged during the contest. Participants also submitted scrum reports, wrote blog posts and created entirely new projects in the FOSSASIA community.
</p>
</div>
<div class="col-sm-4">
<a class="inner-link" href="#mentors" target="_self"><h2>35 mentors</h2></a><br>
<p>
Mentors are developers, engineers, university students, professors, and generally contributors who love to share and be a part of our open source community. They help creating better software for a better and just world.
</p>
</div>
</div>
</div>
</section>
<a id="winners" class="in-page-link"></a>
<section class="speakers duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Grand Prize Winners</h1>
</div>
</div>
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Shubham Gupta" src="img/ShubhamGupta.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://twitter.com/Shubham81150975" target="_blank">
<i class="icon social_twitter"></i>
</a>
<a href="https://github.com/fragm3" target="_blank">
<i class="icon fa fa-github"></i>
</a>
<a href="https://www.facebook.com/thesisexpert" target="_blank">
<i class="icon social_facebook"></i>
</a>
<a href="https://www.linkedin.com/in/shubham-gupta97/" target="_blank">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Shubham Gupta</span>
<span>Developer at FOSSASIA</span>
</div>
</div>
<div class="col-md-3 col-sm-6 col-md-offset-1 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Harshit Khandelwal" src="img/HarshitKhandelwal.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/liveHarshit" target="_blank">
<i class="icon fa fa-github"></i>
</a>
<a href="https://twitter.com/liveHarshit26" target="_blank">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.facebook.com/live.harshit26" target="_blank">
<i class="icon social_facebook"></i>
</a>
<a href="https://www.linkedin.com/in/liveharshit/" target="_blank">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Harshit Khandelwal</span>
<span>Developer at FOSSASIA, LNMIIT Jaipur</span>
</div>
</div>
<div class="col-md-3 col-sm-6 col-md-offset-1 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Aakash S. Mallik" src="img/AakashMallik.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://twitter.com/npm_start" target="_blank">
<i class="icon social_twitter"></i>
</a>
<a href="https://github.com/AakashMallik" target="_blank">
<i class="icon fa fa-github"></i>
</a>
<a href="https://www.facebook.com/humble.discipulus" target="_blank">
<i class="icon social_facebook"></i>
</a>
<a href="https://www.linkedin.com/in/aakash-mallik-5b8198132/" target="_blank">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Aakash S. Mallik</span>
<span>Contributor at FOSSASIA</span>
</div>
</div>
</div>
</section>
<a id="finalists" class="in-page-link"></a>
<section class="speakers duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Finalist Winners</h1>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Pranav Kulshrestha" src="img/PranavKulshrestha.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/pranav1698">
<i class="icon fa fa-github"></i>
</a>
<a href="https://www.facebook.com/pranav.kulshrestha.73">
<i class="icon social_facebook"></i>
</a>
<a href="https://twitter.com/PranavKulshres3">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.linkedin.com/in/pranav-kulshrestha-a7ba47145/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Pranav Kulshrestha</span>
<span>Developer at FOSSASIA</span>
</div>
</div>
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Shridhar Goel" src="img/ShridharGoel.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/ShridharGoel">
<i class="icon fa fa-github"></i>
</a>
<a href="https://www.facebook.com/shridhar.goel">
<i class="icon social_facebook"></i>
</a>
<a href="https://twitter.com/shridhargoel">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.linkedin.com/in/ShridharGoel">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Shridhar Goel</span>
<span>Developer at FOSSASIA</span>
</div>
</div>
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Aditya Srivastava" src="img/AdityaSrivastava.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/AdityaSrivast">
<i class="icon fa fa-github"></i>
</a>
<a href="https://www.facebook.com/aditya.srivastav.338">
<i class="icon social_facebook"></i>
</a>
<a href="https://twitter.com/AdityaSrivast_">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.linkedin.com/in/adityasrivast/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Aditya Srivastava</span>
<span>Developer at FOSSASIA</span>
</div>
</div>
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Yogesh Sharma" src="img/YogeshSharma.jpeg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/YogeshSharma0201">
<i class="icon fa fa-github"></i>
</a>
<a href="https://www.facebook.com/yogesh0201sharma">
<i class="icon social_facebook"></i>
</a>
<a href="https://twitter.com/yogeshSh0201">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.linkedin.com/in/yogesh-sharma-02011998/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Yogesh Sharma</span>
<span>Developer at FOSSASIA</span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Samagra Gupta" src="img/Samagra_Gupta.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/samagragupta">
<i class="icon fa fa-github"></i>
</a>
<a href="https://www.facebook.com/kool.samagra.gupta">
<i class="icon social_facebook"></i>
</a>
<a href="https://twitter.com/Samagra14">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.linkedin.com/in/samagragupta/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Samagra Gupta</span>
<span>Developer at FOSSASIA and IIIT- Vadoadra</span>
</div>
</div>
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Shubham Kumar" src="img/ShubhamKumar.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/sk9331657">
<i class="icon fa fa-github"></i>
</a>
<a href="https://www.facebook.com/shubham.dhimam.007">
<i class="icon social_facebook"></i>
</a>
<a href="https://twitter.com/shubham08041452">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.linkedin.com/in/shubham-kumar-446224120/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Shubham Kumar</span>
<span>Developer at FOSSASIA</span>
</div>
</div>
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Raj Vaibhav Dubey" src="img/Raj.jpeg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/rajvaibhavdubey">
<i class="icon fa fa-github"></i>
</a>
<a href="https://www.facebook.com/rajvaibhav.dubey">
<i class="icon social_facebook"></i>
</a>
<a href="https://twitter.com/rajvaibhavdubey">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.linkedin.com/in/rajvaibhavdubey/">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Raj Vaibhav Dubey</span>
<span>Developer at FOSSASIA</span>
</div>
</div>
</div>
</div>
</div>
</section>
<a id="sponsors" class="in-page-link"></a>
<section class="sponsors">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1>Proudly supported by</h1>
</div>
</div>
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="col-md-offset-2 col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://opntec.org" target="_self">
<img alt="OpenTechSociety" src="img/logo_opntec.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://fossasia.org" target="_self">
<img alt="FOSSASIA" src="img/fossasia.png">
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 text-center">
<span>Interested in becoming a partner or sponsor?
<a href="mailto:[email protected]" target="default">Get in touch</a>
</span>
</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</h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Open Event" src="img/eventyay.jpg">
<h3>Open Event</h3>
<p>Make Open Event useful for events and meetups and help to release a successful event management and ticketing tool for communities.</p><div><br><br><br><br></div>
<div class="text-link">
<a href="http://eventyay.com" target="_self">Website</a>
<a href="https://gitter.im/fossasia/open-event-server" target="_self">Chat </a>
<a href="https://groups.google.com/group/open-event" target="_self">Mailing List</a>
<a href="https://github.com/fossasia?utf8=✓&q=open-event" target="_self">Repositories</a>
<a href="https://play.google.com/store/apps/details?id=com.eventyay.attendee" target="_self">Eventyay Attendee App</a>
<a href="https://play.google.com/store/apps/details?id=com.eventyay.organizer" target="_self">Eventyay Organizer App</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="phimpme" src="img/phimpme.jpg">
<h3>Phimp.me</h3>
<p>Phimp.me is an image application for Android that does not miss out on features. Help to make the app more stable and support more social accounts in the app.</p><div><br><br><br></div>
<div class="text-link">
<a href="https://phimp.me" target="_self">Website</a>
<a href="https://gitter.im/fossasia/phimpme" target="_self">Chat</a>
<a href="http://groups.google.com/group/phimpme/" target="_self">Mailing List</a>
<a href="https://github.com/fossasia/phimpme-android" target="_self">Repository</a>
<a href="https://play.google.com/store/apps/details?id=org.fossasia.phimpme" target="_self">Organizer Android App</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="SUSI.AI" src="img/asksusi.png">
<h3>SUSI.AI</h3>
<p>Apart from progressing on the issues on the different SUSI.AI repositories, we want to focus on the development of the chat app and Skills editor. Another goal is to plugin SUSI to all kinds of web applications.</p><div><br><br><br></div>
<div class="text-link">
<a href="http://susi.ai" target="_self">Website</a>
<a href="https://gitter.im/fossasia/susi_server" target="_self">Chat</a>
<a href="http://groups.google.com/group/susiai/" target="_self">Mailing List</a>
<a href="https://github.com/fossasia?utf8=%E2%9C%93&q=susi" target="_self">Repositories</a>
<a href="https://play.google.com/store/apps/details?id=ai.susi" target="_self">Android App</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Susper Search" src="img/susper.png">
<h3>Susper Search</h3>
<p>Susper is a distributed Peer to Peer search engine using Yacy and Elastic Search. The front-end uses Angular JS and HTML as web technologies and Material UI as a design component. Our goal is to create a great standard UI for the web frontend.</p></p><div><br><br><br></div>
<div class="text-link" style="margin-right: 15%">
<a href="http://susper.com" target="_self">Website</a>
<a href="https://gitter.im/fossasia/susper.com" target="_self">Chat</a>
<a href="https://groups.google.com/forum/#!forum/opntec-dev" target="_self">Mailing List</a>
<a href="https://github.com/fossasia/susper.com" target="_self">Repository</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Meilix" src="img/meilix.jpg">
<h3>Meilix</h3>
<p>Meilix is a beautiful Linux distribution based on Debian and lubuntu using LXQT and other lightweight applications. With the Meilix generator users can generate their own customized Meilix version for events, kiosk systems or home use.</p></p><div><br><br><br></div>
<div class="text-link" style="margin-right: 15%">
<a href="https://meilix.fossasia.org" target="_self">Website</a>
<a href="https://gitter.im/fossasia/meilix" target="_self">Chat</a>
<a href="http://groups.google.com/group/meilix/" target="_self">Mailing List</a>
<a href="https://github.com/fossasia?utf8=✓&q=meilix" target="_self">Repositories</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="PSlab" src="img/pslab.jpg">
<h3>PSLab</h3>
<p>The goal of Pocket Science Lab is to miniaturize science equipment and make it accessible for everyone. The PSLab project includes Open Source hardware and software applications for desktop and mobiles. We want to enable students and anyone interested in Citizen Science to conduct experiments.</p>
<div><br><br><br></div>
<div class="text-link">
<a href="https://pslab.io" target="_self">Website</a>
<a href="https://gitter.im/fossasia/pslab" target="_self">Chat</a>
<a href="https://groups.google.com/forum/#!forum/pslab-fossasia" target="_self">Mailing List</a>
<a href="https://github.com/fossasia?utf8=✓&q=pslab" target="_self">Repositories</a>
<a href="https://play.google.com/store/apps/details?id=io.pslab" target="_self">Android App</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Yaydoc" src="img/yaydoc.png">
<h3>Yaydoc</h3>
<p>Yaydoc is a documentation generator for Git and GitHub projects generating a complete website with search capabilities and automatic deployment on each merged pull request.</p></p><div><br><br><br></div>
<div class="text-link" style="margin-right: 15%">
<a href="http://yaydoc.org" target="_self">Website</a>
<a href="https://gitter.im/fossasia/yaydoc" target="_self">Chat</a>
<a href="http://groups.google.com/group/yaydoc/" target="_self">Mailing List</a>
<a href="https://github.com/fossasia/yaydoc" target="_self">Repository</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Badgeyay" src="img/badgeyay.jpg">
<h3>Badgeyay</h3>
<p>At every event the same question comes up "how to print out badges". There are a number of proprietary websites out there, by why not create our own automatic badge generator for events?</p></p><div><br><br><br></div>
<div class="text-link" style="margin-right: 15%">
<a href="https://badgeyay.com" target="_self">Website</a>
<a href="https://gitter.im/fossasia/badgeyay" target="_self">Chat</a>
<a href="http://groups.google.com/group/badgeyay/" target="_self">Mailing List</a>
<a href="https://github.com/fossasia/badgeyay" target="_self">Repository</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Badge Magic" src="img/badge-magic.jpg">
<h3>Badge Magic</h3>
<p>Badge Magic is an Android app to control LED name badges using a Bluetooth connection.</p></p><div><br><br></div>
<div class="text-link" style="margin-right: 15%">
<a href="https://gitter.im/fossasia/badge-magic" target="_self">Chat</a>
<a href="https://github.com/fossasia/badge-magic-android" target="_self">Repository</a>
</div>
</div>
</div>
</div>
</div>
</section>
<a id="about" 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-sm-7 col-md-7">
<h1 class="text-white">About "In the Heat of the Code"</h1>
<p class="lead text-white">
In the Heat of the Code is a coding contest for
<a href="https://github.com/fossasia/" target="_self">FOSSASIA projects on GitHub</a>.
<br>
<br> The contest runs until 1st February 2019. Grand prize winners will be invited to present their work at the
<a href="https://2019.fossasia.org" target="_self">FOSSASIA OpenTechSummit</a> in Singapore from March 14th -17th 2019 and will get up to 600 SGD in travel funding to attend, plus a free speaker ticket.
<br>
<br> Our jury will choose three winners from the top 10 contributors according to code quality and relevance of commits for the project. The jury also takes other contributions like submitted scrum reports and technical blog posts into account, but of course awesome code is the most important item on the list.
<br>
<br> Other participants will have the chance to win Tshirts, Swag and vouchers to attend Open Tech events in the region and will get certificates of participation.
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfhIZHnDIFwHZjRHrp1LmzcBE5eaAtudCFgQKEoFwxb229Ulw/viewform" target="_self">Sign up here now</a>
</p>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-4">
<div class="background-image-holder">
<img class="background-image" alt="About Image" src="img/DSC_0446_0.JPG">
</div>
</div>
</section>
<a id="jury" class="in-page-link"></a>
<section class="speakers duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Jury</h1>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Mario Behling" src="img/mariobehling.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/mariobehling">
<i class="icon fa fa-github"></i>
</a>
<a href="https://twitter.com/mariobehling" target="default">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.facebook.com/mariobehling">
<i class="icon social_facebook"></i>
</a>
<a href="https://www.linkedin.com/in/mariobehling" target="_self">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Mario Behling</h2>
<span class="sub">Founder SUSI.AI/FOSSASIA</span>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Hong Phuc Dang" src="img/hongphucdang.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/hpdang">
<i class="icon fa fa-github"></i>
</a>
<a href="https://twitter.com/hpdang" target="_self">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.facebook.com/hpdang">
<i class="icon social_facebook"></i>
</a>
<a href="https://www.linkedin.com/in/hongphucdang" target="_self">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Hong Phuc Dang</h2>
<span class="sub">FOSSASIA Founder</span>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Michael Christen" src="img/MichaelChristen.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/Orbiter">
<i class="icon fa fa-github"></i>
</a>
<a href="https://twitter.com/0rb1t3r" target="_self">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.linkedin.com/in/orbiter" target="_self">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Michael Christen</h2>
<span class="sub">Founder SUSI.AI</span>
</div>
</div>
</div>
</div>
</div>
</section>
<a id="mentors" class="in-page-link"></a>
<section class="speakers duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Mentors</h1>
</div>
</div>
<!--
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Niranjan Rajendran" src="img/NiranjanRajendran.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/niranjan94">
<i class="icon fa fa-github"></i>
</a>
<a href="https://www.facebook.com/niranjan94">
<i class="icon social_facebook"></i>
</a>
</a>
<a href="https://twitter.com/niranjan94">
<i class="icon social_twitter"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Niranjan Rajendran</span>
<span>Developer at FOSSASIA</span>
</div>
</div>
-->
<div class="row">
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Quan Nguyen" src="img/QuanNguyen.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/hongquan/">
<i class="icon fa fa-github"></i>
</a>
<a href="https://www.facebook.com/ng.hong.quan">
<i class="icon social_facebook"></i>
</a>
<a href="https://twitter.com/ng_hongquan">
<i class="icon social_twitter"></i>
</a>
<a href="https://linkedin.com/in/bachkhois">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Quan Nguyen</span>
<span>Developer at FOSSASIA</span>
</div>
</div>
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Andre Rebentisch" src="img/AndreRebentisch.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a href="https://github.com/tabesin/">
<i class="icon fa fa-github"></i>
</a>
<a href="https://twitter.com/agonarch" target="_self">
<i class="icon social_twitter"></i>
</a>
<a href="https://www.linkedin.com/in/arebentisch/" target="_self">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
<span class="speaker-name">Andre Rebentisch</span>
<span>Senior Developer</span>
</div>
</div>
<!--
<div class="col-md-3 col-sm-6 speaker-column">
<div class="speaker">