-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1162 lines (1150 loc) · 83.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="simran biswas" />
<meta name="author" content="simran biswas" />
<title>Simran Biswas</title>
<!-- Favicon-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon-16x16.png">
<link rel="manifest" href="assets/img/site.webmanifest">
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.15.1/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<link rel="stylesheet" href="css/circle.css">
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top" id="mainNav" style="background: #000;">
<div class="container" id="nn">
<a class="navbar-brand js-scroll-trigger" href="#page-top"><img src="assets/img/apple-touch-icon.png" style="width: 50px; height: 50px;"></a>
<button class="navbar-toggler navbar-toggler-right text-uppercase font-weight-bold bg-primary text-white rounded" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#portfolio">Projects</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#about">About</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#skills">Skills</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#work">Work Experience</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#contact">Connect</a></li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<div id="particles-js"></div>
<header class="masthead bg-primary text-white text-center">
<div class="container d-flex align-items-center flex-column" >
<!-- Masthead Avatar Image-->
<!--img class="masthead-avatar mb-5" src="assets/img/avataaars.svg" alt="" /-->
<!-- Masthead Heading-->
<h1 class="masthead-heading mb-0" id="he">Hi! I'm Simran Biswas 👋</h1>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-dice-d20"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Masthead Subheading-->
<p class="masthead-subheading font-weight-light mb-0" id="det">Developer <span>⚆</span> Coder <span>⚆</span> Learner</p>
</div>
</header>
<!-- Portfolio Section-->
<section class="page-section portfolio" id="portfolio">
<div class="container">
<!-- Portfolio Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Projects</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-project-diagram"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Grid Items-->
<!-- Portfolio Grid Items-->
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#portfolioModal9">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/plag.PNG" alt="" />
</div>
<div class="row justify-content-center">
<h5><br>PlagChecker - Plagiarism Checker for Assignments</h5>
</div>
</div>
<!--Portfolio Item 1-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#portfolioModal8">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/cb.png" alt="" />
</div>
<div class="row justify-content-center">
<h5><br>CoviBlog - Blogsite for Latest Covid Updates</h5>
</div>
</div>
<!-- Portfolio Item 1-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#portfolioModal1">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/eat.png" alt="" />
</div>
<div class="row justify-content-center">
<h5><br>Eatigo! - A Mern Stack Website</h5>
</div>
</div>
<!-- Portfolio Item 2-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#portfolioModal2">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/stick.png" alt="" />
</div>
<div class="row justify-content-center">
<h5 style="text-align: center;"><br>Stick-It Notes - PWA using JavaScript ES6</h5>
</div>
</div>
<!-- Portfolio Item 5-->
<div class="col-md-6 col-lg-4 mb-5 mb-md-0">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#portfolioModal5">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/textract-icon.jpeg" alt="" />
</div>
<div class="row justify-content-center">
<h5 style="text-align: center;"><br>Textract - Text Extractor for Docs & Images</h5>
</div>
</div>
<!-- Portfolio Item 3-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#portfolioModal3">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/ap.png" alt="" />
</div>
<div class="row justify-content-center">
<h5 style="text-align: center;"><br>Police Inventory Management System for COVID-19 Crisis</h5>
</div>
</div>
<!-- Portfolio Item 4-->
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#portfolioModal4">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/cnn.png" alt="" />
</div>
<div class="row justify-content-center">
<h5 style="text-align: center;"><br>Handwritten Digit Recognition using CNN</h5>
</div>
</div>
<!-- Portfolio Item 7-->
<div class="col-md-6 col-lg-4 mb-5 mb-md-0">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#portfolioModal7">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/wtapp.png" alt="" />
</div>
<div class="row justify-content-center">
<h5 style="text-align: center;"><br>World_Time App</h5>
</div>
</div>
<!-- Portfolio Item 6-->
<div class="col-md-6 col-lg-4 mb-5 mb-md-0">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#portfolioModal6">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/tsf.png" alt="" />
</div>
<div class="row justify-content-center">
<h5 style="text-align: center;"><br>The Sparks Foundation Donation Page</h5>
</div>
</div>
</div>
</div>
</section>
<!-- About Section-->
<section class="page-section bg-primary text-white mb-0" id="about">
<div class="container">
<!-- About Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-white">About Me</h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-user-alt"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="row justify-content-around">
<div class="col-lg-4 col-md-6 d-flex justify-content-center">
<div class="polaroid">
<img src="assets/img/portfolio/simran.jpg" class="d-block w-100" alt="simran biswas" id="sim">
<div class="container">
<p><br></p>
</div>
</div>
</div>
<div class="col-lg-7 col-md-6 "><p id="ab"><br>
I'm currently working as a Software Developer at Dolat Capital, a HFT firm in Mumbai. The technology stack consists of C++/C, C#, shell scripting and RTI.
<br>I graduated in the year 2022 from Fr. Conceicao Rodrigues College of Engineering with a CGPA of 9.81 & have
interests in <i id="cpp">Software Development in C++, Java or Python</i> and <i id="cpp">Full-Stack development</i> as well. I like competitive coding and am super active on <a href="https://leetcode.com/simranbiswas/" target="_blank" id="cpp">Leetcode</a> :)<br>
<br>I am currently looking for a <i id="cpp">new</i> opportunities at an organisation where I can give my best & develop useful & optimal software solutions.
Being a quick learner, I have a pragmatic & logical approach towards every problem. <br>
</p>
</div>
</div>
<!-- About Section Button-->
</div>
</section>
<section class="page-section portfolio" id="skills">
<div class="container">
<!-- About Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Skills & Certifications</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-laptop-code"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="row">
<div class="col col-sm-10">
<div class="row">
<div class="col col-lg-2 align-self-start">
<h4 style="color:#2c3e50;"> Languages </h4>
</div>
<div class="col-md-auto align-self-end">
<h4 style="color:#2c3e50;">
<a title="Python"><img src="assets/img/portfolio/python.svg" alt ="Python" width="50px" height="50px" /></a>
<a title="Java"><img src="assets/img/portfolio/java.svg" alt ="Java" width="50px" height="50px" /></a>
<a title="C"><img src="assets/img/portfolio/c.png" alt ="C" width="50px" height="50px" /></a>
<a title="C++"><img src="assets/img/portfolio/cpp.png" alt ="Cpp" width="50px" height="50px" /></a>
<br/>
</h4>
</div>
</div><br>
<div class="row">
<div class="col col-lg-2 align-self-start">
<h4 style="color:#2c3e50;"> Frontend </h4>
</div>
<div class="col-md-auto align-self-end">
<h4 style="color:#2c3e50;">
<a title="HTML5"><img src="assets/img/portfolio/html.png" alt ="HTML5" width="50px" height="50px" /></a>
<a title="CSS3"><img src="assets/img/portfolio/css.png" alt ="CSS3" width="50px" height="50px" /></a>
<a title="React"><img src="assets/img/portfolio/react.svg" alt ="React" width="50px" height="50px" /></a>
<a title="Bootstrap"><img src="assets/img/portfolio/bootstrap.svg" alt ="Bootstrap" width="60px" height="60px" /></a>
<br/>
</h4>
</div>
</div>
<br>
<div class="row">
<div class="col col-lg-2 align-self-start">
<h4 style="color:#2c3e50;"> Backend </h4>
</div>
<div class="col-md-auto align-self-end">
<h4 style="color:#2c3e50;">
<a title="NodeJS"><img src="assets/img/portfolio/nodejs.svg" alt ="NodeJS" width="70px" height="50px" /></a>
<a title="ExpressJS"><img src="assets/img/portfolio/expressjs.svg" alt ="ExpressJS" width="75px" height="50px" /></a>
<a title="Django"><img src="assets/img/portfolio/django.svg" alt ="Django" width="78px" height="50px" /></a>
<a title="Flask"><img src="assets/img/portfolio/flask.svg" alt ="Flask" width="75px" height="50px" /></a>
<br/>
</h4>
</div>
</div>
<br>
<div class="row">
<div class="col col-lg-2 align-self-start">
<h4 style="color:#2c3e50;"> Databases </h4>
</div>
<div class="col-md-auto align-self-end">
<h4 style="color:#2c3e50;">
<a title="MySQL"><img src="assets/img/portfolio/mysql.svg" alt ="MySQL" width="75px" height="55px" /></a>
<a title="MongoDB"><img src="assets/img/portfolio/mongodb.svg" alt ="MongoDB" width="90px" height="65px" /></a>
<br/>
</h4>
</div>
</div><br>
<div class="row">
<div class="col col-lg-2 align-self-start">
<h4 style="color:#2c3e50;"> Others </h4>
</div>
<div class="col-md-auto align-self-end">
<h4 style="color:#2c3e50;">
<a title="TensorFlow"><img src="assets/img/portfolio/tensorflow.svg" alt ="TensorFlow" width="90px" height="70px" /></a>
<a title="OpenCV"><img src="assets/img/portfolio/opencv.svg" alt ="OpenCV" width="90px" height="70px" /></a>
<a title="Numpy"><img src="assets/img/portfolio/numpy.svg" alt ="Numpy" width="90px" height="70px" /></a>
<a title="Git"><img src="assets/img/portfolio/git.svg" alt ="Git" width="80px" height="50px" /></a>
<a title="Arduino"><img src="assets/img/portfolio/arduino.svg" alt ="Arduino" width="80px" height="50px" /></a>
<br/>
</h4>
</div>
</div>
</div><br>
</div><br>
</div>
</div>
</section>
<!-- About Section-->
<section class="page-section bg-primary text-white mb-0">
<div class="container">
<!-- About Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-white">Certifications</h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-certificate"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="row justify-content-center">
<div class="col col-md-6">
<a href="https://google.qwiklabs.com/public_profiles/7b172ad7-a9bb-48a7-b1a9-de6b5a346b57" style="color: #fff; text-decoration: none;" target="_blank"><h5 id="certif"><img src="assets/img/portfolio/gcp.svg" alt ="GCP" width="90px" height="55px"/> Google Cloud Platforms Skill Challenges</h5></a>
</div>
<div class="col col-md-6">
<a href="https://www.coursera.org/account/accomplishments/specialization/9JYZXJUAGG3V" style="color: #fff; text-decoration: none;" target="_blank"><h5 id="certif"><img src="assets/img/portfolio/co.svg" alt ="Coursera" width="90px" height="55px"/> Web Applications for Everybody</h5></a>
</div>
</div>
<div class="row justify-content-center">
<div class="col col-md-6">
<a href="https://www.coursera.org/account/accomplishments/verify/TQE3T2RRZASP" style="color: #fff; text-decoration: none;" target="_blank"><h5 id="certif"><img src="assets/img/portfolio/co.svg" alt ="coursera" width="90px" height="55px"/> NLP in TensorFlow</h5></a>
</div>
<div class="col col-md-6">
<a href="https://www.udemy.com/certificate/UC-9a64e114-7eeb-4df4-a1ce-93fe4f0729a6/" style="color: #fff; text-decoration: none;" target="_blank"><h5 id="certif"><img src="assets/img/portfolio/ud.svg" alt ="Udemy" width="90px" height="55px"/> JavaScript ES6</h5></a>
</div>
</div>
<div class="row justify-content-center">
<div class="col col-md-6">
<a href="https://www.coursera.org/account/accomplishments/verify/SZGCBPZMHJF9" style="color: #fff; text-decoration: none;" target="_blank"><h5 id="certif"><img src="assets/img/portfolio/co.svg" alt ="coursera" width="90px" height="55px"/> Machine Learning</h5></a>
</div>
<div class="col col-md-6">
<a href="https://www.coursera.org/account/accomplishments/verify/DHHFM8MJ55DL" style="color: #fff; text-decoration: none;" target="_blank"><h5 id="certif"><img src="assets/img/portfolio/co.svg" alt ="Coursera" width="90px" height="55px"/> Python: Pillow, TensorFlow & OpenCV</h5></a>
</div>
</div>
<div class="row justify-content-end">
<h5 style="color: #2c3e50;"><i>And many more...</i></h5>
</div>
</div>
</section>
<section class="page-section portfolio" id="work">
<div class="container">
<!-- About Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Work Experience</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-laptop-code"></i></div>
<div class="divider-custom-line"></div>
</div>
<div class="page">
<div class="timeline">
<div class="timeline__group">
<span class="timeline__year time" aria-hidden="true">2022 - present</span>
<div class="timeline__cards">
<div class="timeline__card card">
<header class="card__header">
<time class="time" datetime="2008-09-01">
<span class="time__day">June 2022 - </span>
<span class="time__month">Present</span>
</time>
<h3 class="card__title r-title">Software Developer at
<a href="https://www.dolatcapital.com/" target="_blank">Dolat Capital</a></h3>
</header>
<div class="card__content">
<p>
<ul>
<li>Developed the order management system library which connects to a strategy specific engine and transmits packets to the National Stock Exchange of India and places orders in NSE acting as a two way communication channel.</li>
<li>Consistently refining & adding features to multiple UI applications for in-house traders & optimizing existing legacy code.</li>
<li>Working on C++, C#, shell scripting, RTI.</li>
</ul>
</p>
</div>
</div>
</div>
<div class="timeline__cards">
<div class="timeline__card card">
<header class="card__header">
<time class="time" datetime="2008-09-01">
<span class="time__day">March 2022 - </span>
<span class="time__month">June 2022</span>
</time>
<h3 class="card__title r-title">Software Development Intern at
<a href="https://www.linkedin.com/company/suprdailybyswiggy/" target="_blank">SuprDaily by Swiggy</a></h3>
</header>
<div class="card__content">
<p>
<ul>
<li>Worked with the Category-Buy team wherein I restructured and built the vendor portal (an in-house tool to track vendors) for better operations, developed multiple cron jobs to auto delete AWS forecast records and optimised legacy code by eliminating redundant APIs and classes.</li>
<li>Worked on Python/Django, PostgreSQL, AWS forecast modules, Bitbucket, Retool and DataDog.</li>
</ul>
</p>
</div>
</div>
</div>
</div>
<div class="timeline__group">
<span class="timeline__year time" aria-hidden="true">2021</span>
<div class="timeline__cards">
<div class="timeline__card card">
<header class="card__header">
<time class="time" datetime="2008-09-01">
<span class="time__day">November 2021 - </span>
<span class="time__month">January 2022</span>
</time>
<h3 class="card__title r-title">Software Developer Intern at
<a href="https://www.cantileverlabs.com/" target="_blank">Cantilever Labs</a></h3>
</header>
<div class="card__content">
<p>
<ul>
<li>Working with the backend team and designing the test cases for programs which are a part of the coursework for the consumers.</li>
<li>Test cases are designed in Java, C++ and Python and reformed and updated them on MongoDB Compass.</li>
</ul>
</p>
</div>
</div>
</div>
<div class="timeline__cards">
<div class="timeline__card card">
<header class="card__header">
<time class="time" datetime="2008-09-01">
<span class="time__day">February 2021 - </span>
<span class="time__month">March 2021</span>
</time>
<h3 class="card__title r-title">Web Developer & Design Intern at
<a href="https://www.thesparksfoundationsingapore.org/" target="_blank">The Sparks Foundation</a></h3>
</header>
<div class="card__content">
<p>
<ul>
<li>Developed and designed a donation page for The Sparks Foundation.</li>
<li>Worked on the backend and integrated Razorpay as a third-party payment gateway to accept the donation money.</li>
</ul>
</p>
</div>
</div>
</div>
</div>
<div class="timeline__group">
<span class="timeline__year time" aria-hidden="true">2020</span>
<div class="timeline__cards">
<div class="timeline__card card">
<header class="card__header">
<time class="time" datetime="2008-07-14">
<span class="time__day">July 2020 - </span>
<span class="time__month">september 2020</span>
</time>
<h3 class="card__title r-title">Software Developer Intern at
<a href="https://cppsecrets.com/" target="_blank">cppsecrets.com</a>
</h3>
</header>
<div class="card__content">
<p>
<ul>
<li>Researched and analysed python libraries & APIs namely Django Rest Framework, JWT authorization, protect API URL and HTML5lib.</li>
<li>Articulated the summarization of the research and published it for the website. Some samples of my article can be viewed in the
<a href="#articles">next section</a>.</li>
</ul>
</p>
</div>
</div>
</div>
</div>
<div class="timeline__group">
<span class="timeline__year time" aria-hidden="true">2019</span>
<div class="timeline__cards">
<div class="timeline__card card">
<header class="card__header">
<time class="time" datetime="2008-08-18">
<span class="time__day">July 2019 - </span>
<span class="time__month">June 2020</span>
</time>
<h3 class="card__title r-title">Project Cell Member (Technical Team at Fr.CRCE)</h3>
</header>
<div class="card__content">
<p>
<ul>
<li>I logically programmed robots, mini-machines for their proper functioning & simulation.</li>
<li>Computed designed algorithms on Arduino and automated various kinds of robots for e.g. Bluetooth bot, Gyro bot, automatic medicine vending machine, disaster management bot etc.</li>
</ul>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="page-section bg-primary text-white mb-0" id="articles">
<div class="container">
<!-- About Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-white">Articles</h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-pencil-alt"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="row justify-content-center">
<h4 style="text-align: center;">Here is a curated list of some of the articles I wrote on <br>Django REST framework</h4>
</div><br>
<div class="row justify-content-center">
<div class="col-lg-4 d-flex justify-content-center">
<div class="card item-card card-block " style="width: 18rem;">
<img class="card-img-top" src="assets/img/portfolio/dj.PNG" alt="Card image cap">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Django Access Rest API Endpoint with Authorization</h5>
<p class="card-text">Access API Endpoint by exposing it in Token Authentication and adding it to User Module.</p>
<a href="https://cppsecrets.com/users/69119810511511997115971151051091149711064103109971051084699111109/Django-Access-Rest-API-Endpoint.php"
class="btn btn-primary mt-auto" target="_blank">View Article</a>
</div>
</div>
</div>
<div class="col-lg-4 d-flex justify-content-center">
<div class="card item-card card-block " style="width: 18rem;">
<img class="card-img-top" src="assets/img/portfolio/dj2.PNG" alt="Card image cap">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Generating Django Rest Framework JWT Refresh Token</h5>
<p class="card-text">Django Rest Framework JWT offers the system of Token Authentication for client-server setups in applications.</p>
<a href="https://cppsecrets.com/users/69119810511511997115971151051091149711064103109971051084699111109/Generate-Django-Rest-Framework-JWT-Refresh-Token.php"
class="btn btn-primary mt-auto" target="_blank">View Article</a>
</div>
</div>
</div>
<div class="col-lg-4 d-flex justify-content-center">
<div class="card item-card card-block" style="width: 18rem;">
<img class="card-img-top" src="assets/img/portfolio/dj1.PNG" alt="Card image cap">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Django Creating Custom Permission for Viewset</h5>
<p class="card-text">Custom Permissions are customized permission you provide to the already existing users on your Django Application.</p>
<a href="https://cppsecrets.com/users/69119810511511997115971151051091149711064103109971051084699111109/Django-Create-Custom-Permission-for-Viewset.php"
class="btn btn-primary mt-auto" target="_blank">View Article</a>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-4 d-flex justify-content-center">
<div class="card item-card card-block " style="width: 18rem;">
<img class="card-img-top" src="assets/img/portfolio/dj4.PNG" alt="Card image cap">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Django Add Permission Authorization in ViewSet</h5>
<p class="card-text">Django REST framework allows you to combine the logic for a set of related views in a single class, called a ViewSet.</p>
<a href="https://cppsecrets.com/users/69119810511511997115971151051091149711064103109971051084699111109/Python-Django-Add-Permission-Authorization-in-ViewSet.php"
class="btn btn-primary mt-auto" target="_blank">View Article</a>
</div>
</div>
</div>
<div class="col-lg-4 d-flex justify-content-center">
<div class="card item-card card-block" style="width: 18rem;">
<img class="card-img-top" src="assets/img/portfolio/dj3.PNG" alt="Card image cap">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Generating Django Rest Framework JWT Token</h5>
<p class="card-text">REST framework provides a number of authentication schemes out of the box, and also allows you to implement custom schemes.</p>
<a href="https://cppsecrets.com/users/69119810511511997115971151051091149711064103109971051084699111109/Generate-Django-Rest-Framework-JWT-Token.php"
class="btn btn-primary mt-auto" target="_blank">View Article</a>
</div>
</div>
</div>
</div>
<!-- About Section Button-->
</div>
</section>
<!-- Contact Section-->
<section class="page-section" id="contact">
<div class="container">
<!-- Contact Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Connect With Me</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fab fa-connectdevelop"></i></div>
<div class="divider-custom-line"></div>
</div><br>
<!-- Contact Section Form-->
<div class="row justify-content-center">
<div class="col-lg-1 d-flex justify-content-center">
<h4 style="color:#2c3e50;"><a href="mailto:biswasasimran@gmail.com" target="_blank" id="cpp">Mail</a> <br/></h4>
</div>
<div class="col-lg-1 d-flex justify-content-center">
<a class="btn btn-outline-dark btn-social mx-1" href="mailto:biswasasimran@gmail.com" target="_blank"><i class="far fa-fw fa-envelope"></i></a>
</div>
</div><br>
<div class="row justify-content-center">
<div class="col-lg-1 d-flex justify-content-center">
<h4 style="color:#2c3e50;"><a href="https://www.linkedin.com/in/simran-biswas/" target="_blank" id="cpp">LinkedIn</a> <br/></h4>
</div>
<div class="col-lg-1 d-flex justify-content-center">
<a class="btn btn-outline-dark btn-social mx-1" href="https://www.linkedin.com/in/simran-biswas/" target="_blank"><i class="fab fa-fw fa-linkedin-in"></i></a>
</div>
</div><br>
<div class="row justify-content-center">
<div class="col-lg-1 d-flex justify-content-center">
<h4 style="color:#2c3e50;"><a href="https://github.com/simranbiswas" target="_blank" id="cpp">Github</a> <br/></h4>
</div>
<div class="col-lg-1 d-flex justify-content-center">
<a class="btn btn-outline-dark btn-social mx-1" href="https://github.com/simranbiswas" target="_blank"><i class="fab fa-fw fa-github"></i></a>
</div>
</div><br>
<!--div class="row justify-content-center">
<div class="col-lg-4 d-flex justify-content-center">
<a class="btn btn-outline-primary mx-1" href="https://drive.google.com/file/d/1OoOvDYtMJQTW5Pp4Q5yNs1CPezhk43WQ/view?usp=sharing" target="_blank"><h4>View My Resume <i class="fas fa-fw fa-file-pdf"></i></h4></a>
</div>
</div-->
</div>
</section>
<!-- Footer-->
<footer class="footer text-center">
<div class="container">
<div class="row justify-content-center">
<!-- Footer Location-->
<div class="col-lg-4 mb-5 mb-lg-0">
<h4 class="text-uppercase mb-4">Location</h4>
<p class="lead mb-0">
📍 Mumbai, <br />
Maharashtra, India.
</p>
</div>
<!-- Footer Social Icons-->
<!-- Footer About Text-->
<div class="col-lg-4">
<h4 class="text-uppercase mb-4">Contact</h4>
<p class="lead mb-0">
<button class="btn btn-outline-light btn-social mx-1"><i class="fas fa-phone-alt"></i></button>
<span style="color: #1fd6b2;">+91-9075952284</span><br>
</p>
</div>
</div>
</div>
</footer>
<!-- Copyright Section-->
<div class="copyright py-4 text-center text-white">
<div class="container"><small>Copyright © <span style="color: #1edfb8;">SB</span> 2023</small></div>
</div>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes)-->
<div class="scroll-to-top d-lg-none position-fixed">
<a class="js-scroll-trigger d-block text-center text-white rounded" href="#page-top"><i class="fa fa-chevron-up"></i></a>
</div>
<!-- Portfolio Modals-->
<!-- Portfolio Modal 9-->
<div class="portfolio-modal modal fade" id="portfolioModal9" tabindex="-1" role="dialog" aria-labelledby="portfolioModal1Label" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary mb-0" id="portfolioModal1Label">PlagChecker </h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<div id="carouselExampleInterval9" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active" data-interval="2000">
<img src="assets/img/portfolio/plag.PNG" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/plag1.PNG" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/plag2.PNG" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleInterval9" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleInterval9" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Portfolio Modal - Text-->
<p class="mb-5"><br>
With the recent surge of pandemic, online classrooms have become inevitable. Be it lectures, exams, submissions everything has shifted to the online mode. But along with online exams and assignments submissions, the increasing rate of students accessing to unfair medium to complete them has increased 10x folds.
Therefore, an application which would check the percentage of plagiarized content in a document and thus encourage students to take genuine efforts to complete their coursework.
User gives a pdf as input and the output displayed is percentage of plagiarized content along with the highlighted text over the actual input document.</p>
<br><h5><i class="fab fa-fw fa-github"></i> <a href="https://github.com/simranbiswas/plagchecker" target="_blank">https://github.com/simranbiswas/plagchecker</a></h5>
<br> <button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 8-->
<div class="portfolio-modal modal fade" id="portfolioModal8" tabindex="-1" role="dialog" aria-labelledby="portfolioModal1Label" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary mb-0" id="portfolioModal1Label">CoviBlog </h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<div id="carouselExampleInterval" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active" data-interval="2000">
<img src="assets/img/portfolio/cb.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/cb1.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/cb2.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/cb3.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/cb4.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/cb5.png" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleInterval" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleInterval" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Portfolio Modal - Text-->
<p class="mb-5"><br>
CoviBlog is a microblogging site where users can interact with people from different spectrums like healthcare, corporate etc.
Users can post, like and comment on the blogsite, have group conversations and also view the latest COVID-19 updates.
It solves the problems in a way that people can signin in one single application without the need to surf through various social media applications to get various covid related updates.</p>
<br><h5><i class="fa fa-fw fa-rocket"></i> <a href="https://coviblog-by-mercury.netlify.app/" target="_blank">https://coviblog-by-mercury.netlify.app/</a></h5>
<h5><i class="fab fa-fw fa-github"></i> <a href="https://github.com/simranbiswas/CoviBlog" target="_blank">https://github.com/simranbiswas/CoviBlog</a></h5>
<br> <button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 1-->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-labelledby="portfolioModal1Label" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary mb-0" id="portfolioModal1Label">Eatigo! - Food Ordering & Delivery Website</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<div id="carouselExampleInterval3" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active" data-interval="2000">
<img src="assets/img/portfolio/eat.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/eat1.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/eat2.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/eat3.png" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleInterval3" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleInterval3" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Portfolio Modal - Text-->
<p class="mb-5"><br>
A website built using React-Redux, NodeJS, MongoDB and Express. It has two interfaces - Admin & User.
User can select from a wide range of restaurants, with applicable filters(location & costs), add to cart and order food.
Admin tracks the order and delivers accordingly. Can also check monthly and weekly statistics.
<br>
<h5><i class="fab fa-fw fa-github"></i> <a href="https://github.com/simranbiswas/Food-Delivery-Website" target="_blank">https://github.com/simranbiswas/Food-Delivery-Website</a></h5></p>
<br><button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 2-->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-labelledby="portfolioModal2Label" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary mb-0" id="portfolioModal2Label">Stick-It Notes</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img/portfolio/stick.png" alt="" />
<!-- Portfolio Modal - Text-->
<p class="mb-5">A virtual Stick-It Notes progressive web application using JavaScript ES6 which can be used on native desktop as well
as installed on mobile as an application.
<br><h5><i class="fa fa-fw fa-rocket"></i> <a href="https://simranbiswas-stickynotes.netlify.app//" target="_blank">https://simranbiswas-stickynotes.netlify.app/</a></h5>
<h5><i class="fab fa-fw fa-github"></i> <a href="https://github.com/simranbiswas/sticky-notes" target="_blank">https://github.com/simranbiswas/sticky-notes</a></h5>
<br><button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 3-->
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-labelledby="portfolioModal3Label" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary mb-0" id="portfolioModal3Label">Police Inventory System</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<div id="carouselExample" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active" data-interval="2000">
<img src="assets/img/portfolio/ap.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/ap1.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/ap2.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/ap3.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="2000">
<img src="assets/img/portfolio/ap4.png" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExample" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExample" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Portfolio Modal - Text-->
<p class="mb-5"><br>The purpose of this website is that during the COVID-19 crisis, it has become difficult for police department to cope up and maintain the records of each and every detail, whether it is patient lists, new hospitals emerging for treatment, cropping of new containments zones due to increasing number of patients etc.
The main factor of maintaining a registry of all the crime records whether they are solved or pending is also resolved in this software.
The whole project is implemented using <b>WAMP Stack</b> i.e. the database is hosted on MySQL server and the connection is done using PHP.
<br><h5><i class="fab fa-fw fa-github"></i> <a href="https://github.com/simranbiswas/Police-Inventory-for-COVID-crisis" target="_blank">https://github.com/simranbiswas/Police-Inventory-for-COVID-crisis</a></h5>
</p><br>
<button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 4-->
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-labelledby="portfolioModal4Label" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary mb-0" id="portfolioModal4Label">Handwritten Digit Recognition using CNN</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img/portfolio/cnn.png" alt="" />
<!-- Portfolio Modal - Text-->
<p class="mb-5">A Convolutional Neural Network for Handwritten Digit Classification is developed wherein MNIST dataset is used for training the model.
The dataset consists of 60,000 small square 28×28 pixel grayscale images of handwritten single digits between 0 and 9. The average classification accuracy of
this model is 95.06%.<br><h5><i class="fab fa-fw fa-github"></i> <a href="https://github.com/simranbiswas/Digit-Recognition" target="_blank" >https://github.com/simranbiswas/Digit-Recognition</a></h5>
</p><br>
<button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 5-->
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-labelledby="portfolioModal5Label" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary mb-0" id="portfolioModal5Label">Textract</h2>
<!-- Icon Divider-->