-
Notifications
You must be signed in to change notification settings - Fork 2
/
achievements.html
1375 lines (1322 loc) · 50.9 KB
/
achievements.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>
<title>PISB | Achievements</title>
<link rel="icon" type="image/png" href="./Domains-Page/assets/img/logos/title-logo.png">
<meta char="utf-8">
<meta name="viewport" content="width-device-width,initial-scale=1">
<!-- Bootstrap -->
<link rel="stylesheet" href="./common/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- AOS -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css">
<!-- preloader -->
<link rel="stylesheet" href="./common/preloader/preloader.css">
<!-- navbar -->
<link rel="stylesheet" href="./common/navbar/nav.css">
<!-- Go to Top -->
<link rel="stylesheet" href="./common/scrollToTop/scroll.css">
<!-- footer -->
<link rel="stylesheet" href="./common/footer/footer.css">
<!-- popup -->
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.css'>
<!-- custom css -->
<link rel="stylesheet" href="./Achievements/css/swiper.min.css">
<link rel="stylesheet" href="./Achievements/css/spinkit.min.css">
<link rel="stylesheet" href="./Achievements/css/styles.css">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
</head>
<body>
<!-- preloader -->
<div class="loader-wrapper ">
<div class="container-fluid ">
<div class="row" style="height: 100vh;">
<div class="col d-flex align-items-center justify-content-center">
<div class="cell " >
<div class="fadeImg d-flex justify-content-center align-items-center" style="height: 50vh;">
<img src="./common/preloader/img/t6.png">
<img style="display:none;" src="./common/preloader/img/t1.png">
<img style="display:none;" src="./common/preloader/img/t2.png">
<img style="display:none;" src="./common/preloader/img/t3.png">
<img style="display:none;" src="./common/preloader/img/t4.png">
<img style="display:none;" src="./common/preloader/img/t5.png">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- navbar -->
<nav class="navbar fixed-top navbar-expand-xl ">
<a class="navbar-brand" href="./index.html"><img id="navlogo" src="./common/navbar/pisb.png"></a>
<button class="navbar-toggler navbar-dark" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon "></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown">
<a class="nav-link " id="link-1a" href="./aboutUs.html">About Us</a>
<span class=" dropdown-toggle" href="#" id="link-1b" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
</span>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="./aboutUs.html#ieee-div">IEEE</a>
<a class="dropdown-item" href="./aboutUs.html#pisb-div">PISB</a>
<a class="dropdown-item" href="./aboutUs.html#ping-div">P.I.N.G.</a>
<a class="dropdown-item" href="./aboutUs.html#wie-div">WIE</a>
<!-- <a class="dropdown-item" href="../About-Us/aboutUs.html#csi-div">CSI</a> -->
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link " id="link-1a" href="./events.html">Events</a>
<span class="nav-link dropdown-toggle" href="#" id="link-1b" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
</span>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="./events.html#credenz">Credenz</a>
<a class="dropdown-item" href="./events.html#ctd">CTD</a>
<a class="dropdown-item" href="./events.html#seminar">Seminars</a>
<a class="dropdown-item" href="./events.html#sig">SIGs</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link " id="link-1a" href="./achievements.html">Achievements</a>
<span class="nav-link dropdown-toggle" href="#" id="link-1b" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
</span>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="./achievements.html#awards-div">Awards</a>
<a class="dropdown-item" href="./achievements.html#projects-div">Projects</a>
<a class="dropdown-item" href="./achievements.html#hackathons-div">Hackathons</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link " id="link-1a" href="./team24.html">Our Team</a>
<span class="nav-link dropdown-toggle" href="#" id="link-1b" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
</span>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="./team24.html">Team 2023-2024</a>
<a class="dropdown-item" href="./team23.html">Team 2022-2023</a>
<a class="dropdown-item" href="./team22.html">Team 2021-2022</a>
<a class="dropdown-item" href="./team21.html">Team 2020-2021</a>
<a class="dropdown-item" href="./team20.html">Team 2019-2020</a>
<a class="dropdown-item" href="./team19.html">Team 2018-2019</a>
<a class="dropdown-item" href="./team18.html">Team 2017-2018</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="./domains.html">Domains</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./ping.html">P.I.N.G.</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./gallery.html">Gallery</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="./discussion.html">Discussion Forum</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="./aboutUs.html#contact-us-div">Contact
Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./register.html">Register</a>
</li>
</ul>
</div>
</nav>
<!-- top button -->
<a id="button1"></a>
<div class="parallax">
<h2 class="Effect">ACHIEVEMENTS
<br>
<span class="type"></span>
<!--<span>C</span>
<span>H</span>
<span>I</span>
<span>E</span>
<span>V</span>
<span>E</span>
<span>M</span>
<span>E</span>
<span>N</span>
<span>T</span>
<span>S</span>-->
</h2>
</div>
<br id="awards-div">
<br>
<br>
<section class="Awards">
<div class="fade">
<h1>PICT IEEE STUDENT BRANCH - AWARDS</h1>
<br>
<br>
</div>
</section>
<section class="award"></section>
<div class="container1">
<ul class="tiles">
<li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Best Student Branch<br>Award</p>
<p class="amount">IEEE India Council 2024</p>
</li>
<li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Best Chairperson Award-<br> Nidhi Yadav</p>
<p class="amount">IEEE India Council 2024</p>
</li>
<!-- <li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Darrel Chong Student<br>Award </p>
<p class="amount">Silver Level 2016</p>
</li> -->
<!-- <li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Region 10 Exemplary Student Branch Award</p>
<p class="amount">2016-17</p>
</li>
<li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Best IEEE Student Branch Pune Section</p>
<p class="amount">2019</p>
</li>
<li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Microsoft Student Ambassador</p>
<p class="amount">Harshad Manglani</p>
</li> -->
</ul>
</div>
</section>
<section class="award">
<div class="container1">
<ul class="tiles">
<li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Best Student Branch<br>Award</p>
<p class="amount">IEEE India Council 2015</p>
</li>
<li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Best Student Branch Counsellor</p>
<p class="amount">Dr. Rajesh Ingle 2014</p>
</li>
<li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Darrel Chong Student<br>Award </p>
<p class="amount">Silver Level 2016</p>
</li>
<li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Region 10 Exemplary Student Branch Award</p>
<p class="amount">2016-17</p>
</li>
<li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Best IEEE Student Branch Pune Section</p>
<p class="amount">2019</p>
</li>
<li class="tile">
<div class="feature-icon">
<i class="fas fa-trophy" aria-hidden="true"></i>
</div>
<p class="title">Microsoft Student Ambassador</p>
<p class="amount">Harshad Manglani</p>
</li>
</ul>
</div>
</section>
<!--Competitions--
<section class="parallax1">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Slide One</h2>
</div>
<div class="content">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Slide Two</h2>
</div>
<div class="content">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Slide Three</h2>
</div>
<div class="content">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Slide Four</h2>
</div>
<div class="content">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Slide Five</h2>
</div>
<div class="content">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Slide Six</h2>
</div>
<div class="content">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Slide Seven</h2>
</div>
<div class="content">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<a href="#">Read More</a>
</div>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</section>
<section class="Competition" id="competition-div">
<div class="fade">
<h1>STUDENTS OF PICT IEEE - COMPETITIONS.</h1>
<br>
<br>
<h3>COMPETITION NAME 1.</h3>
<br>
<br>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip
ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip
ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
</p>
</div>
</section>
--->
<br id="projects-div">
<br>
<br>
<br>
<section class="Projects">
<div class="fade">
<h1>PICT IEEE STUDENT BRANCH - PROJECTS</h1>
</div>
</section>
<br>
<br>
<!--Projects-->
<section class="parallax1">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>WALLSTREET</h2>
</div>
<div class="content">
<p>
Wallstreet is a technological simulation of the stock market created as the ideal platform to engage your intrest in the world of finance, Submit trades in a virtual environment before you start risking
your own capital. <br><br>
-<i class="name_list">Purvesh Jain</i>
</p>
<div class="bttn-cont">
<a class="bttn" href="#wallstreet">
Read More
<span class="line-1"></span>
<span class="line-2"></span>
<span class="line-3"></span>
<span class="line-4"></span></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>DLOUD</h2>
</div>
<div class="content">
<p>
Dloud : Distributed Cloud Computing generalizes the cloud computing model to position,
process, and serve data and applications from geographically distributed sites to meet
requirements for performance, redundancy and regulations.<br>
<br>
-<i class="name_list">Purvesh Jain</i>
</p>
<div class="bttn-cont">
<a class="bttn" href="#dloud">
Read More
<span class="line-1"></span>
<span class="line-2"></span>
<span class="line-3"></span>
<span class="line-4"></span></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Facial Expression Recognition</h2>
</div>
<div class="content">
<p>
The project is built to detect the expression of a human face first it is required to
detect the different facial features such as the movements of eye, nose, lips, etc. The
gray scale images of the face is used by the system to classify basic emotions. <br>
<br>
-<i class="name_list">Yash Sonar</i>
</p>
<div class="bttn-cont">
<a class="bttn" href="#fer">
Read More
<span class="line-1"></span>
<span class="line-2"></span>
<span class="line-3"></span>
<span class="line-4"></span></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Carbon Footprint Calculator</h2>
</div>
<div class="content">
<p>
This projects aims to tackle climate change and support impoverished communities across
the world by calculating the carbon footprint of the individual by taking into
consideration various factors.<br>
<br>
-<i class="name_list">Tanmay Pardeshi</i>
</p>
<div class="bttn-cont">
<a class="bttn" href="#cfc">
Read More
<span class="line-1"></span>
<span class="line-2"></span>
<span class="line-3"></span>
<span class="line-4"></span></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Covid-19 Pneumonia Detection</h2>
</div>
<div class="content">
<p>
In light of Covid-19 taking over the world, this project has been developed to identity
infected patients and uses the concepts of Transfer Learning and uses a convolutional
base from a pretrained model.<br>
<br>
-<i class="name_list">Anuraag Shankar, Asawari Walkade, Tanusri Bhowmick and Yash
Sonar</i>
</p>
<div class="bttn-cont">
<a class="bttn" href="#cpd">
Read More
<span class="line-1"></span>
<span class="line-2"></span>
<span class="line-3"></span>
<span class="line-4"></span></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>VOTING PLATFORM</h2>
</div>
<div class="content">
<p>This platform was developed for voting photos/sketches using QR Codes in exhibition -
Picsoreel (by college student group Pictoreal). The platform used barcode based ID Cards
of students to confirm identity.<br>
<br>
-<i class="name_list">Tanmay Pardeshi and Kaustubh Odak </i>
</p>
<div class="bttn-cont">
<a class="bttn" href="#vp">
Read More
<span class="line-1"></span>
<span class="line-2"></span>
<span class="line-3"></span>
<span class="line-4"></span></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>CHAT APP</h2>
</div>
<div class="content">
<p>
Chat App:
This app is made using Node.js in the backend and basic HTML, CSS and JS in the front
end. The app also uses Express.js to create API endpoints that can be accessed by users.
<br><br>
-<i class="name_list">Yash Sonar</i>
</p>
<div class="bttn-cont">
<a class="bttn" href="#ca">
Read More
<span class="line-1"></span>
<span class="line-2"></span>
<span class="line-3"></span>
<span class="line-4"></span></a>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</section>
<section class="Projects" id="projects-div">
<div class="fade">
<!--<h1>STUDENTS OF PICT IEEE - PROJECTS</h1>-->
<br id="wallstreet">
<br>
<br>
<h3>WALLSTREET</h3>
<br>
<br>
<p>Wallstreet is a stock market simulator, where the players get an opportunity to earn truckloads
of virtual money. All that the players have to do is, follow the news, select the stock and wait for
the price to skyrocket. On the flip side, they learn how to recover losses from stocks that have
tanked.
The biggest takeaway from the Wallstreet is that the inexperienced players leave with a huge
understanding about the stock market and are ready to step out into the street to make some
real money!
This platform made it's debut at PISB's anual technical festival, the game successfully handled 1000+
players flawlessly.
<br><br><a class="bton bton-icon bton-github" href="https://github.com/ks2334/Wallstreet"
target="blank"><i class="fab fa-github"></i><span>Git Hub</span></a>
</p>
<br id="dloud">
<br>
<br>
<h3>THE DISTRIBUTED CLOUD</h3>
<br>
<br>
<p>Dloud - The Distributed Cloud, here we tried to create our own cloud storage system in a
Distributed way.
The main aim of our project- Distributed Cloud is to achieve higher speeds as compared to
standard FTP server and to utilize free space on all desktops in a certain lab. The ‘Dloud’
contains multiple paths for files to be uploaded to data servers as well as makes way for faster
retrieval of huge files like movies. Due to multi-threading, we achieve high speed as compared
to the single link FTP servers. This helps in utilizing free space available of huge number of
computers in the campus in a secure way as the data is split up and distributed on the network.
<br><br><a class="bton bton-icon bton-github" href="https://github.com/bpagare6/Dloud" target="blank"><i
class="fab fa-github"></i><span>Git Hub</span></a>
</p>
<br id="fer">
<br>
<br>
<h3>FACIAL EXPRESSION RECOGNITION MODEL</h3>
<br>
<br>
<p>This model carried out the task of Facial Expression Recognition using a Convolutional Neural Network
(CNN). This CNN was implemented using Keras backed by Tensorflow. This study proposes a learning emotion
recognition model, which consists of three stages: Feature extraction, subset feature and emotion
classifier. Around a 1000 images belonging to each expression category were used to train the CNN. The
CNN is hosted online by using Flask which is a backend framework in Python. Users can see the real time
implementation using the front camera of their laptops.
</p>
<br id="cfc">
<br>
<br>
<h3>CARBON FOOTPRINT CALCULATOR</h3>
<br>
<br>
<p>A carbon footprint is defined as the total amount of greenhouse gases produced to directly and indirectly
support human activities, usually expressed in equivalent tons of carbon dioxide (CO2).The carbon
footprint is a very powerful tool to understand the impact of personal behaviour on global warming. Most
people are shocked when they see the amount of CO2 their activities create! If you personally want to
contribute to stop global warming, the calculation and constant monitoring of your personal carbon
footprint is essential. This project is a simple web app to calculate carbon footprint emissions of a
user in day to day life. With the help of Django to create the backend of the web server, SQLite for the
database, while simultaneously integrating the website's front end using HTML,CSS and Javascript. An API
of the maharashtra state electric board is used for consumer details.
<br><br><a class="bton bton-icon bton-github" href="https://github.com/tanmaypardeshi/CarbonFootprint"
target="blank"><i class="fab fa-github"></i><span>Git Hub</span></a>
</p>
<br id="cpd">
<br>
<br>
<h3>COVID-19 PNEUMONIA DETECTION MODEL</h3>
<br>
<br>
<p>This model is a Convolutional Neural Network that uses the concepts of Transfer Learning. It uses a
Convolution base of a pretrained model that helped users to detect which X-ray images have Pneumonia and
which don’t. Transfer Learning was necessary to be used because of the limited number of images
available to train the model. This model achieved a whopping accuracy of 99% with a 5-fold cross
validation on the total dataset conatining 591 images. This application is very trustworthy for
implementation in the real world and is ready for deployment.
<br><br><a class="bton bton-icon bton-github"
href="https://github.com/Yash-567/Covid-19_X-Ray_Detection" target="blank"><i
class="fab fa-github"></i><span>Git Hub</span></a>
</p>
<br id="vp">
<br>
<br>
<h3>QR CODE BASED VOTING PLATFORM</h3>
<br>
<br>
<p>A working project used as an online voting platform with a QR Code and Barcode scanner.<br>
Authentication :<br>
Volunteers register the audience from admin login (/adminlogin) using barcode scanner. Once registered, the audience are able to login from the home page(/) by scanning their ID Card barcode. This is done to ensure that no one votes twice.<br>
Voting :<br>
Once logged in, audience need to scan the QR Code of the photo/sketch they want to vote.
(/vote). Once the audience has finished voting, their votes are submitted for calculation.<br>
Results :<br>
The results are calculated at runtime at route/count (accessible only to the admin and
volunteers).
<br><br><a class="bton bton-icon bton-github"
href="https://github.com/tanmaypardeshi/QR-Code-Based-Voting-Platform" target="blank"><i
class="fab fa-github"></i><span>Git Hub</span></a>
</p>
<br id="ca">
<br>
<br>
<h3>CHAT APP</h3>
<br>
<br>
<p>
This app is made using Node.js in the backend and basic HTML, CSS and JS in the front end. The app
also uses Express.js to create API endpoints that can be accessed by users. The app is hosted online
on Heroku. Users can join rooms to chat with each other. The communication of the messages is done
using Socket.io which can be used with Node.js to send (emit) and receive messages. There is no
database used in this for data privacy and the data is deleted as soon as the user leaves the chat
room.
<br><br><a class="bton bton-icon bton-github" href="https://github.com/Yash-567/Chat-App"
target="blank"><i class="fab fa-github"></i><span>Git Hub</span></a>
<a class="bton bton-icon bton-github" href="https://yash-567-chat-app.herokuapp.com/" target="blank"><i
class="fas fa-desktop"></i><span>See Project</span></a>
</p>
</div>
</section>
<!--Hackathons-->
<br id="hackathons-div">
<br>
<br>
<section class="Hackathons">
<div class="fade">
<h1>PICT IEEE STUDENT BRANCH - HACKATHONS</h1>
</div>
</section>
<br>
<br>
<section class="parallax1">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Covid-19 Global Hackathon</h2>
</div>
<div class="content">
<p>
Covid-19 Global Hackathon organised by DevPost brought about thousands of students from all over the world to compete and to use technology to bring about effective changes to help curb the pandemic. <br>
<br>
-<i class="name_list">Aditya Vadalkar, Tanuj Agrawal and Tanmay Jain</i>
</p>
<div class="bttn-cont">
<a class="bttn" href="#cs">
Read More
<span class="line-1"></span>
<span class="line-2"></span>
<span class="line-3"></span>
<span class="line-4"></span></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Pune Open Data Hackathon</h2>
</div>
<div class="content">
<p>
The open data hackathon was conceptualized as an event where problems & challenges faced
by the citizens are presented to the participants. The hackathon draws in the most skilled technological students invested in different domains.<br>
<br>
-<i class="name_list">Yash Sonar</i>
</p>
<div class="bttn-cont">
<a class="bttn" href="#pod">
Read More
<span class="line-1"></span>
<span class="line-2"></span>
<span class="line-3"></span>
<span class="line-4"></span></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Pune Open Data Hackathon</h2>
</div>
<div class="content">
<p>
Cleaning and Analysis of New Vehicles Registrations in Maharashtra. Contents include
cleaned data and visualisations of various regions' RTO vehicle registrations in
Maharashtra through years 2000-2017.
<br>
<br>
-<i class="name_list">Aboli Marathe, Hussain Naharpurawala, Mufaddal Diwan and Saarth
Deshpande</i>
</p>
<div class="bttn-cont">
<a class="bttn" href="#pod1">
Read More
<span class="line-1"></span>
<span class="line-2"></span>
<span class="line-3"></span>
<span class="line-4"></span></a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>CDAC<br>HACKATHON</h2>
</div>
<div class="content">
<p>
The proposers of selected ideas prove their Ideas by building a prototype for
establishing the Proof of Concept and are required to demonstrate their prototypes and
make presentations to contribute to a noble cause.
<br><br>
-<i class="name_list">Harsh Sakhrani, Kaustubh Odak, Saloni Parekh, Snigdha Singh and
Tanmay Pardeshi </i>
</p>
<div class="bttn-cont">
<a class="bttn" href="#clasp">
Read More
<span class="line-1"></span>
<span class="line-2"></span>
<span class="line-3"></span>
<span class="line-4"></span></a>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</section>
<section class="Hackathons" id="hackathons-div">
<div class="fade">
<!--<h1>STUDENTS OF PICT IEEE - HACKATHONS</h1>-->
<br id="cs">
<br>
<br>
<h3>COVID-19 GLOBAL HACKATHON (RANK: WINNERS -TOP 89)</h3>
<br>
<br>
<p>
What it does:<br>
Corona Spy is a smartphone app aimed at tracking the spread of COVID-19 among its users by forming links
among them as they come in close contact with each other. WIth the forming of such links, a web
structure gets formed which links users infected by the virus to those who are at maximum risk of
getting infected due to contact. This structure extends furthermore to track users who may need to be
tested or quarantined in the near future. The objective of the web structure is to make tracking of
potential victims of COVID-19 streamlined and efficient which will help reduce the R0(R-Knaught) value
of the disease significantly.<br><br>
How it does it:<br>
Corona-Spy makes use of the BLE(Bluetooth Low Energy) beacon technology of a smartphone to detect other
BLE beacon equipped smartphones in a defined range of area around it. The range of area is defined by
setting an RSSI threshold to limit the range of Bluetooth signals fetched by the beacon. This will
ensure that users who are not in the close vicinity of a particular user remain undetected. To form a
link between two users, a unique ID of the two users is exchanged via the BLE Beacon and gets stored in
each other’s databases along with the time, date and geolocation information of the location where the
contact occurred. Every user of the app has his/her unique ID associated with their account, which will
help identify them during the tracking process. The UUID of every app user’s beacon will be the same to
distinguish the BLE signals received by the users of the app from any stray bluetooth signals.
<br><br><a class="bton bton-icon bton-github" href="https://github.com/tanuj223" target="blank"><i
class="fab fa-github"></i><span>Git Hub</span></a>
<a class="bton bton-icon bton-github" href="https://github.com/adityavadalkar" target="blank"><i
class="fab fa-github"></i><span>Git Hub</span></a>
<a class="bton bton-icon bton-github" href="https://github.com/tanmayj000" target="blank"><i
class="fab fa-github"></i><span>Git Hub</span></a>
<a class="bton bton-icon bton-github" href="https://devpost.com/software/corona-spy" target="blank"><i
class="fas fa-desktop"></i><span>See Project</span></a>
</p>
<br id="pod">
<br>
<br>
<h3>PUNE OPEN DATA HACKATHON (RANK: 3)</h3>
<br>
<br>
<p>
The hackathon is conducted like a laboratory session where the students used methods and techniques to
extract knowledge and insights from the data in various forms. They work towards developing solutions
for the problem statements. Experienced professionals were available to guide the participants during
the session – to generate ideas and steer them towards the right solution approach. We prepared a
geospatial analysis of taxation rates and property rates information across Pune. This analysis provided
clear understanding of the data which otherwise was difficult to comprehend by normal individuals.
</p>
<br id="pod1">
<br>
<br>
<h3>PUNE OPEN DATA HACKATHON (RANK: WINNERS)</h3>
<br>
<br>
<p>Contents include cleaned data and visualisations of various regions' RTO vehicle registrations in
Maharashtra through years 2000-2017.<br>
Tasks:<br>
1. Create a secondary dataset containing all years' data combined together.<br>
2. Plot a graph of Population Density versus New Registrations for the year 2011.<br>
3. Plot various region-wise graphs for change in number of various types of vehicles such as two
wheelers, cars, commercial vehicles etc. over the given period of 17 years. (60+ graphs have been
plotted) <br>
4. Plot various region-wise pie charts comparing change in number of private / commercial vehicles over
the given period of 17 years. (15+ pie charts have been plotted)<br>
5. Create an interactive Webpage using Mapping for easier access to the visualized data {A map of
Maharashtra with boundaries of various regions, and on clicking each region, one is able to see numerous
visualizations pertaining to that region.}<br>
6. Write a Python code to visualize CSV / TXT file and save the visualized line graph in .jpeg or .png
format.
<br><br><a class="bton bton-icon bton-github"
href="https://github.com/saarthdeshpande/Pune-Open-Data-Hackathon-2019" target="blank"><i
class="fab fa-github"></i><span>Git Hub</span></a>
</p>
<br id="clasp">
<br>
<br>
<h3>SAMHAR COVID-19 HACKATHON (RANK: TOP 25)</h3>
<br>
<br>
<p>CLASP - COVID-19 Literature Analysis and Summarization Platform.
Backend implemented using flask and frontend is in React. REST APIs are also used in this project.
Features such as Text Summarization, Information Retrieval, Question and Answers have been implemented.
New features such as real time news and anomaly detection is going to be used for the final project.
Web deployment using Nginx, Gunicorn has been done on Microsoft Azure VM.
Users can filter documents and search for keywords or similar images with the help of this platfrom.
<br><br><a class="bton bton-icon bton-github" href="http://104.211.28.73/" target="blank"><i
class="fas fa-desktop"></i><span>See Project</span></a>
</p>
<br>
<br>
</div>
</section>
<!---Research Papers
<section class="parallax1">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Slide One</h2>
</div>
<div class="content">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<a href="#r1">Read More</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Slide Two</h2>
</div>
<div class="content">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card">
<div class="sliderText">
<h2>Slide Three</h2>
</div>
<div class="content">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="swiper-slide">