-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
994 lines (880 loc) · 45.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>inGenius 2016</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/animate.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/lightbox.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link id="css-preset" href="css/presets/preset1.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link rel="stylesheet" href="css/simple-line-icons.css">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="images/favicon.ico">
</head><!--/head-->
<body>
<!--.preloader-->
<div class="preloader"> <i class="fa fa-circle-o-notch fa-spin"></i></div>
<!--/.preloader-->
<header id="home">
<div id="home-slider" class="carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-inner">
<div class="item active" style="background-image: url(images/ing1.jpg)">
<div class="caption">
<h1 class="animated fadeInLeftBig">Welcome to <span>inGenius 2016</span></h1>
<p class="animated fadeInRightBig">10th and 11th September 2016 | PESIT Bangalore South Campus</p>
<a data-scroll class="btn btn-start animated fadeInUpBig" href="#services">Know More</a>
</div>
</div>
<div class="item" style="background-image: url(images/ing2.jpg)">
<div class="caption">
<h1 class="animated fadeInLeftBig">You can win at <span>inGenius 2016</span></h1>
<p class="animated fadeInRightBig">Cash Prizes | Internships | Goodies</p>
<!--<a data-scroll class="btn btn-start animated fadeInUpBig" href="#services">Register</a>-->
</div>
</div>
<div class="item" style="background-image: url(images/slider/3.jpg)">
<div class="caption">
<h1 class="animated fadeInLeftBig">Learn & Enjoy at <span>inGenius 2016</span></h1>
<p class="animated fadeInRightBig">Industry Expert Mentors | Fun activities around</p>
<a data-scroll class="btn btn-start animated fadeInUpBig" href="https://www.instagram.com/ingeniushackathon/" target="_blank">inGenius 2015 Photos</a>
</div>
</div>
</div>
<a class="left-control" href="#home-slider" data-slide="prev"><i class="fa fa-angle-left"></i></a>
<a class="right-control" href="#home-slider" data-slide="next"><i class="fa fa-angle-right"></i></a>
<a id="tohash" href="#services"><i class="fa fa-angle-down"></i></a>
</div><!--/#home-slider-->
<div class="main-nav">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">
<h1><img class="img-responsive mainlogo" src="images/logo.png" alt="logo"></h1>
</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="scroll"><a href="#home">Home</a></li>
<!-- <li class="scroll"><a href="#services">About US</a></li> -->
<li class="scroll"><a href="#about-us">ACM</a></li>
<li class="scroll"><a href="#portfolio">Inspiration</a></li>
<li class="scroll"><a href="#pricing">Registration</a></li>
<li class="scroll"><a href="docs/brochure.pdf" target="_blank">Brochure</a></li>
<li class="scroll"><a href="#fh5co-faq">FAQ</a></li>
<li class="scroll"><a href="#contact">Contact Us</a></li>
</ul>
</div>
</div>
</div><!--/#main-nav-->
</header><!--/#home-->
<section id="services">
<div class="container">
<div class="heading wow fadeInUp" data-wow-duration="1000ms" data-wow-delay="300ms">
<div class="row">
<div class="text-center col-sm-8 col-sm-offset-2">
<h2>About inGenius 2016</h2>
<p class="larger">inGenius, the flagship event of PESIT South ACM, is an annual 24-hour hackathon. After four successful iterations, inGenius 2016 is back!</p>
</div>
</div>
</div>
<div class="text-center our-services">
<div class="row">
<div class="col-sm-4 wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="300ms">
<div class="service-icon">
<i class="fa fa-calendar"></i>
</div>
<div class="service-info">
<p class="smaller top-30">Mark your dates for <span class="text-info">10th - 11th September</span> 2016.</p>
</div>
</div>
<div class="col-sm-4 wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="450ms">
<div class="service-icon">
<i class="fa fa-camera-retro"></i>
</div>
<div class="service-info">
<p class="smaller top-30"><span class="text-info">Open Hack.</span> Thinking big? Think bigger! Come and blow our minds.</p>
</div>
</div>
<div class="col-sm-4 wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="550ms">
<div class="service-icon">
<i class="fa fa-clock-o " aria-hidden="true"></i>
</div>
<div class="service-info">
<p class="smaller top-30">The <span class="text-info">24 hour</span> event will feature mentors, food, games and a lot of fun.</p>
</div>
</div>
<div class="col-sm-4 wow fadeInUp" data-wow-duration="1000ms" data-wow-delay="650ms">
<div class="service-icon">
<i class="fa fa-coffee"></i>
</div>
<div class="service-info">
<p class="smaller top-30">Build and <span class="text-info">register</span> your team online, along with an abstract about your hack! </p>
</div>
</div>
<div class="col-sm-4 wow fadeInUp" data-wow-duration="1000ms" data-wow-delay="750ms">
<div class="service-icon">
<i class="fa fa-thumbs-o-up"></i>
</div>
<div class="service-info">
<p class="smaller top-30">Teams with the <span class="text-info">best hack ideas</span> get shortlisted.</p>
</div>
</div>
<div class="col-sm-4 wow fadeInUp" data-wow-duration="1000ms" data-wow-delay="850ms">
<div class="service-icon">
<i class="fa fa-ticket top-30"></i>
</div>
<div class="service-info">
<p class="smaller top-30">Shortlisted teams <span class="text-info">collect</span> tickets and gear up for the event!</p>
</div>
</div>
</div>
</div>
</div>
</section><!--/#services-->
<section id="about-us" class="parallax">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="about-info wow fadeInUp" data-wow-duration="1000ms" data-wow-delay="300ms">
<h2 class="text-center">About PESITSouth ACM Student Chapter</h2>
<p class="smaller">The Association for Computing Machinery is an international learned society for computing. It was founded in 1947 and is the world's largest scientific and educational computing society. It is a not-for-profit professional membership group. A Student chapter serves as a gateway to forums, panel discussions, and symposia that further a student's professional development. Preparation and presentation of technical reports and papers and cooperative efforts on research projects allow students to test their technical expertise. </p>
<p class="smaller">PESIT South ACM Student Chapter was started in 2007 by the Computer Science Department of PESIT South Campus. We also organise workshops, seminars and a couple of amazing events like inGenius (annual) and the Pursuit (bi-annual Online Treasure Hunt)!</p>
</div>
</div>
</div>
</div>
</section><!--/#about-us-->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="heading text-center col-sm-8 col-sm-offset-2 wow fadeInUp" data-wow-duration="1000ms" data-wow-delay="300ms">
<h2>Inspiration</h2>
<p class="larger">Feeling a little clueless on what to do? Feel free to check out these mind boggling hacks from the previous editions of inGenius and make sure you're back on track!</p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3">
<div class="folio-item wow fadeInRightBig" data-wow-duration="1000ms" data-wow-delay="300ms">
<div class="folio-image">
<img class="img-responsive" src="images/portfolio/1.jpg" alt="" >
</div>
<div class="overlay">
<div class="overlay-content">
<div class="overlay-text">
<div class="folio-info">
<h3 class="larger">Calorie App</h3>
</div>
<div class="folio-overview">
<span class="folio-link"></span>
<span class=""><a type="button" data-toggle="modal" data-target="#portfolio1">
<i class="fa fa-ellipsis-h"></i>
</a></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="folio-item wow fadeInLeftBig" data-wow-duration="1000ms" data-wow-delay="400ms">
<div class="folio-image">
<img class="img-responsive" src="images/portfolio/2.jpg" alt="" >
</div>
<div class="overlay">
<div class="overlay-content">
<div class="overlay-text">
<div class="folio-info">
<h3 class="larger">LEO (LEAD EMERGENCY OPERATIONS)</h3>
</div>
<div class="folio-overview">
<span class="folio-link"></span>
<span class=""><a type="button" data-toggle="modal" data-target="#portfolio2">
<i class="fa fa-ellipsis-h"></i>
</a></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="folio-item wow fadeInRightBig" data-wow-duration="1000ms" data-wow-delay="500ms">
<div class="folio-image">
<img class="img-responsive" src="images/portfolio/3.jpg" alt="">
</div>
<div class="overlay">
<div class="overlay-content">
<div class="overlay-text">
<div class="folio-info">
<h3 class="larger">Jarvis</h3>
</div>
<div class="folio-overview">
<span class="folio-link"></span>
<span class=""><a type="button" data-toggle="modal" data-target="#portfolio3">
<i class="fa fa-ellipsis-h"></i>
</a></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="folio-item wow fadeInLeftBig" data-wow-duration="1000ms" data-wow-delay="600ms">
<div class="folio-image">
<img class="img-responsive" src="images/portfolio/4.jpg" alt="">
</div>
<div class="overlay">
<div class="overlay-content">
<div class="overlay-text">
<div class="folio-info">
<h3 class="larger">Distributed Computing on Mobile</h3>
</div>
<div class="folio-overview">
<span class="folio-link"></span>
<span class=""><a type="button" data-toggle="modal" data-target="#portfolio4">
<i class="fa fa-ellipsis-h"></i>
</a></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="folio-item wow fadeInRightBig" data-wow-duration="1000ms" data-wow-delay="700ms">
<div class="folio-image">
<img class="img-responsive" src="images/portfolio/5.jpg" alt="">
</div>
<div class="overlay">
<div class="overlay-content">
<div class="overlay-text">
<div class="folio-info">
<h3 class="larger">Leap Talk</h3>
</div>
<div class="folio-overview">
<span class="folio-link"></span>
<span class=""><a type="button" data-toggle="modal" data-target="#portfolio5">
<i class="fa fa-ellipsis-h"></i>
</a></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="folio-item wow fadeInLeftBig" data-wow-duration="1000ms" data-wow-delay="800ms">
<div class="folio-image">
<img class="img-responsive" src="images/portfolio/6.jpg" alt="">
</div>
<div class="overlay">
<div class="overlay-content">
<div class="overlay-text">
<div class="folio-info">
<h3 class="larger">Simplock</h3>
</div>
<div class="folio-overview">
<span class="folio-link"></span>
<span class=""><a type="button" data-toggle="modal" data-target="#portfolio6">
<i class="fa fa-ellipsis-h"></i>
</a></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="folio-item wow fadeInRightBig" data-wow-duration="1000ms" data-wow-delay="900ms">
<div class="folio-image">
<img class="img-responsive" src="images/portfolio/7.jpg" alt="">
</div>
<div class="overlay">
<div class="overlay-content">
<div class="overlay-text">
<div class="folio-info">
<h3 class="larger">Closerly</h3>
</div>
<div class="folio-overview">
<span class="folio-link"></span>
<span class=""><a type="button" data-toggle="modal" data-target="#portfolio7">
<i class="fa fa-ellipsis-h"></i>
</a></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="folio-item wow fadeInLeftBig" data-wow-duration="1000ms" data-wow-delay="1000ms">
<div class="folio-image">
<img class="img-responsive" src="images/portfolio/8.jpg" alt="">
</div>
<div class="overlay">
<div class="overlay-content">
<div class="overlay-text">
<div class="folio-info">
<h3 class="larger">SportFolio </h3>
</div>
<div class="folio-overview">
<span class="folio-link"></span>
<span class=""><a type="button" data-toggle="modal" data-target="#portfolio8">
<i class="fa fa-ellipsis-h"></i>
</a></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="portfolio-single-wrap">
<div id="portfolio-single">
</div>
</div><!-- /#portfolio-single-wrap -->
</section><!--/#portfolio-->
<div class="modal fade" id="portfolio1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
</div>
<div class="modal-body">
<h3 class="text-center larger">Calorie App</h3>
<p class="smaller text-center">By: Chirag Goel & Mushtaque Ahmed</p>
<p class="smaller text-center"> Edition: inGenius 2015</p>
<p class="text-center smaller">Open our fitness app, click a photo of the food you are going to consume and we tell you the calories you'll be adding on and we maintain a monthly chart which tracks your food habits. We also recommend other food the user would need to consume in order to get all the necessary vitamins. We also track your step-data using inbuilt smartphone sensors to measure the amount of exercise you are getting everyday and recommend further exercise when required. So, we basically measure a person's calorie intake and calories he loses and ensure he has a healthy lifestyle</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary " data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="portfolio2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
</div>
<div class="modal-body">
<h3 class="text-center larger">LEO (LEAD EMERGENCY OPERATIONS)</h3>
<p class="smaller text-center">By: Abu Kurian, Aju K Jose & Ch Meher Manasa</p>
<p class="smaller text-center"> Edition: inGenius 2015</p>
<p class="text-center smaller">Situations arise, when Firemen are exposed to untold or not foreseen factors such as the give away of a building floor when they enter a burning building. In such cases, a robot can be deployed to pre-check the situation. One can send out the robot, to study the variables, and not put these men in direct harm. Such a robot is LEO. LEO is designed to check, if the floor of a certain building is strong enough such that the firemen can safely enter the building to carry out their duties. This can considerably reduce the number of causalities in a given situation . What LEO essentially does is it generates a set of vibrations. Since the vibrations of different mediums are different, we can, with the help of a vibration sensor(which is built into the robot), calculate whether the given flooring will give away or not.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary " data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="portfolio3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
</div>
<div class="modal-body">
<h3 class="text-center larger">Jarvis</h3>
<p class="smaller text-center">By: Devansh Gulhane, Kartik Gupta & Parth Oberoi</p>
<p class="smaller text-center"> Edition: inGenius 2015</p>
<p class="text-left smaller"> Building The Next generation IOT minded Home/personal assistant server (a.k.a ) J.A.R.V.I.S <br><br>
- |Complete Audio User Interface. that is speech recognition and text-to-speech as the base for ui.<br>
- |Google’s voice recognition api, python library for text to speech (python e-speak)<br>
- | Communicating with the users Mobile Device<br>
- | Giving Orders to Household devices. e.g., turning ac on and off.<br>
- | Knowing the status of and context of car, home and personal office.<br>
- |Personal Media Server.<br>
- |Integration of Information apis, e.g. weather data, movie reviews , news broadcasts (Updates of of all this information to be broadcasted wherever the user is on scheduled basis or when the user aka Tony Stark demands)<br>
- |Use of wifi module, parse backend , Rasberry pi, arduino(if needed), Android devices.<br>
- Rasberry pi acts as a home server for all the devices that user wishes to add, e.g. android phone, ac, tv, lights, security cam and communicates between devices and performs operations based on user’s demands</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary " data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="portfolio4" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
</div>
<div class="modal-body">
<h3 class="text-center larger">Distributed Computing on Mobile</h3>
<p class="smaller text-center">By: Duvvuri Surya Rahul, Bala Ganesh C & Bala Subramaniam J</p>
<p class="smaller text-center"> Edition: inGenius 2015</p>
<p class="text-center smaller">This is an era where almost everyone carries a smart phone. Our hack therefore implements distributed computing for the first time on smart phones using HIGH SCORE passing as an innovative technique to solve for a special property of the famous abc-conjecture(number theory) in relation with Primitive Pythagorean Primes(PPPs). The computing on the phones is established by an app built using MIT’s app-inventor. </p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary " data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="portfolio5" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
</div>
<div class="modal-body">
<h3 class="text-center larger">Leap Talk</h3>
<p class="smaller text-center">By: Aravind & Arun</p>
<p class="smaller text-center"> Edition: inGenius 2014</p>
<p class="text-center smaller">Problem Statement: Improve the means of communication between mute people and those who aren't.<br><br>
Hack:Conversion of sign language to text and audio using Leap motion controller. <br><br/>
The target users are mute people and the app can be used in scenarios where mute people have to address masses, given that most of the people do not know sign language. We just wanted to make a software that would prove to be beneficial for the disabled and this was the inspiration behind our idea. Also the leap controller has been designed to take hand gestures as input and hence proves to be a worthy apparatus to serve our cause.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary " data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="portfolio6" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
</div>
<div class="modal-body">
<h3 class="text-center larger">Simplock</h3>
<p class="smaller text-center">By: Suryoday Basak & Sukrit Venkatagiri</p>
<p class="smaller text-center"> Edition: inGenius 2014</p>
<p class="text-center smaller">Remember the last time you had to wait for someone to come home before you could go out, all because you had to give the keys to them? Or that time you went to play and forgot to lock the door! You would’ve gotten lectured for hours on end for that. Well, now there’s a simple, robust way to take care of that - Simplock is your one-stop solution. Simplock is a secure smart lock that interacts with the cloud through a Raspberry Pi by means of an encrypted connection. We’ve envisioned the front-end to be an interactive web UI accessible from virtually anywhere, allowing you to check whether the door is locked and if not to lock it. Or say someone forgot the keys and no one is home, with one simple swipe you can open the door for them. Simplock is the future of home safety and the stepping stone for home automation. Kick-start your simplife today.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary " data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="portfolio7" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
</div>
<div class="modal-body">
<h3 class="text-center larger">Closerly</h3>
<p class="smaller text-center">By: Harshit Jain and Ali Asgar K.N</p>
<p class="smaller text-center"> Edition: inGenius 2012</p>
<p class="text-center smaller"> Closerly enables users to send SMS Messages from their PC using their Android phone number. </p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary " data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="portfolio8" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
</div>
<div class="modal-body">
<h3 class="text-center larger">SportFolio </h3>
<p class="smaller text-center"></p>
<p class="smaller text-center"> Edition: inGenius 2012</p>
<p class="text-center smaller"> A mobile application bringing the information of all kinds of sports under one roof. It brings the latest news about the score in the current tournaments in every sport by linking to their official sites along with the latest buzz in each.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary " data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<section id="pricing">
<div class="container">
<div class="row">
<div class="heading text-center col-sm-8 col-sm-offset-2 wow fadeInUp" data-wow-duration="1200ms" data-wow-delay="300ms">
<h2>Registrations</h2>
<p class="larger">Registrations have now closed. We received over 250 responses! Shortlisted teams will be informed soon.</p>
</div>
</div>
<!--
<div class="pricing-table">
<div class="row">
<div class="col-sm-3">
<div class="single-table wow flipInY" data-wow-duration="1000ms" data-wow-delay="300ms">
<h3>Basic</h3>
<div class="price">
$9<span>/Month</span>
</div>
<ul>
<li>Free Setup</li>
<li>10GB Storage</li>
<li>100GB Bandwith</li>
<li>5 Products</li>
</ul>
<a href="#" class="btn btn-lg btn-primary">Sign up</a>
</div>
</div>
<div class="col-sm-3">
<div class="single-table wow flipInY" data-wow-duration="1000ms" data-wow-delay="500ms">
<h3>Standard</h3>
<div class="price">
$19<span>/Month</span>
</div>
<ul>
<li>Free Setup</li>
<li>10GB Storage</li>
<li>100GB Bandwith</li>
<li>5 Products</li>
</ul>
<a href="#" class="btn btn-lg btn-primary">Sign up</a>
</div>
</div>
<div class="col-sm-3">
<div class="single-table featured wow flipInY" data-wow-duration="1000ms" data-wow-delay="800ms">
<h3>Featured</h3>
<div class="price">
$29<span>/Month</span>
</div>
<ul>
<li>Free Setup</li>
<li>10GB Storage</li>
<li>100GB Bandwith</li>
<li>5 Products</li>
</ul>
<a href="#" class="btn btn-lg btn-primary">Sign up</a>
</div>
</div>
<div class="col-sm-3">
<div class="single-table wow flipInY" data-wow-duration="1000ms" data-wow-delay="1100ms">
<h3>Professional</h3>
<div class="price">
$49<span>/Month</span>
</div>
<ul>
<li>Free Setup</li>
<li>10GB Storage</li>
<li>100GB Bandwith</li>
<li>5 Products</li>
</ul>
<a href="#" class="btn btn-lg btn-primary">Sign up</a>
</div>
</div>
</div>
</div>
-->
</div>
</section><!--/#pricing-->
<section id="features" class="parallax">
<div class="container">
<h2>Statistics</h2>
<p class="larger">Some statistics from last year</p>
<div class="row count top-30">
<div class="col-sm-3 col-xs-6 wow fadeInLeft" data-wow-duration="1000ms" data-wow-delay="300ms">
<i class="fa fa-code "></i>
<br>
<br>
<span class="timer largerx">500</span><span class="largerx">+</span>
<p>Registrations</p>
</div>
<div class="col-sm-3 col-xs-6 wow fadeInLeft" data-wow-duration="1000ms" data-wow-delay="500ms">
<i class="fa fa-user"></i>
<br>
<br>
<span class="timer largerx">250</span><span class="largerx">+</span>
<p>People on Campus</p>
</div>
<div class="col-sm-3 col-xs-6 wow fadeInLeft" data-wow-duration="1000ms" data-wow-delay="700ms">
<i class="fa fa-coffee"></i>
<br>
<br>
<span class="timer largerx">350</span><span class="largerx">+</span>
<p>Cups of coffee</p>
</div>
<div class="col-sm-3 col-xs-6 wow fadeInLeft" data-wow-duration="1000ms" data-wow-delay="900ms">
<i class="fa fa-trophy"></i>
<br>
<br>
<span class="timer largerx">50000</span><span class="largerx">+</span>
<p>Worth prices</p>
</div>
</div>
</div>
</section><!--/#features-->
<section id="fh5co-trusted" data-section="trusted">
<div class="fh5co-trusted">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate"><span class="xxx">Sponsors</span></h2>
</div>
</div>
<div class="row top-30">
<div class=" col-md-4 text-center to-animate-2 ">
<img src="images/acm.png" style="width:150px;padding-top:25px;" alt="Partners" class="">
<br>
<p class="smaller top-15">Organizing Partner</p>
</div>
<div class=" col-md-4 text-center to-animate-2 ">
<img src="images/forge.png" style="width:500px;" alt="Partners" class="img-responsive">
<p class="smaller">Title Sponsor</p>
<a href="https://developer.autodesk.com/" class="smaller" target="_blank">https://developer.autodesk.com/</a>
</div>
<div class=" col-md-4 text-center to-animate-2 top-15">
<img src="images/hackerearth.png" style="width:180px;padding-top:25px;" alt="Partners" class="">
<br>
<br>
<p class="smaller">Platform Sponsor</p>
</div>
</div>
<div class="row">
<div class=" col-md-5 col-md-offset-1 text-center to-animate-2 top-15">
<img src="images/gcn.png" style="width:180px;padding-top:25px;" alt="Partners" class="">
<br>
<br>
<p class="smaller">Internet Partner</p>
</div>
<div class=" col-md-6 text-center to-animate-2 top-15">
<img src="images/ubi.png" style="width:260px;padding-top:35px;" alt="Partners" class="">
<br>
<br>
<p class="smaller">Banking Partner</p>
</div>
</div>
<div class="row top-30">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate"><span class="xxx">Partners</span></h2>
</div>
<div class="row">
<div class=" text-center to-animate-2 ">
<img src="images/yourstory.jpg" style="width:220px;" alt="Partners" class="">
<p class="smaller top-5">Associate Media Partner</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="fh5co-faq" class="fh5co-bg-color" data-section="faq">
<div class="fh5co-faq">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate"><span>Frequently Asked Questions</span></h2>
</div>
</div>
<div class="row top-30">
<div class="col-md-6">
<div class="box-faq to-animate-2">
<i class="icon-check2"></i>
<div class="desc">
<h3>Who can attend inGenius 2016?</h3>
<p class="smaller">The only restriction is that you must be a student! Age is no bar as long as you have a <span class="text-info">valid current</span> university/college/school ID. Build yout team with that in mind and register now!</p>
</div>
</div>
<div class="box-faq to-animate-2">
<i class="icon-check2"></i>
<div class="desc">
<h3>How many people can I have in my team?</h3>
<p class="smaller">You must have <span class="text-info">at least</span> 2 people in your team, and a maximum of 3 people. Fancy, crazy team names are encouraged! No obscenity, mind you.</p>
</div>
</div>
<div class="box-faq to-animate-2">
<i class="icon-check2"></i>
<div class="desc">
<h3>What do I have to bring?</h3>
<p class="smaller">Mandatory:
<ul >
<li class="smaller">A valid College ID (or Government ID if none available)</li>
<li class="smaller">Laptop, chargers & other required peripherals.</li>
<li class="smaller">Any and all <span class="text-info">hardware equipment</span> required for the completion of your hack</li>
<li class="smaller">No Objection Certificate for each female participant</li>
<li class="smaller">Unadulterated enthusiasm!</li>
</ul>
</p>
<p class="smaller">Optional:</p>
<ul>
<li class="smaller">Data card / dongles for internet access (just in case!)</li>
<li class="smaller">Anything you need to be comfy during the night.</li>
</ul>
</div>
</div>
<div class="box-faq to-animate-2">
<i class="icon-check2"></i>
<div class="desc">
<h3>How will you judge?</h3>
<p class="smaller">Based on your hack domain, judges will visit your team and do the judgement. The <span class="text-info">top 10 teams</span> will be selected and wil have to present their hacks on stage to all the judges.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="box-faq to-animate-2">
<i class="icon-check2"></i>
<div class="desc">
<h3>Is there a registration fee?</h3>
<p class="smaller">Registering your team along with your hack idea is free (obviously :P). But, once shortlisted, teams need to buy tickets which are worth <span class="text-info">₹300</span> per person in the team.</p>
</div>
</div>
<div class="box-faq to-animate-2">
<i class="icon-check2"></i>
<div class="desc">
<h3>How do I get shortlisted?</h3>
<p class="smaller">Register your hack ideas online at the link given in the navigation bar. Give us a 100 word abstract about your hack to show us how awesome your idea is! This hack description is what will get you a confirmation mail if we like your idea. You can also add some weight to your hack by including your github and linkedin profile links.<br> <br> If we like your idea, you will be sent an email confirming your participation a few weeks before the event. Don't forget to keep checking your inbox (also, check SPAM, just in case!).</p>
</div>
</div>
<div class="box-faq to-animate-2">
<i class="icon-check2"></i>
<div class="desc">
<h3>How long is the event? Do I have to stay throughout?</h3>
<p class="smaller">Everybody gets 24 hours to work on their hacks. Including inauguration and prize distributions etc, the entire event lasts about 30 hours. You are free to leave the venue <span class="text-info">before 6 PM</span> on <span class="text-info">day</span> one and come back next morning after 5-6 AM.Female participants must carry a No Objection Certificate signed by their guardian in order to be allowed to stay the night!</p>
</div>
</div>
<div class="box-faq to-animate-2">
<i class="icon-check2"></i>
<div class="desc">
<h3>I have a question that's not answered here</h3>
<p class="smaller">We're here to help you however you need! Feel free to drop us a <a class="text-info" href="mailto:info@ingeniushack.com">email</a>. You could also reach out to us on <a class="text-info" target="_blank" href="https://www.facebook.com/inGeniusHack">Facebook</a> or on <a class="text-info" target="_blank" href="https://twitter.com/ingeniushack">Twitter.</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="twitter" class="parallax">
<div>
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<div class="twitter-icon text-center">
<i class="fa fa-heart fa-4x"></i>
</div>
<div id="twitter-carousel" class="carousel slide top-30" data-ride="carousel">
<ol class="carousel-indicators" style="top:100%;">
<li data-target="#twitter-carousel" data-slide-to="0" class="active"></li>
<li data-target="#twitter-carousel" data-slide-to="1"></li>
<li data-target="#twitter-carousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner " >
<div class="item active " >
<p class="larger"> I learned more in a weekend than I did in class last month. <br> - Aman Chaudhary</p>
<br>
</div>
<div class="item">
<p class="larger"> Well organized and great food. =D <br> - Nanthini B</p>
<br>
</div>
<div class="item">
<p class="larger"> The environment was great. Fascinating to see so many talented people in a single room working 24 hour straight. <br> - Madhumita H</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!--/#twitter-->
<section id="contact">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d31117.530429986014!2d77.6633304!3d12.863204!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bae6cbccb22bec1%3A0x4bad30b7a7fd5e76!2sPESIT+South+Campus!5e0!3m2!1sen!2sin!4v1470759433800" width="100%" height="300px" frameborder="0" style="border:0" allowfullscreen></iframe>
<div id="contact-us" class="parallax">
<div class="container">
<div class="row">
<div class="heading text-center col-sm-8 col-sm-offset-2 wow fadeInUp" data-wow-duration="1000ms" data-wow-delay="300ms">
<h2>Contact Us</h2>
<p>Say Hi, we won't bite! =)</p>
</div>
</div>
<div class="contact-form wow fadeIn" data-wow-duration="1000ms" data-wow-delay="600ms">
<div class="row">
<div class="col-sm-6">
<form id="main-contact-form" name="contact-form" method="post" action="#">
<div class="row wow fadeInUp" data-wow-duration="1000ms" data-wow-delay="300ms">
<div class="col-sm-6">
<div class="form-group">
<input type="text" name="name" class="form-control" placeholder="Name" required="required">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<input type="email" name="email" class="form-control" placeholder="Email Address" required="required">
</div>
</div>
</div>
<div class="form-group">
<input type="text" name="subject" class="form-control" placeholder="Subject" required="required">
</div>
<div class="form-group">
<textarea name="message" id="message" class="form-control" rows="4" placeholder="Enter your message" required="required"></textarea>
</div>
<div class="form-group">
<button type="submit" class="btn-submit">Send Now</button>
</div>
</form>
</div>
<div class="col-sm-6">
<div class="contact-info wow fadeInUp" data-wow-duration="1000ms" data-wow-delay="300ms">
<p>If you have any doubts, clarifications, want to register or just want to say hi, please reach us on the following contacts. Hope to see you at inGenius 2016!</p>
<ul class="address">
<li><i class="fa fa-map-marker"></i> <span> Address:</span> PESIT Bangalore South Campus, Hosur Road - 560 100 </li>
<li><i class="fa fa-phone"></i> <span>Chirag Goel:</span> +91 9036879486 </li>
<li><i class="fa fa-phone"></i> <span>Amjad Ali:</span> +91 8904362086 </li>
<li><i class="fa fa-envelope"></i> <span> Email:</span><a href="mailto:info@ingeniushack.com"> info@ingeniushack.com</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!--/#contact-->
<footer id="footer">
<div class="footer-top wow fadeInUp" data-wow-duration="1000ms" data-wow-delay="300ms">
<div class="container text-center">
<div class="footer-logo text-center">
<a href="index.html"><img class="img-responsive" src="images/logo.png" alt=""></a>
</div>
<div class="social-icons">
<ul>
<li><a class="envelope" href="mailto:info@ingeniushack.com"><i class="fa fa-envelope"></i></a></li>
<li><a class="facebook" href="https://www.facebook.com/inGeniusHack/"><i class="fa fa-facebook"></i></a></li>
<li><a class="twitter" href="https://twitter.com/ingeniushack"><i class="fa fa-twitter"></i></a></li>
<li><a class="dribbble" href="https://www.instagram.com/ingeniushackathon/"><i class="fa fa-instagram"></i></a></li>
<!-- <li><a class="linkedin" href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a class="tumblr" href="#"><i class="fa fa-tumblr-square"></i></a></li> -->
</ul>
</div>
</div>
</div>
</footer>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="js/jquery.inview.min.js"></script>
<script type="text/javascript" src="js/wow.min.js"></script>
<script type="text/javascript" src="js/mousescroll.js"></script>
<script type="text/javascript" src="js/smoothscroll.js"></script>
<script type="text/javascript" src="js/jquery.countTo.js"></script>
<script type="text/javascript" src="js/lightbox.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<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-67302990-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>