-
Notifications
You must be signed in to change notification settings - Fork 3
/
uplift2020.html
1208 lines (1139 loc) · 50.6 KB
/
uplift2020.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PROJECTS 2020 | THE UPLIFT PROJECT</title>
<link rel="icon" href="assets/logo.png" type="image/x-icon" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Rubik&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="css/pa.css" />
<link rel="stylesheet" href="css/footer.css" />
</head>
<body>
<button type="button" class="mobile-nav-toggle text-light mt-3 d-lg-none">
<i class="icofont-navigation-menu fas fa-bars"></i>
</button>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">
<!-- <h1 class="logo mr-auto"><a href="index.html">Arsha</a></h1> -->
<!-- Uncomment below if you prefer to use an image logo -->
<a href="index.html" class="logo mr-auto"
><img
src="assets/logowhite.png"
alt="uplift_logo.png"
class="img-fluid"
/></a>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="pl-5"><a href="index.html">Home</a></li>
<li class="pl-5"><a href="about.html">About</a></li>
<li class="pl-5"><a href="index.html#register">Register</a></li>
<!-- <li class="pl-5"><a href="projects.html">Projects</a></li> -->
<!-- <li class="pl-5"><a href="index.html#faq">FAQs</a></li> -->
<li class="pl-5"><a href="team.html">Team</a></li>
<li class="drop-down pl-5 active">
<a href=""
>More<i class="ml-1 fa fa-caret-down" aria-hidden="true"></i
></a>
<ul>
<li><a href="uplift2020.html">Uplift 2020</a></li>
<!-- <li class="drop-down"><a href="#">Deep Drop Down</a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li> -->
</ul>
</li>
<!-- <li class="pl-5 project-archieve active">
<a class="ml-3" href="Project-Archieves.html">Project Archieves</a>
</li> -->
</ul>
</nav>
<!-- .nav-menu -->
<!-- <a href="#about" class="get-started-btn scrollto">Get Started</a> -->
</div>
</header>
<!-- End Header -->
<div class="container mt-5 py-3">
<div class="title h1 text-center">
Glimpses of projects <span class="gradient-text">UPLIFT 2020</span>
</div>
</div>
<div class="container-fluid">
<div class="row d-flex justify-content-center main-row">
<!-- <div class="card col-lg-3">
<div class="row">
<div class="col-sm-6">
<h3 class="text-left ml-5 mt-4">Project:</h3>
</div>
<div class="col-sm-6 pl-0 pr-0">
<div class="card-block p-2">
<h3 class="card-title mt-3 mb-0 font-weight-bold">We Track - keep your goals on track</h3>
<p>Domain: Career</p>
</div>
</div>
<div class="col-sm-8 text-center">
<a href="#" data-toggle="modal" data-target="#modal1"
class="btn btn-primary btn-lg pl-4 pr-4 pt-1 pb-1 mb-4">Details</a>
</div>
</div>
Modal: modalDiscount
<div class="modal fade right mt-5" id="modal1" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="true">
<div class="modal-dialog modal-side modal-bottom-right modal-notify modal-danger" role="document">
Content
<div class="modal-content">
Header
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="white-text">×</span>
</button>
</div>
Body
<div class="modal-body mb-0">
<div class="row">
<div class="col-12 p-4">
<p>
<strong>Choosing a career after Intermediate in which you have to spend your
whole life is a daunting task. We always try to do our best but there is
always a fear of being wrong.There are also cases in which students
realise leaning towards another stream after admission or one/two years
of college.</strong>
</p>
</div>
</div>
<hr>
</div>
Footer
<div class="mt-0 mb-2 p-0">
<div class="text-left">
<a href="#" class="github-btn btn btn-primary waves-effect float-left"><i
class="fab fa-github"></i> Team---AD01</a>
</div>
<div class="text-right">
<a type="button" href="#"
class="domain-btn btn btn-primary waves-effect float-right">Android</a>
</div>
</div>
</div>
/.Content
</div>
</div>
Modal: modalDiscount
</div> -->
</div>
</div>
<br />
<br />
<div class="container-fluid bg-white mt-5 p-5">
<div class="row p-5">
<div class="col-lg-3 milestones-col col-md-6 col-sm-12">
<div class="text-center p-4">
<img src="assets/milestones/Vector.png" alt="milestone" />
<br />
<h2 class="text-dark m-3 font-weight-bold">2600+</h2>
<h4 class="text-center font-weight-bold text-secondary">
Applications Recieved
</h4>
</div>
</div>
<div class="col-lg-3 milestones-col col-md-6 col-sm-12">
<div class="text-center p-4">
<img
src="assets/milestones/Vector(1).png"
class="mt-1"
alt="milestone"
/>
<br />
<h2 class="text-dark m-3 font-weight-bold">1763</h2>
<h4 class="text-center font-weight-bold text-secondary">
Applications Selected
</h4>
</div>
</div>
<div class="col-lg-3 milestones-col col-md-6 col-sm-12">
<div class="text-center p-4">
<img src="assets/milestones/Vector(2).png" alt="milestone" />
<br />
<h2 class="text-dark m-3 font-weight-bold">347+</h2>
<h4 class="text-center font-weight-bold text-secondary">
Cities Reached
</h4>
</div>
</div>
<div class="col-lg-3 milestones-col col-md-6 col-sm-12">
<div class="text-center p-4">
<img src="assets/milestones/Vector(3).png" alt="milestone" />
<br />
<h2 class="text-dark m-3 font-weight-bold">383+</h2>
<h4 class="text-center font-weight-bold text-secondary">
Colleges Reached
</h4>
</div>
</div>
</div>
</div>
<div class="p-5 sponsor container">
<div class="m-3 text-center">
<h2 class="text-white text-left font-weight-bold">Previous Sponsors</h2>
</div>
<div class="row m-2 d-flex justify-content-center">
<div class="col-lg-6 col-sm-12">
<div class="w-75">
<a href="#"
><img
src="assets/sponsors/linode.png"
alt="sponsor"
class="sponsor-image img-fluid"
/>
<div class="sponsors">
<h2 class="sponsor-heading">Gold Sponsor</h2>
<!-- <p class="sponsor-content text-justify mt-5">
Linode is an American web hosting company that provides cloud
hosting via VPS hosting plans that run on Linux-only servers.
With its global datacenters, Linode makes a great hosting choice
for clients who want the power and responsibility of running
their own virtual web servers hands-on.
</p> -->
</div>
</a>
</div>
</div>
<div class="col-lg-6 col-sm-12">
<div class="w-75">
<a href="#"
><img
src="assets/sponsors/balsamiq.png"
alt="sponsor"
class="sponsor-image img-fluid"
/>
<div class="sponsors">
<h2 class="sponsor-heading">Patreon Sponsor</h2>
<!-- <p class="sponsor-content text-justify mt-5">
Balsamiq Studios is an ISV founded in March 2008 by Peldi
Guilizzoni. The Web-based Balsamiq mockup tool was launched in
June 2008. It has product called Balsamiq Wireframes and
Balsamiq Cloud. Balsamiq Cloud is a web-based user interface
design tool for creating Wireframes.
</p> -->
</div>
</a>
</div>
</div>
</div>
</div>
<section class="bg-light sponsor-box position-relative">
<div class="container bg-white p-5 mb-5">
<div class="row">
<div class="col-lg-6 col-sm-12">
<h1 class="align-center mb-3">Become a Sponsor today!</h1>
<p>
Sponsors make it possible for The Uplift Project to provide the
perks for participants. Sponsors receive a great deal of publicity
and exposure as a result of the program.
</p>
</div>
<div class="col-lg-6 col-sm-12 text-right align-center">
<a
href=" https://forms.gle/D6hZythRQfaMXmAP8"
target="_blank"
type="button"
class="btn btn-dark text-white m-4 btn-lg sponsor-btn"
>
<h2>Sponsor us</h2>
</a>
</div>
</div>
</div>
</section>
<section class="footers bg-light pt-5 pb-3">
<div class="container mt-4 pt-5">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-4 footers-one">
<div class="footers-logo">
<img src="assets/logo.png" alt="Logo" style="width: 120px" />
</div>
<div class="footers-info mt-3">
<p>
The Uplift is a global project managed and founded by
<span
><a
style="color: rgb(245, 56, 56)"
href="about.html#about-girlscript"
>The GirlScript Foundation.</a
></span
>
</p>
</div>
<div class="social-icons mt-5 mb-5">
<a
class="social-icon mr-4 p-2 pl-3"
href="https://m.facebook.com/upliftproject1"
><i id="social-fb" class="fab fa-facebook-f"></i
></a>
<a
class="social-icon mr-4 p-2"
href="https://twitter.com/uplift_project?lang=en"
><i id="social-tw" class="fab fa-twitter"></i
></a>
<a
class="social-icon mr-4 p-2"
href="https://www.instagram.com/upliftproject1/"
><i id="social-gp" class="fab fa-instagram"></i
></a>
<a
class="social-icon mr-4 p-2"
href="https://www.linkedin.com/company/upliftproject/"
><i id="social-em" class="fab fa-linkedin-in"></i
></a>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-2 footers-two">
<h5 class="footer-link-title">Register As</h5>
<ul class="list-unstyled">
<li><a href="index.html#participant">Participant</a></li>
<li><a href="index.html#mentor">Mentor</a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-md-2 footers-three">
<h5 class="footer-link-title">Info</h5>
<ul class="list-unstyled">
<li><a href="uplift2020.html">Archives</a></li>
<li><a href="team.html">Team</a></li>
<!-- <li><a href="mailto:[email protected]">Contact us<br><span
style="color: rgb(245, 56, 56); word-wrap: break-word;">[email protected]</span></a>
</li> -->
</ul>
</div>
<!-- <div class="col-xs-12 col-sm-6 col-md-2 footers-four">
<h5 class="footer-link-title">Sister Platforms</h5>
<ul class="list-unstyled">
<li>
<a href="https://gssoc.girlscript.tech/">GirlScript Summer of Code 2021</a>
</li>
<li><a
href="https://medium.com/girlscript-bangalore/girlscripts-education-outreach-program-cae520769ab5">Education
Outreach Program </a></li>
<li><a href="https://www.gsyay.com/">YAY! Celebrating Education </a></li>
</ul>
</div> -->
<div class="col-xs-12 col-sm-6 col-md-2 footers-five">
<h5 class="footer-link-title">Engage</h5>
<ul class="list-unstyled">
<li><a href="index.html">The Uplift</a></li>
<li><a href="index.html#faq">FAQs</a></li>
<li><a href="about.html">About us</a></li>
<!-- <li><a href="projects.html">Projects</a></li> -->
<!-- <li><a href="about.html">Post Requirements</a></li> -->
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-md-2 footers-three">
<h5 class="footer-link-title">Contact us</h5>
<a
href="mailto:[email protected]"
class="btn btn-primary mail-btn text-white"
>Mail us <i class="fas fa-envelope-open-text"></i
></a>
</div>
</div>
<div class="row text-left">
<div class="col-md-12 pt-3">
<p class="text-muted">©2021 The Uplift Project</p>
</div>
</div>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script>
var details = {
ProjectData: [
{
projectId: "HTML01",
projectName: "WeTrack - Keep your goals on track",
projectDescription:
"WeTrack - is a goal tracking application designed for people who want to keep their academic goals on track. With a primary feature of setting goals, and add ons such as motivational quote generation, a resource hub and tips and tricks. We plan to build this using HTML, CSS, Bootstrap and Vanilla Javascript, (maybe a bit of jQuery). We might also try and convert this into a PWA if time permits.",
gitLink:
"https://github.com/The-Uplift-Project/html-css-js/tree/Team---HTML01",
repoName: "Team---HTML01",
domainName: "Career",
stack: "HTML, CSS, JS",
tech: true,
},
{
projectId: "AD01",
projectName: "Career_Plus",
projectDescription:
"Choosing a career after Intermediate in which you have to spend your whole life is a daunting task. We always try to do our best but there is always a fear of being wrong.There are also cases in which students realise leaning towards another stream after admission or one/two years of college.",
gitLink:
"https://github.com/The-Uplift-Project/android-development/tree/Team-1-AD01",
repoName: "Team---AD01",
domainName: "Career",
stack: "Android",
tech: true,
},
{
projectId: "HTML04",
projectName: "Career Choices and Education",
projectDescription:
"The primary purpose for our Project is to create a Website for Students to get the required Career Paths in various fields which they can follow to excel in their future. We will also have a section where they can view recent Internship Opportunities, Learning Courses that they can undertake and Blogs which allows them to better understand the need of the future and more.",
gitLink:
"https://github.com/The-Uplift-Project/html-css-js/tree/Team-HTML04",
repoName: "Team---HTML04",
domainName: "Career",
stack: "HTML, CSS, JS",
tech: true,
},
{
projectId: "CC04",
projectName: "Career Management System",
projectDescription:
"Building a career management system using file handling to handle the various skills inorder to reach your goals",
gitLink:
"https://github.com/The-Uplift-Project/C-C-plus-plus-programming/tree/Team-CC04",
repoName: "Team-CC04",
domainName: "Career",
stack: "C/C++",
tech: true,
},
{
projectId: "CC01",
projectName: "University Management System",
projectDescription:
"The University management system project maintains the list of affiliated colleges and their different streams. It also maintains the examination and the result department with a proper menu system. It maintains the details of the professors and other staff as well.",
gitLink:
"https://github.com/The-Uplift-Project/C-C-plus-plus-programming/tree/Team-CC01",
repoName: "Team-CC01",
domainName: "Education",
stack: "C/C++",
tech: true,
},
{
projectId: "CC06",
projectName: "Student Details Management System",
projectDescription: "",
gitLink:
"https://github.com/The-Uplift-Project/C-C-plus-plus-programming/tree/Team-CC06",
repoName: "Team-CC06",
domainName: "Education",
stack: "C/C++",
tech: true,
},
{
projectId: "HTML08",
projectName: "Resume Builder",
projectDescription: "A resume builder software.",
gitLink:
"https://github.com/The-Uplift-Project/html-css-js/tree/Team-HTML08",
repoName: "Team---HTML08",
domainName: "Education",
stack: "HTML, CSS, JS",
tech: true,
},
{
projectId: "R2",
projectName: "Educator - Your modern age mentor",
projectDescription:
"An online learning portal for Mobile and Desktop as a web-app.",
gitLink: "https://github.com/The-Uplift-Project/react/tree/Team-R2",
repoName: "Team-R2",
domainName: "Education",
stack: "React",
tech: true,
},
{
projectId: "AD04",
projectName: "Algo_Expert",
projectDescription:
"An Education app where the application stores all kinds of algorithms.",
gitLink:
"https://github.com/The-Uplift-Project/android-development/tree/Team4-AD04",
repoName: "Team4-AD04",
domainName: "Education",
stack: "Android",
tech: true,
},
{
projectId: "JV03",
projectName: "Education",
projectDescription: "University MAnagement System",
gitLink:
"https://github.com/The-Uplift-Project/java-programming/tree/Team-JV03",
repoName: "Team-JV03",
domainName: "Education",
stack: "Java",
tech: true,
},
{
projectId: "NJ1",
projectName: "Education",
projectDescription:
"Provide a Platform for the students and Teachers where the Doubts of students can be Solved by Teachers or any other Students. It Will be helpful for the aspirants.",
gitLink:
"https://github.com/The-Uplift-Project/nodejs/tree/Team-NJ1",
repoName: "Team-NJ1",
domainName: "Education",
stack: "Node Js",
tech: true,
},
{
projectId: "NJ2",
projectName: "Education",
projectDescription:
"The project will be based on the education domain which tends to provide free and easy access to anyone present anywhere in the world.",
gitLink:
"https://github.com/The-Uplift-Project/nodejs/tree/Team-NJ2",
repoName: "Team-NJ2",
domainName: "Education",
stack: "Node Js",
tech: true,
},
{
projectId: "NJ3",
projectName: "Submission Evaluator",
projectDescription:
"The project aims to provide an online platform to enable individuals or institutions to create tests and evaluate submissions",
gitLink:
"https://github.com/The-Uplift-Project/nodejs/tree/Team-NJ3",
repoName: "Team-NJ3",
domainName: "Education",
stack: "Node Js",
tech: true,
},
{
projectId: "PY1",
projectName:
"Animated Visualization of Data Structures and Algorithms",
projectDescription:
"Our idea is to write a python script that would visualize various Algorithms and Data Structures, like tree formation, reversing a linked list, finding a single source shortest path, and many more using animation. The key idea here is to convert what we learn in theory to an animated visualization.",
gitLink:
"https://github.com/The-Uplift-Project/python-programming/tree/Team-PY1",
repoName: "Team-PY1",
domainName: "Education",
stack: "Python",
tech: true,
},
{
projectId: "AI03",
projectName: "Quora Insincere Question Classification",
projectDescription: " ",
gitLink:
"https://github.com/The-Uplift-Project/python-programming/tree/Team-AI03",
repoName: "Team-AI03",
domainName: "Education",
stack: "AI & ML",
tech: true,
},
{
projectId: "HTML03",
projectName: "Women Safety",
projectDescription:
"We have thus decided to incorporate an element of this in our project as well. With an aim to contribute towards ending the stigma of periods we have decided to build a website to promote and encourage menstrual health and hygiene. ",
gitLink:
"https://github.com/The-Uplift-Project/html-css-js/tree/Team-HTML03",
repoName: "Team-HTML03",
domainName: "People/Employee Welfare and Security",
stack: "HTML, CSS, JS",
tech: true,
},
{
projectId: "FL01",
projectName: "Women Safety",
projectDescription:
"This project aims to ensure the safety of women worldwide. This project will aim to create a gender inclusive society by adding some features.",
gitLink:
"https://github.com/The-Uplift-Project/flutter/tree/Team-FL01",
repoName: "Team-FL01",
domainName: "People/Employee Welfare and Security",
stack: "Flutter",
tech: true,
},
{
projectId: "OS3",
projectName: "Nostalgify",
projectDescription:
"Human beings are social animals and there are points in life when we look back on our journey to reflect and connect with classmates. Many universities in the world have a listing of the classes of various years, like class of 20xx but not all institutions(tutors, dance classes, creative arts institutes, schools) have the technical knowledge to set this up and keep it up to date. Several institution websites lack utility features like graphing / profile updates etc which can help keep it better updated. This project would fix the above mentioned issues.",
gitLink:
"https://github.com/The-Uplift-Project/open-source-development/tree/Team-OS3",
repoName: "Team-OS3",
domainName: "People/Employee Welfare and Security",
stack: "OpenSource",
tech: true,
},
{
projectId: "DSC01",
projectName: "Credit Card Fraud Detection",
projectDescription: "Analyze credit card fraud detection",
gitLink:
"https://github.com/The-Uplift-Project/data-science/tree/Team-DSC01",
repoName: "Team-DSC01",
domainName: "People/Employee Welfare and Security",
stack: "Data Science",
tech: true,
},
{
projectId: "PY6",
projectName: "Message Encoder Decoder GUI Application",
projectDescription:
"Online hacking attacks are increasing day by day we need to secured application that should have our own algorithmic implementation to convert the plain text into the ciphertext and ciphertext into plain text using encryption and decryption techniques.",
gitLink:
"https://github.com/The-Uplift-Project/data-science/tree/Team-PY6",
repoName: "Team-PY6",
domainName: "People/Employee Welfare and Security",
stack: "Python",
tech: true,
},
{
projectId: "HTML06",
projectName: "Marketing",
projectDescription:
"We are creating a landing page for a fashion store with a built in IBM Watson Chat-Bot.",
gitLink:
"https://github.com/The-Uplift-Project/html-css-js/tree/Team-HTML06",
repoName: "Team-HTML06",
domainName: "Marketing",
stack: "HTML, CSS, JS",
tech: true,
},
{
projectId: "HTML07",
projectName: "HomeMade",
projectDescription:
"HomeMade is an e-commerce website focused on handmade and vintage items and craft supplies. It connects small scale handmade sellers to the customers in town.",
gitLink:
"https://github.com/The-Uplift-Project/html-css-js/tree/Team-HTML07",
repoName: "Team-HTML07",
domainName: "Marketing",
stack: "HTML, CSS, JS",
tech: true,
},
{
projectId: "HTML10",
projectName: "PlayIt",
projectDescription:
"PlayIt is a music website similar to apps like Spotify, Wynk. PlayIt user will be able to play and download any song out of a huge collection of songs.",
gitLink:
"https://github.com/The-Uplift-Project/html-css-js/tree/Team-HTML10",
repoName: "Team-HTML10",
domainName: "Marketing",
stack: "HTML, CSS, JS",
tech: true,
},
{
projectId: "AD02",
projectName: "StayHealthy",
projectDescription:
"With our busy lives, we somehow end up giving health a less priority. We fail to keep our reports, our health history organized. We forget to track the most important parameters related to health like our weight, BMI, Blood pressure and many more.",
gitLink:
"https://github.com/The-Uplift-Project/android-development/tree/Team2-AD02",
repoName: "Team2-AD02",
domainName: "Healthcare",
stack: "Android",
tech: true,
},
{
projectId: "AD03",
projectName: "WEATHER FORECASTING APP",
projectDescription:
"Weather forecasting app is an android application created using Kotlin fundamentals and advanced concepts. This application shows the current weather of a place.",
gitLink:
"https://github.com/The-Uplift-Project/android-development/tree/Team3-AD03",
repoName: "Team3-AD03",
domainName: "Healthcare",
stack: "Android",
tech: true,
},
{
projectId: "AI11",
projectName: "Computer Vision for the visually impaired",
projectDescription:
"The project would help visually impaired people to interact with their enviornment. It is based on computer vision. The visually impaired person would be equipped with a system having a camera which would be used forvarious purposes like obstruction detection, recognize signs, test read-aloud and face-massk detection.",
gitLink:
"https://github.com/The-Uplift-Project/python-programming/tree/Team-AI11",
repoName: "Team-AI11",
domainName: "Healthcare",
stack: "AI & ML",
tech: true,
},
{
projectId: "FL03",
projectName: "CleanUp",
projectDescription: "An Waste Management Application.",
gitLink:
"https://github.com/The-Uplift-Project/flutter/tree/Team-FL03",
repoName: "Team-FL03",
domainName: "Rural development/management",
stack: "Flutter",
tech: true,
},
{
projectId: "AI06",
projectName: "Classification of Trash for Recyclability Status",
projectDescription:
"A computer vision approach to classifying garbage into recycling categories could be an efficient way to process waste. The objective of this project is to take images of a single piece of recycling or garbage and classify it into six classes consisting of glass, paper, metal, plastic, cardboard, and trash. We will create a dataset that contains around 400-500 images for each class. We plan to release this dataset for the public. Some of the models to be used are support vector machines (SVM) with scale-invariant feature transform (SIFT) features and a convolutional neural network (CNN).This model can be wrapped in an app for better utility.",
gitLink:
"https://github.com/The-Uplift-Project/python-programming/tree/Team-AI06",
repoName: "Team-AI06",
domainName: "Rural development/management",
stack: "AI & ML",
tech: true,
},
{
projectId: "CC03",
projectName:
"Healthcare Management System for Hospital Staff/Nurses",
projectDescription:
"A hospital management system is an information system that manages the aspects of a hospital. This may include the administrative, financial, and medical processing.",
gitLink:
"https://github.com/The-Uplift-Project/C-C-plus-plus-programming/tree/Team-CC03",
repoName: "Team-CC03",
domainName: "Rural development/management",
stack: "C/C++",
tech: true,
},
{
projectId: "AI06",
projectName: "Classification of Trash for Recyclability Status",
projectDescription:
"A computer vision approach to classifying garbage into recycling categories could be an efficient way to process waste. The objective of this project is to take images of a single piece of recycling or garbage and classify it into six classes consisting of glass, paper, metal, plastic, cardboard, and trash. We will create a dataset that contains around 400-500 images for each class. We plan to release this dataset for the public. Some of the models to be used are support vector machines (SVM) with scale-invariant feature transform (SIFT) features and a convolutional neural network (CNN).This model can be wrapped in an app for better utility.",
gitLink:
"https://github.com/The-Uplift-Project/python-programming/tree/Team-AI06",
repoName: "Team-AI06",
domainName: "Rural development/management",
stack: "AI & ML",
tech: true,
},
{
projectId: "JV02",
projectName: "E Commerce",
projectDescription: "Grocery Delivery Service",
gitLink:
"https://github.com/The-Uplift-Project/java-programming/tree/Team-JV02",
repoName: "Team-JV02",
domainName: "E-Commerce",
stack: "Java",
tech: true,
},
{
projectId: "FL04",
projectName: "Tradewinds",
projectDescription: "An e-commerce App",
gitLink:
"https://github.com/The-Uplift-Project/flutter/tree/Team-FL04",
repoName: "Team-FL04",
domainName: "E-Commerce",
stack: "Flutter",
tech: true,
},
{
projectId: "NJ5",
projectName: "TradeByte",
projectDescription: "It is a small stock trading simulation game.",
gitLink:
"https://github.com/The-Uplift-Project/nodejs/tree/Team-NJ5",
repoName: "Team-NJ5",
domainName: "E-Commerce",
stack: "Node Js",
tech: true,
},
{
projectId: "PHP1",
projectName: "Covid Assistance",
projectDescription:
"Covid Assistance is a website which is made keeping in mind the adverse circumstances that countrymen are facing in this Global Pandemic.",
gitLink:
"https://github.com/The-Uplift-Project/php-programming/blob/Team-PHP1/",
repoName: "Team-PHP1",
domainName: "COVID19",
stack: "PHP",
tech: true,
},
{
projectId: "AI15",
projectName: "COVID-19 Detection",
projectDescription:
"Web App in which user can select his/her symptoms plus can upload the image of his/her X-ray and on that basis our app will inform whether the user is infected or not and what is his/her condition ( Mild/Serious/Critical )",
gitLink:
"https://github.com/The-Uplift-Project/python-programming/tree/Team-AI15",
repoName: "Team-AI15",
domainName: "COVID19",
stack: "AI & ML",
tech: true,
},
{
projectId: "AI14",
projectName: "Trip Planner",
projectDescription: "A chatbot which will help you plan a trip.",
gitLink:
"https://github.com/The-Uplift-Project/python-programming/tree/Team-AI14",
repoName: "Team-AI14",
domainName: "Travel, Transport and hospitality",
stack: "AI & ML",
tech: true,
},
{
projectId: "AI08",
projectName: "fake news classifier",
projectDescription: "",
gitLink:
"https://github.com/The-Uplift-Project/python-programming/tree/Team-AI08",
repoName: "Team-AI08",
domainName: "Media Services",
stack: "AI & ML",
tech: true,
},
{
projectId: "AI07",
projectName: "Face Detection",
projectDescription:
"We are working towards utilizing deep learning concepts to develop a robust face recognition system that can work on images/videos. Once the network recognises face, we aim towards implementing facial expression recognition, mask detection (whether a person is wearing a mask or not) and hand gesture recognition systems. ",
gitLink:
"https://github.com/The-Uplift-Project/python-programming/tree/Team-AI07",
repoName: "Team-AI07",
domainName: "Miscellaneous",
stack: "AI & ML",
tech: true,
},
{
projectId: "AI12",
projectName: "Hand Gesture and Face Detection",
projectDescription:
"We are working on Two Things in parallel one is based on CV and the other is based on NLP which are implemented together by the end of these projects which in-turn forms an end-to-end Deep Learning Based Project",
gitLink:
"https://github.com/The-Uplift-Project/python-programming/tree/Team-AI12",
repoName: "Team-AI12",
domainName: "Miscellaneous",
stack: "AI & ML",
tech: true,
},
{
projectId: "AI01",
projectName: "AI Impersonator",
projectDescription:
"AI Impersonator is a program that allows anyone to impersonate a person of their choice as an avatar and join a Zoom/Slack/Google Meet call among other video conferencing apps. It uses the First Order Motion Model for Image Animation by Aliaksandr Siarohin et. al. The avatars are photorealistic making it impossible to differentiate.",
gitLink:
"https://github.com/The-Uplift-Project/python-programming/tree/Team-AI01",
repoName: "Team-AI01",
domainName: "Miscellaneous",
stack: "AI & ML",
tech: true,
},
{
projectId: "CC02",
projectName: "OpenCV Project",
projectDescription:
"We are working towards developing an app using qt5, opencv and c++. This app will have a functionality to process a live image/ video and create effects like pencil sketching, cartoonizing and other computational imagery on the image/frame.",
gitLink:
"https://github.com/The-Uplift-Project/C-C-plus-plus-programming/tree/Team-CC02",
repoName: "Team-CC02",
domainName: "Miscellaneous",
stack: "C/C++",
tech: true,
},
],
};
const count = details.ProjectData.length;
// console.log(count);
const row = document.querySelector(".main-row");
for (let i = 0; i < count; i++) {
// console.log(details.ProjectData[i]);
row.innerHTML += `<div class="card col-lg-4">
<div class="row">
<div class="col-sm-6 pl-0 pr-0">
<div class="card-block p-2">
<h4 class="card-title mt-3 mb-0 font-weight-bold">${details.ProjectData[i].projectName}</h4>
<p>Domain: ${details.ProjectData[i].domainName}</p>
</div>
</div>
<div class="col-sm-6 text-center">
<a href="#" data-toggle="modal" data-target="#modal${i}" class="btn detail-btn btn-primary btn-lg pl-4 pr-4 pt-1 pb-1">Details</a>
</div>
</div>
</div>
<!--Modal: modalDiscount-->
<div class="modal fade right mt-5" id="modal${i}" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="true">
<div class="modal-dialog modal-side modal-bottom-right modal-notify modal-danger" role="document">
<!--Content-->
<div class="modal-content">
<!--Header-->
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="white-text">×</span>
</button>
</div>
<!--Body-->
<div class="modal-body mb-0">
<div class="row">
<div class="col-12 p-4">
<p>
<strong>${details.ProjectData[i].projectDescription}</strong>
</p>
</div>
</div>
<hr>
</div>
<!--Footer-->
<div class="mt-0 mb-2 p-0">
<div class="text-left">
<a href="${details.ProjectData[i].gitLink}" target="_blank" class="github-btn btn btn-primary waves-effect float-left"><i
class="fab fa-github"></i> ${details.ProjectData[i].repoName}</a>
</div>
<div class="text-right">
<a type="button" href="#"
class="domain-btn btn btn-primary waves-effect float-right">${details.ProjectData[i].stack}</a>
</div>
</div>
</div>
<!--/.Content-->
</div>
</div>
<!--Modal: modalDiscount-->
`;
}
</script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"
integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb"
crossorigin="anonymous"
></script>
<!-- Navbar script important -->
<script>
!(function ($) {
"use strict";
// Preloader
$(window).on("load", function () {
if ($("#preloader").length) {
$("#preloader")
.delay(100)
.fadeOut("slow", function () {
$(this).remove();
});
}
});
// Smooth scroll for the navigation menu and links with .scrollto classes
var scrolltoOffset = $("#header").outerHeight() - 2;
$(document).on(
"click",
".nav-menu a, .mobile-nav a, .scrollto",
function (e) {