-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1991 lines (1629 loc) · 76.1 KB
/
Copy pathindex.html
File metadata and controls
1991 lines (1629 loc) · 76.1 KB
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 >
<head>
<meta charset="UTF-8">
<title>Projects-Hack In The North 3.0</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="header">
<span><img src="Faces/cool_face.png" height="40px"></span>
<span><img src="Faces/tongue_face.png" height="40px"></span>
HACK IN THE NORTH v3.0
<span><img src="Faces/glasses_face.png" height="40px"></span>
<span><img src="Faces/cool2_face.png" height="40px"></span>
</div>
<div class="projects">
PROJECTS
</div>
<div class="cards">
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Acute
<hr class="hr">
<small class="description">
<div class="description-text">
Basically what our hack does is, it aims to control the browser completely using gestures.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href="https://github.com/arindam-modak/AcuteHacks" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Alchemists
<hr class="hr">
<small class="description">
<div class="description-text">
We are building an Image Filter Recommendation program using Convolutional Neural Networks (Deep Learning). The user will only need to upload an image, and the app will recognize its category, mood and content. It will analyze those characteristics, and display the picture after applying the most appropriate filter.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href="https://github.com/abhay-tyagi/Alchemists-IMG" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
ASCII
<hr class="hr">
<small class="description">
<div class="description-text">
We are trying to develop an android application based on machine learning which can take in an video, audio, image or a text file and provide us with small summary of the respective file in text format.
This application will save a lot of time when we don't have enough time to watch the whole video or listen to whole audio (recorded speech). We can just run our application and it will give a small summary of the video and audio.
We will also try to implement a chrome extension which can do the same.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href="https://github.com/nvrocks/Digest" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
AttackOnPython
<hr class="hr">
<small class="description">
<div class="description-text">
System Tracking & Activity REstrictions (STARE) :
1. ""Stare"" records the user activities and it has a graphical representation of activity distribution over time(daily,weekly,monthly).
2. ""Stare"" has a constraints feature which enables users to set time limit for an application usage. Applications can also be blocked based on some keywords appearing in the application title.
3. We are also providing an API that provides user application usage information which enables commercial companies(Amazon, Flipkart etc) to do user profiling by applying Machine Learning Algorithms for better personalized recommendations.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href="https://github.com/dbads/stare" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Baby Got Hack
<hr class="hr">
<small class="description">
<div class="description-text">
प्रत्येित ( Believe ) - A dependable decentralised subnet for crime vigilance and safe navigation.
Our app aims at adding another feature to the current navigation system used by people in day-to-day life. The feature, as we call it is “safe-navigation”. It allows you to not only find the shortest route from origin to destination but also the safest- based on the trends in crimes recorded along all possible routes over a certain period of time. For this, we plan to create clusters based upon latitudes and longitudes of recorded crimes. We will assign these clusters a “danger index” based upon the types, density and date of these recorded crimes. Then we will use these clusters to calculate a heuristic function for an AI-algorithm to traverse each possible step of all possible routes and calculate a final “safety-index” of each route. These “safety-indices” will be assigned to the routes on-demand and hence will change with the time at which a user plans to use the app, as a route might be comparatively less safe at certain times than others. We also plan to provide the user with a visual interface for seeing the above-mentioned “crime-clusters” and heat maps of various categories of crime.
To accomplish this task, our main hinderance was the absence of a reliable source of data on crimes committed in our country. Very few, if any, recorded FIRs are ever made public. Also, due of lack of transparency in the way crime is reported to the police, these FIRs are easy to manipulate and hence any public records of these generated by the current system is lacking in reliability. Thus to solve this problem, we plan to create a blockchain architecture of recording these FIRs so that a public ledger of every FIR recorded is present on a server at every police station which is a part of our blockchain network. This will ensure that no individual-be it a person with authority or a common man-can manipulate this information. Using this information we plan on generating a reliable database that can be used by our cluster of AI-models to give a new dimension to current standards of navigation.
If successfully implemented, we can easily migrate the current records of FIRs to our blockchain for preserving their authenticity while providing a method to record all the new FIRs to the blockchain network directly. This architecture will also be able to replace our current system of filing online FIRs which is lacking any sorts of authentication- with a more secure, reliable and trustworthy method.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/arvindkalra/Pratyati" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Bit Please
<hr class="hr">
<small class="description">
<div class="description-text">
Automatic Trolley Human Follower:
This project aims to make an Automatic Trolley Human Follower for general or industrial user that is affordable. The main objective is to reduce the cost yet increase the reliability, provide a viable and convenient way of carrying luggage for the public and especially for the old and specially abled. An automatic trolley human follower is developed to help a user or production industry to reduce the utilization of human energy in order to carry heavy things. This automatic trolley human follower is controlled by an Arduino, that can follow the user automatically using a combination of ultrasonic range sensors, bluetooth modules, accelerometer, gyroscope and also uses a fingerprint sensor and camera. GPS is not being used as to make the process more fast and accurate.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/prakamya-mishra/Bit-Please-HINT18" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
BroCode
<hr class="hr">
<small class="description">
<div class="description-text">
Provides a text summary of the video you want to watch. Another great functionality our app provides is the minify feature, that gives out a crunched video of the original video as opposed to the text summary. Both these features are especially helpful for students when they have an exam and have to quickly go through a concept or idea. If we're able to efficiently implement this, we'll implement other features like translating the summary to the desired language and audio summary.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/karan28598/scribe-HINT" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Bulletproof Monks
<hr class="hr">
<small class="description">
<div class="description-text">
Caption Generator using AI
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/pulkonet/mrcaption-front" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Burning Bits
<hr class="hr">
<small class="description">
<div class="description-text">
DataFlow - An iteractive desktop application that converts user made flow charts into useful computer code (in C/C++ or Java), user makes his logic chart using drag and drop features and can later simply generate code for it. Developers now have no need to struggle with the Syntax, but instead just concentrate upon creating better logics.
It can be used as a learning tool , for educating young ones and making them aware of coding and logic development.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/ShreyasDobhal/DataFlow" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Cocaine
<hr class="hr">
<small class="description">
<div class="description-text">
Our hack, DaaS (Docker as a Service) aims to provide easy computation and storage solutions
on a local network. Each user can register and setup multiple containers, based on various
images with an easy to use CLI.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/sonudoo/HINT18" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Codapps
<hr class="hr">
<small class="description">
<div class="description-text">
ImageMarketplace
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/nikhilmufc7/imageMarketplace" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
code_Ninja
<hr class="hr">
<small class="description">
<div class="description-text">
E-Krishi
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/hiteshnayak305/e-krishi" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Codebusters
<hr class="hr">
<small class="description">
<div class="description-text">
Our product is basically about creating digital certificates for the attendees or the winners of an event.This would actually reduce the paper work and people would be able provide a link to their digital certificate instead of carrying it everywhere.Moreover through Machine Learning we will automate the process of selecting the suitable candidates for the event/competition.With the limited time we have decided to take the product in a particular direction i.e making it for Hackathons. Participants would be issued a digital certificate depicting they were a part of the Hackathon. Moreover selection of candidates will be automated through our Machine Learning Algorithm hence speeding up the entire process.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/kpulkit29/BlockInTheNorth" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
CodeIT
<hr class="hr">
<small class="description">
<div class="description-text">
We are providing a mobile application for pregnant women. They can view usage, side-effects of medicines. Our app will sense the heartbeat of the women and in case of any abnormalities, or any emergency, will send an alert to hospitals near-by.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/asmitasharma9997/pregHelp.git" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
codeplay
<hr class="hr">
<small class="description">
<div class="description-text">
Analysis of Facebook posts and comments of an user. </div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/arpitmisraw/codeplay" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
CodeTroopers
<hr class="hr">
<small class="description">
<div class="description-text">
This is a social media management assistant for small businesses to help them reach more potential customers. It will help them with the tedious and repetitive tasks using AI. Since small business owners don’t usually have any specialized social media manager, this will introduce them to a new way of promoting themselves as well as interacting with the potential customers and increasing the customer satisfaction. We will be using flask with python as back-end stack and use react native for user interface.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/schedutron/canary" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Crypto-Crats
<hr class="hr">
<small class="description">
<div class="description-text">
We aim to revolutionise the farming sector by introducing an investment-token based model which will help farmers in raising capital against their land and production output value.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/Parassharmaa/crypto-crats" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
CRYSTHOPE
<hr class="hr">
<small class="description">
<div class="description-text">
The idea is to build an Android application that can convert sign language into text as well as speech and translate it into user’s preferred language.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/drupesh2008/Decipher" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Cunning Hackers
<hr class="hr">
<small class="description">
<div class="description-text">
Our idea stems on two essential areas - health and social media.
Thus, our platform is an amalgamation of both of them, trying to provide an early warning system for these signs of different mental states like whether he/she is depressed, having suicidal tendency etc or case of cyber bullying using the analysis of social media posts.
As a measure of safety on identification of any such instances there is an notfication sent to the the benificary added of choice. Notifications send to the benificary only regarding to depression and Cyber bullying type posts because of User's privacy.
This can be used as a tool of parental monitoring with parents getting notification of any suspicious post on the child's timeline.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/surajmall/CyberSafe" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Demystify
<hr class="hr">
<small class="description">
<div class="description-text">
The domain of our idea is VR Based House Selling/Buying application which enables the buyer and seller to interact on a common platform.Moreover the seller can have a virtual view of the entire house and can also have some freedom over his movement in the virtual house.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/aditi1191998/HINT" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Dev Dost
<hr class="hr">
<small class="description">
<div class="description-text">
Aggregating Peer-2-Peer money transfers & Online transactions (Booking Uber, Recharging Mobile & DTH etc), without the Internet (offline), essentially removing the dependency and allowing you 24/7 access to your digital money. Powered by SMS as a medium to transfer data and with the trust of Blockchain, to store, verify and authorize the transaction, thereby ruling out fraudulent transactions.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/Cheesetouched/BlockPay" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Devers
<hr class="hr">
<small class="description">
<div class="description-text">
We are going to make a FB-Messenger ChatBot which will provide information about the Tv_Series,asked by the users.This is "HASURA" platform based project.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/goodday451999" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Devs With Benefits
<hr class="hr">
<small class="description">
<div class="description-text">
The current voice assistants like Amazon Alexa, Google Assistant, Siri, etc., have only one source of input i.e., Voice. This renders the wide range of features presented by these assistants like voice controlled home systems, etc., useless for the Dumb Demographics of the society. But given the fact that we have a world wide standard available for these people to communicate, we decided to make a hardware extension for the Amazon Echo/Google Assistant/Apple Pod which involves a camera module, a microphone, and a speaker.
We are using the standard ASL language as a basis for the gesture recognition. Alexa records the gestures performed by the user, analyses them from a given set of commands, the one to which it matches with the maximum probability is chosen and then send to Alexa for a response to be generated which is then spoken out.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/Symphoria/Gecho" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
diggy_diggy_bom
<hr class="hr">
<small class="description">
<div class="description-text">
An extension/bot using integration of Machine Learning, Zulip APIs, Gesture Recognition and Voice Recognition for improving the browsing experience of physically challenged people.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/akshay31057/HINT3" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
dun dun dun dun
<hr class="hr">
<small class="description">
<div class="description-text">
An Android app to help visually impaired persons. An app that provides the user an extra eye to enjoy the beauty of surroundings. we have tried to make it as simple as normal user to provide full control through voice commands.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/prajjyadav/HINT-2k18" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
dungeon_masters
<hr class="hr">
<small class="description">
<div class="description-text">
ARThor is an Augumented Reality based application that aims at reducing the hassle of huge document files in a Hospital and reduce them to a AR Document that can be accessed by a simple app. The app presents the data related to the various objects in a Hospital environment. The various features of the app are as follows:
a. Scans personal QR code of a patient and displays an AR document about essential details of the patient on the device projected on the QR code. Essential details such as:
1.Tells about the basic details like name, age, gendder, etc.
2.Tells about the medical history of the patient to make it easy for the doctor to choose the right procedures.
3.Tells about the current status of medication of the patient.
b. Tells about the current status of available medications and automatically orders the equipments and medicines that are low in stock.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/ng29/ARThor" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Explorium
<hr class="hr">
<small class="description">
<div class="description-text">
In our modern world we have so many appliances in house that work at the same time. In order to keep ourselves in check we came up with the idea of Smart-Energy-Meter. The system measures the amount of energy that is being consumed on the daily basis by using data from Electricity meter. The system is programmed using current slab rate for bill calculation. By using IoT we can control the appliances remotely. The system will also help in preventing loss of energy or theft.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/ng29/ARThor" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
F$ociety
<hr class="hr">
<small class="description">
<div class="description-text">
Twitter Utilities App:
This application project tends to solve three major real life problems that people encounter while using twitter. The app will only require your twitter handle as an initial input.
1.) Predicting the number of likes and re-tweets that you might be getting on any tweet of yours, based on your profile status, and also based on the post’s timestamp.
2.) This app will help you get a summary of the tweets of the people you follow for the past one day ranging up to one week, as per your requirement.
3.) Time to add some fancy stuff. Suppose you want to post a tweet in the style of some famous personality. This app will you do the same on the go. Just enter some text and the tweet will be generated in the style of your choice. Additionally, we will also predict the number of likes that you will get depending on when you post the tweet.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/ranjanbinwani/Fsociety-HINT" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Functionally Reactive
<hr class="hr">
<small class="description">
<div class="description-text">
Our project tries to solve a general problem of parents, which is the monitoring the child's use time of his mobile, but in a more playful nature. We plan to design a custom launcher application for android, which will track and monitor the time spent by the child on other apps. The child has a specified time limit of using the other apps, in completion of which the launcher closes the app. To reopen it, the child has to play some educational games, developed in three.js. The games will be developed by the community and the user involvement in a particular game fetches them more blocks. Also, the parents can monitor how much the time their child spends on a particular app, and in which games he is more interested in.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/betterclever/flawnkid.git" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">
<div class="toggle-info btn">
<span class="left"></span>
<span class="right"></span>
</div>
<img src="Faces/cool_face.png" height="40px;">
<h2>
Guardian Support Systems
<hr class="hr">
<small class="description">
<div class="description-text">
We aim to use Augmented Reality to make Education & Learning an interactive and immersive experience for students.
</div>
</small>
<span class="see-more">...</span>
</h2>
</div>
<div class="card-flap flap1">
<div class="card-flap flap2">
<div class="card-actions">
<a href= "https://github.com/baidwan007/hint_edAR.git" class="btn">Visit</a>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-title">