-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathproject.html
1590 lines (1424 loc) · 81.5 KB
/
project.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>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-165861327-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-165861327-1');
</script>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta name="google-site-verification" content="FT2t5BivKk3B39Z5iv1eupyKrr3XzPh7JcjXD7RoPNU" />
<title>Student Code-In </title>
<meta content="" name="descriptison">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Montserrat:300,400,500,600,700@display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/vendor/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style1.css" rel="stylesheet">
<script type="text/javascript"
id="botcopy-embedder-d7lcfheammjct"
class="botcopy-embedder-d7lcfheammjct"
data-botId="5eb171581bb92200073b9bb7">
var s = document.createElement('script');
s.type = 'text/javascript'; s.async = true;
s.src = 'https://widget.botcopy.com/js/injection.js';
document.getElementById('botcopy-embedder-d7lcfheammjct').appendChild(s);
</script>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header">
<div id="topbar">
<div class="container">
<div class="social-links">
<a href="https://twitter.com/studentcodein" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/company/43204229/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/StudentCode-in" class="github"><i class="fa fa-github"></i></a>
<a href="https://t.me/scodein" class="telegram"><i class="fa fa-telegram"></i></a>
</div>
</div>
</div>
<div class="container">
<div class="logo float-left">
<!-- Uncomment below if you prefer to use an image logo -->
<h1 class="text-light"><a href="https://scodein.tech" class="scrollto"><span>Student Code-In</span></a></h1>
<!-- <a href="#header" class="scrollto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a> -->
</div>
<nav class="main-nav float-right d-none d-lg-block">
<ul>
<li><a href="https://scodein.tech">Home</a></li>
<li class="active"><a href="https://scodein.tech/#services">Projects</a></li>
<li><a href="https://scodein.tech/#timeline">Timeline</a></li>
<li><a href="https://scodein.tech/#sponsors">Sponsors</a></li>
<li><a href="team.html">Our Team</a></li>
<li class="drop-down"><a href="">More</a>
<ul>
<li><a href="event.html">Events</a></li>
<li><a href="https://scodein.tech/#faq">FAQ</a></li>
<li><a href="#footer">Contact Us</a></li>
</li>
</ul>
</ul>
</nav><!-- .main-nav -->
</div>
</header><!-- #header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="clearfix">
<div class="container d-flex h-100">
<div class="row justify-content-center align-self-center">
<div class="col-md-6 intro-info order-md-first order-last">
</div>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<section id="services" class="services section-bg">
<div class="container">
<header class="section-header">
<h3>PROJECTS</h3>
<h6 style="text-align:center;">In real open source, you have the right to control your<span> own destiny!</span></h6>
<div class="input-group mb-3" style="max-width: 360px; margin: auto">
<input id="project-search" type="text" class="form-control" placeholder="Search...">
</div>
<br>
</header>
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup1">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h4 class="title"><a href="https://github.com/Harshit564/Hackathon_Techadroit" class="githubLink">AapKaVaidya</h4></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p> A flutter android application for Easy interaction between patients and doctors.</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Flutter</p>
<p class="techStack">Firebase</p>
<p class="techStack">SQLite</p>
</div>
</div>
<div id="popup1" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>AapKaVaidya <a href="https://github.com/Harshit564/Hackathon_Techadroit" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p> A flutter android application for Easy interaction between patients and doctors. During a pandemic,
many of the patients are looking to get regular health check-ups but due lock-down this seems impossible.
The app uses YouTube API to call the video player to get indulge in streaming YouTube videos there, nearby locations are also set using
Google Map API and incorporating with an ambulance database which provides real-time location of the ambulance nearby.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Flutter</p>
<p class="techStack">Firebase</p>
<p class="techStack">SQLite</p>
</div><br>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Harshit Singh<br><a href="https://github.com/Harshit564" class="github"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/harshit-singh-lko/" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Syed Mohd Gulam Baquer<br><a href="https://GitHub.com/baquer" class="github"><i class="fa fa-github"></i></a> <a href="Https://linkedin.com/syed-baquer" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Tanmay Vijayvargiya<br><a href="https://github.com/Tanmayvv" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/tanmay-vijayvargiya-3b2b201a1/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup2">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/CheshtaK/bookface" class="githubLink">Bookface</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>A social app for book lovers to share book reviews and recommendations and ...</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Flutter</p>
</div>
</div>
<div id="popup2" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Bookface <a href="https://github.com/CheshtaK/bookface" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>A social app for book lovers to share book reviews and recommendations and to discover new books based on their chosen genre.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Flutter</p>
</div><br>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Cheshta Kwatra<br><a href="https://github.com/CheshtaK" class="github"><i class="fa fa-github"></i></a> <a href="www.linkedin.com/in/cheshtak" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Komal Pal<br><a href="https://github.com/Komal7209" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/komal-pal-8a9a82155/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Himanshu Sharma<br><a href="https://github.com/himanshusharma89" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/himanshusharma89/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup3">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/UtkarshChaurasia/COVID-19-A-boon-for-nature" class="githubLink">COVID-19: Boon For Nature</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>Analysis of the datasets available and predict the impact of improved air quality on...</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Data Science</p>
<p class="techStack">ML</p>
</div>
</div>
<div id="popup3" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>COVID-19: Boon For Nature <a href="https://github.com/UtkarshChaurasia/COVID-19-A-boon-for-nature" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>Analysis of the datasets available and predict the impact of improved air quality on the overall ecosystem, such as by how far the melting of polar ice will be pushed which was originally predicted in 2100. The positive aspect of this pandemic could be an
eye-opener to reanalyze the parameters which play a vital role in a healthier environment. This might encourage people to keep the air immaculate once this lockdown is over.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Data Science</p>
<p class="techStack">ML</p>
</div><br>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Utkarsh Chaurasia<br><a href="https://github.com/UtkarshChaurasia" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/utkarsh-chaurasia-a4b76a17b/" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Shivan Kumar<br><a href="https://github.com/Shivan118" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/shivan-kumar//" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Ankit Dobhal<br><a href="https://github.com/ankitdobhal" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/ankit-dobhal-aa237015b/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup4">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/Team-Tomato/Cricket-Data-analysis" class="githubLink">Cricket Data Analysis</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>Cricket is one of the world's populous sporting events and there is a huge scope...</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Electron Js</p>
<p class="techStack">PostgreSQL</p>
</div>
</div>
<div id="popup4" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Cricket Data Analysis <a href="https://github.com/Team-Tomato/Cricket-Data-analysis" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>Cricket is one of the world's populous sporting events and there is a huge scope of analysing the varoious data that are part of it. A native software for analysing the vast cricket data that provides a greater and minute insights on various aspects of playes, teams, matches, countries and more.
</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Electron Js</p>
<p class="techStack">PostgreSQL</p>
<p class="techStack">Node Js</p>
</div><br>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Akbar Habeeb B<br><a href="https://github.com/AkbarHabeeb" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/akbarhabeebb/" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Shivam Gupta<br><a href="https://github.com/shivamgupta57121" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/shivamgupta57121/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Shivansh Srivastava<br><a href="github.com/Shivansh2407" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/shivansh-srivastava24" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup5">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/harshkumarkhatri/gymaale_pycharm" class="githubLink">GYMAale</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>Frequent travelers often miss their workouts. This helps frequent travelers book a..</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Frontend</p>
<p class="techStack">Flask</p>
<p class="techStack">AWS</p>
</div>
</div>
<div id="popup5" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>GYMAale <a href="https://github.com/harshkumarkhatri/gymaale_pycharm" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>Frequent travelers often miss their workouts. This helps frequent travelers book a gym for a certain period of time or they can use up the card
provided by us in the gym which has tied up with us. Also, this is a platform which connects all the gyms which are available
in-out city. With the help of GYMAale, beginners can look at the best-suited gyms, trainers, supplementation and diet charts on free or paid basis and can consult trainers and dietitians as well.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Frontend</p>
<p class="techStack">Flask</p>
<p class="techStack">AWS</p>
</div><br>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Harsh Kumar Khatri<br><a href="https://github.com/harshkumarkhatr" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/harshkumarkhatri/" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Rajat Cambo<br><a href="https://github.com/kaioshin20" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/rajat-cambo-6b0642180" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Soham Parekh<br><a href="https://github.com/und3fined-v01d" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/soham-parekh-8905a21a3" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup6">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/Team-Tomato/Funkids" class="githubLink">Funkids</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>The world of kids will be entirely different, where worries and tensions are still..</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">React Js</p>
<p class="techStack">FastAPI </p>
</div>
</div>
<div id="popup6" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Funkids <a href="https://github.com/Team-Tomato/Funkids" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>The world of kids will be entirely different, where worries and tensions are still years away from them. It will be full of joys, plays and new learnings everday. FunKids is a way exploring the world of these kids, Integrating with new technologies,
this application will intereact with the kids in their own way and thereby enrich them with knowledge.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">React Js</p>
<p class="techStack">FastAPI </p>
<p class="techStack">Detectron</p>
</div><br>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Akbar Habeeb B<br><a href="https://github.com/AkbarHabeeb" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/akbarhabeebb/" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Ashish Nagpal<br><a href="https://github.com/ashishnagpal2498" class="github"><i class="fa fa-github"></i></a> <a href="https://linkedin.com/in/ashish-nagpal24" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Aayush Agarwal<br><a href="https://github.com/Aayush-1999" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/aayush-agarwal1999/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup7">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/sauravraghuvanshi/Computer-Vision-Nanodegree-Program/tree/master/project_2_image_captioning_project" class="githubLink">Image Caption </h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>We need strong model that predicts how the virus could spread across different countries..</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Python</p>
<p class="techStack">Deep Learning</p>
</div>
</div>
<div id="popup7" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Image Caption <a href="https://github.com/sauravraghuvanshi/Computer-Vision-Nanodegree-Program/tree/master/project_2_image_captioning_project" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>In this project, I design and train a CNN-RNN (Convolutional Neural Network - Recurrent Neural Network) model for automatically generating image captions. The network is trained on the Microsoft Common Objects in Context (MS COCO) dataset.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Python</p>
<p class="techStack">Deep Learning</p>
</div><br>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Saurav Raghuvanshi<br><a href="https://github.com/sauravraghuvanshi" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/feed/update/urn:li:activity:6667283504625278976/" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Vidhi Mody<br><a href="github.com/vidhi-mody" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/vidhi-mody-21629a150" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>SRI MANIKANTA PALAKOLLU <br><a href="https://github.com/srimani-programmer" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/srimani-programmer/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Ankur Bhatia<br><a href="https://github.com/ankurbhatia24/" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/bhatia-ankur24/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup8">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/akhilaku/Image-Classifier-using-Intel-Movidius-NCS-2" class="githubLink">Image Recognition and Classification Device</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>This project is based on helping the blind people to identify...</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Python</p>
<p class="techStack">DL</p>
<p class="techStack">Intel NCS</p>
</div>
</div>
<div id="popup8" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Image Recognition and Classification Device for Blind People <a href="https://github.com/akhilaku/Image-Classifier-using-Intel-Movidius-NCS-2" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-5 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>This project is based on helping the blind people to identify, recognize and classify the things in front of them using Intel Movidius Neural Compute Stick(NCS) with Raspberry Pi-3.
The project is developed till its image recognition and classification process, and I'm under developing its classified image text to speech process so that Blind people can know
what is in front of them through their earphones connected to the device.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Python</p>
<p class="techStack">DL</p>
<p class="techStack">Intel NCS</p>
<p class="techStack">OpenVino</p>
</div><br>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Akhildas ks<br><a href="https://github.com/akhilaku" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/akhildas-ks-ab82b8199" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Prasad Kumkar<br><a href="https://github.com/prasad-kumkar" class="github"><i class="fa fa-github"></i></a> <a href="https://linkedin.com/prasad-kumkar" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Subham Srivastava<br><a href="https://github.com/subSri" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/subham-srivastava-9b9b9a175" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup9">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/akshitagupta15june/lane_detection_opencv.git" class="githubLink">Lane Detection using OpenCV</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>Traffic accidents have become one of the most serious...</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">OpenCV</p>
</div>
</div>
<div id="popup9" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Lane Detection using OpenCV <a href="https://github.com/akshitagupta15june/lane_detection_opencv.git" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>Traffic accidents have become one of the most serious problems in today's world. Roads are the mostly chosen modes of transportation and provide the finest
connections among all modes. Most frequently occurring traffic problem is the negligence of the drivers and it has become more and more serious with the increase of vehicles.
Increasing the safety and saving lives of human beings is one of the basic function of Intelligent Transportation System (ITS). </p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">OpenCV</p>
</div><br>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Akshita Gupta<br><a href="https://github.com/akshitagupta15june" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/akshita-gupta-a4a895187/" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Anuj Goyal<br><a href="https://github.com/Anujg935" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/anuj-goyal-991005137/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Soham Parekh<br><a href="https://github.com/und3fined-v01d" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/soham-parekh-8905a21a3" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup10">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/osDFS/osDFS-Chatbot" class="githubLink">OSDFS Chatbot</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>A community-driven bot that aims to be as simple as possible to serve...</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Tensorflow</p>
<p class="techStack">DL</p>
<p class="techStack">Python</p>
</div>
</div>
<div id="popup10" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>OSDFS Chatbot <a href="https://github.com/osDFS/osDFS-Chatbot" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>A community-driven bot that aims to be as simple as possible to serve humans queries about osDFS.It is a machine-learning based conversational dialog engine
build in Python which makes it possible to generate responses based on collections of known conversations </p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Tensorflow</p>
<p class="techStack">DL</p>
<p class="techStack">Python</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Monalisha Ojha<br><a href="https://github.com/osDFS" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/monalisha-ojha-016777188" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Katakam Nikhilesh <br><a href="https://github.com/NikhileshKatakam" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/nikhilesh-katakam-97a513198" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Sarah<br><a href="https://github.com/sara-02" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/sarahmasud/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup11">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/yasirahmad62/plant-disease-identifier" class="githubLink">Plant Disease Identifier</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>A mobile app to identify plant disease and give a relevant solution for it....</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Swift</p>
<p class="techStack">ML</p>
<p class="techStack">Python</p>
</div>
</div>
<div id="popup11" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Plant Disease Identifier <a href="https://github.com/yasirahmad62/plant-disease-identifier" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>Making an app to allow farmers or people related to agriculture to keep a constant check on their plant check for the problems and solution, and have a history of treatment.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Swift</p>
<p class="techStack">ML</p>
<p class="techStack">Python</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Ahmad Yasir<br><a href="https://github.com/yasirahmad62" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/ahmad-yasir-5bb1a1181" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Akash Srivastava<br><a href="https://github.com/AkashSrivastava1721" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/mwlite/in/akash-s-233ab3160" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Chanchal Bansal<br><a href="https://github.com/Chanchal1603" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/chanchal-bansal-4b6778193" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup12">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="http://github.com/garimasingh128/profext" class="githubLink">Profext</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>A profile search engine for accessing my all social media profile in one tap...</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">HTML</p>
<p class="techStack">CSS</p>
<p class="techStack">Javascript</p>
</div>
</div>
<div id="popup12" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Profext <a href="http://github.com/garimasingh128/profext" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>A profile search engine for accessing my all social media profile in one tap.
This chrome extension let's you track your profiles on any account in a single click.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">HTML</p>
<p class="techStack">CSS</p>
<p class="techStack">Javascript</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Garima Singh<br><a href="https://github.com/garimasingh128" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/garima-singh-34042a177/" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Rajat Verma<br><a href="https://github.com/rajat2502" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/rajat2502/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Saksham Taneja<br><a href="https://github.com/sakshamtaneja21" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/tanejasaksham/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup13">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/Anagha-2000/PsychHelp" class="githubLink"> PsychHelp</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>To create a website wherein people suffering with psychological problems...</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">HTML</p>
<p class="techStack">CSS</p>
<p class="techStack">React</p>
<p class="techStack">JS</p>
</div>
</div>
<div id="popup13" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3> PsychHelp <a href="https://github.com/Anagha-2000/PsychHelp" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>To create a website wherein people suffering with psychological problems can communicate with the doctors
online without going in person.This website will help people communicating to the doctor and sharing their problems.
</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">HTML</p>
<p class="techStack">CSS</p>
<p class="techStack">React</p>
<p class="techStack">JS</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Anagha Patil <br><a href="https://github.com/Anagha-2000" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/anagha-patil-347a77152" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Lakshita Malhotra<br><a href="https://github.com/Lakshita7a" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/lakshitamalhotra/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Satyam Soni<br><a href="https://github.com/SatyamSoni23" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/satyam-soni-332522172/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup14">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/codezonediitj/pydatastructs" class="githubLink">PyDataStructs</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>The project aims to be a Python package for various data structures in...</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Python 3.x</p>
</div>
</div>
<div id="popup14" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>PyDataStructs <a href="https://github.com/codezonediitj/pydatastructs" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>Currently, the project aims to be a Python package for various data structures in computer science. Besides, we are also working on including parallel algorithms. To the best of our knowledge, a well-designed library/package which has
covered most of the data structures and algorithms including their parallel implementation doesn't exist.
In future, i.e, after a few releases of the package when the software design will become stable, we also aim to provide APIs for the code in C++ and Java as well.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Python 3.x</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Gagandeep Singh<br><a href="https://github.com/czgdp1807" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/czgdp1807/" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Shruti Garg<br><a href="https://www.github.com/gargshruti30" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/gargshruti30" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Chaudhary Sarimurrab<br><a href="https://github.com/sarimurrab" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/chaudhary-sarimurrab/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Prashant Rawat<br><a href="https://github.com/prshnt19" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/prshnt19/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup15">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/HarshCasper/Rotten-Scripts" class="githubLink">Rotten Scripts</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>Collection of Scripts to automate a variety of tasks...</p><br>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Python</p>
<p class="techStack">Javascript</p>
</div>
</div>
<div id="popup15" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Rotten Scripts <a href="https://github.com/HarshCasper/Rotten-Scripts" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>Collection of Scripts to automate a variety of tasks.Scripts that will make you go WOW heart_eyescomputer.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Python</p>
<p class="techStack">Javascript</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Harsh Bardhan Mishra<br><a href="https://github.com/HarshCasper" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/harsh-bardhan-mishra-b19990173/" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Abhishek Sanjay Mankuskar <br><a href="https://github.com/abhishekmankuskar" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/abhishek-mankuskar-03790018b/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Somya Upadhyay<br><a href="https://github.com/som23ya" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/somya-upadhyay-5b2028166/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup16">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/VBSquad/Scrabbling-Java-With-CF" class="githubLink">Scrabbling-Java-With-CF</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>This project is simple and easy so that we can help those who are contributing for the...</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Java</p>
</div>
</div>
<div id="popup16" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Scrabbling-Java-With-CF <a href="https://github.com/VBSquad/Scrabbling-Java-With-CF" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p> This project is simple and easy so that we can help those who are contributing for the first time. The project is like your very own repository where one can add programs and code related to the different methods defined in collection classes & collection interfaces in JAVA. This project is intended to provide a good set of programs to end user related to all methods of collection framework.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">Java</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Jyoti Jauhari<br><a href="https://github.com/JyotiJauhari" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/jyoti-jauhari-007b7417b" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Dhruv Mehta<br><a href="https://github.com/Dhruv-194" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/dhruv-mehta-194dev/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup17">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/PragatiVerma18/Snippet-Share" class="githubLink">Snippet Share</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>This is a snippet sharing app that can be used to share snippets of code...</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">HTML</p>
<p class="techStack">CSS</p>
<p class="techStack">JS</p>
<p class="techStack">Django</p>
</div>
</div>
<div id="popup17" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Snippet Share <a href="https://github.com/PragatiVerma18/Snippet-Share" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>This is a snippet sharing app that can be used to share snippets of code and more.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">
<h5 style="text-align:left;"><u>Tech Stack</u></h5>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">HTML</p>
<p class="techStack">CSS</p>
<p class="techStack">JS</p>
<p class="techStack">Django</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<u>Owner</u><br>Pragati Verma<br><a href="https://github.com/PragatiVerma18" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/PragatiVerma18/" class="linkedin"><i class="fa fa-linkedin"></i></a></p>
</div>
<div class="col-sm-12 col-md-5 col-lg-5">
<u>Mentors</u><br>Abhishek Srivastava<br><a href="https://github.com/abhishek2x" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/abhishek-srivastava-49482a190/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Akshat Khanna<br><a href="https://github.com/khannakshat7" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/akshatkhanna7" class="linkedin"><i class="fa fa-linkedin"></i></a>
<br>Aditya Tomar<br><a href="https://www.github.com/adad20" class="github"><i class="fa fa-github"></i></a> <a href="https://www.linkedin.com/in/adad20" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box popup18">
<div class="icon"><i class="ionicons ion-code-working" style="color: #ff689b;"></i></div>
<h5 class="title"><a href="https://github.com/saidrishya/fake_news_detection" class="githubLink">Fake News Detection</h5></a>
<h6 style="text-align:left;"><u>Description</u></h6>
<p>This pandemic has brought in a lot of chaos, and the noise is mostly from fake news..</p>
<h6 style="text-align:left;"><u>Tech Stack</u></h6>
<div class="col-sm-12 col-md-12 col-lg-12">
<p class="techStack">ML</p>
<p class="techStack">NLP</p>
<p class="techStack">python</p>
</div>
</div>
<div id="popup18" class="popup-container">
<div class="popup-content">
<div class="close">×</div>
<h3>Fake News Detection <a href="https://github.com/saidrishya/fake_news_detection" class="github"><i class="fa fa-github"></i></a></h3>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-7 col-lg-7">
<h5 style="text-align:left;"><u>Description</u></h5>
<p>This pandemic has brought in a lot of chaos, and the noise is mostly from fake news. The project will detect fake news.</p></div>
<div class="col-sm-12 col-md-5 col-lg-5">