-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
908 lines (815 loc) · 47.9 KB
/
index.html
File metadata and controls
908 lines (815 loc) · 47.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
<!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="" />
<meta name="author" content="" />
<title>Fardeen Mazumdar</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/img/Logo.PNG" />
<!-- 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 -->
<link href="css/styles.css" rel="stylesheet" />
<script src="js/scripts.js"></script>
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-left" id="mainNav">
<div class="container">
<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="#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="#experience">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="#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="#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="#footer">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<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/LinkedInPic.jpg" alt="" />
<!-- Masthead Heading-->
<h1 class="masthead-heading text-uppercase mb-0">Fardeen Mazumdar</h1>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-qrcode"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Masthead Subheading-->
<p class="masthead-subheading font-weight-light mb-0">Computer Science Student | Toronto, ON</p>
</div>
</header>
<!-- 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</h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-qrcode"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="row1">
<!-- <iframe width="560" height="315" src="https://streamable.com/e/3f8zst" allowfullscreen>
</iframe> -->
<br>
<p class="lead"> Hi, I'm Fardeen! I am an international student with a degree of Bachelor of Science
(B.SC) in Computer Science. I have graduated in May 2023 and am currently looking for opportunities in the
industry.
I have an aspiration to become a computer security specialist along with a very keen interest in
software development. Another goal includes an improvement in my ability for better communication skills
along with more initiative taking.
I love to listen to all kinds of music, travel and immerse myself in different cultures and cuisine!
</p>
<p class="lead">So far, in my University career, I have taken several courses such as:
<ul class="lead1">
<li>Applied Cryptography</li>
<li>User Interfaces</li>
<li>Fundamentals of Data Structures</li>
<li>Advanced Object Oriented Programming</li>
<li>Computer Organization</li>
<li>Theory of Computation</li>
<li>Programming for Mobile Computing</li>
<li>Introduction to Database Systems</li>
<li>Design and Analysis of Algorithms</li>
<li>Data Mining</li>
<li>Computer Security Laboratory</li>
</ul>
</p>
<p class="lead">Make sure to look at my Resume below!</p>
</div>
<!-- About Section Button-->
<div class="text-center mt-4">
<a class="btn btn-xl btn-outline-light" href="assets\img\Resume\FardeenMazumdar_Resume.pdf"
target="_blank">
<i class="fas fa-download mr-2"></i>
Resume
</a>
</div>
</section>
<!-- Experience-->
<section class="page-section bg-primary text-white mb-0" id="experience">
<div class="container">
<!-- Experience Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-white"> Experience </h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-qrcode"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Experience Section Content-->
<div class="row">
<div class="exp">
<img src="assets\img\vretta.png" />
<h1>Full Stack Developer | DevOps Engineer</h1>
<h3>Vretta Inc.</h3>
<h4>September 2023 – January 2025</h4>
<ul>
<li> Leveraged Amazon Web Services (AWS), Terraform, and Kubernetes for robust infrastructure management, stress testing, and optimization of internal systems, utilizing JavaScript, TypeScript, Python, Shell Scripting and MySQL. </li>
<li> Led the maintenance and strategic updates of multiple APIs, overseeing CI/CD pipelines, improving system reliability and performance by 35% through innovative solutions. </li>
<li> Collaborated with cross-functional teams, including Instructional Designers and Data Engineers, to develop and deploy software projects hosting over 500,000 students across Canada, aligning with technical requirements and implementation strategies. </li>
<li> Established comprehensive incident response protocols for AWS management, reducing resolution times by 40% and increasing system efficiency by 20%. </li>
<li> Recommended improvements that boosted development process efficiency by 25% and enhanced code quality by 30%. </li>
</ul>
</div>
</div>
<br> <br>
<div class="row">
<div class="exp">
<img src="assets\img\ONGov.png" />
<h1>Software Developer</h1>
<h3>Ontario Ministry of Children, Community and Social Services (Co-Op)</h3>
<h4>October 2021 - April 2022</h4>
<ul>
<li> Streamlined the Child Protection Information Network (CPIN) using IBM Curam and Oracle SQL, boosting user experience and operational efficiency by 20%. </li>
<li> Devised effective JUnit test cases, enhancing back-end maintenance and efficiency of CPIN with the use of Java, while researching innovative front-end approaches with Selenium. </li>
</ul>
</div>
</div>
<br> <br>
<div class="row">
<div class="exp">
<img src="assets\img\MH.jpg" />
<h1>Smart Systems Intern</h1>
<h3>Mackenzie Health (Co-Op)</h3>
<h4>January 2021 - April 2021</h4>
<ul>
<li> Played a key role in the successful deployment of robust systems such as RTLS, Vocera, and MyCare, enhancing hospital operations and patient care in Canada’s first smart hospital. </li>
<li> Conducted comprehensive MRT Testing to ensure system reliability and performance, bolstering the hospital’s technological infrastructure.
</li>
</ul>
</div>
</div>
<br> <br>
<div class="row">
<div class="exp">
<img src="assets\img\yorku.jpg" />
<h1>Student Parking Control Officer/CCTV Operator</h1>
<h3>York University</h3>
<h4>October 2018 - Present</h4>
<ul>
<li> Provided efficient and courteous customer service to campus visitors, aiding them with their parking needs. </li>
<li> Monitored extensive camera network across Keele and Glendon campuses, ensuring optimal safety and security at York University. </li>
</ul>
</div>
</div>
<br> <br>
<div class="row">
<div class="exp">
<img src="assets\img\times.jpg" />
<h1>Head Instructor</h1>
<h3>TIMES ASL Call Center</h3>
<h4>December 2017 - July 2018</h4>
<ul>
<li> Spearheaded the training of basic computer skills to a broad audience under the Skills for Employment Investment Program (SEIP). </li>
<li> Facilitated participants' proficiency enhancement in Microsoft Office Suite, contributing to a government and Asian Development Bank co-funded initiative.</li>
</ul>
</div>
</div>
<br> <br>
<div class="row">
<div class="exp">
<img src="assets\img\appnometry.png" />
<h1>Mobile Game Developer Intern</h1>
<h3>Appnometry</h3>
<h4>August 2017 - Decmber 2017</h4>
<ul>
<li> Contributed as an active team member in one of Bangladesh's pioneering mobile game development companies.</li>
<li> Assisted in Java and Unity game design, ensuring quality control throughout the development process. </li>
<li> Played a crucial role in brainstorming and contributing ideas to successful projects including Clean Footpath, Heli Rescue, and Paper Plane, all available on the Google App Store. </li>
</ul>
</div>
</div>
</section>
<!-- Skills-->
<section class="page-section bg-primary text-white mb-0" id="skills">
<div class="container">
<div class="container2">
<!--Skills Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-white"> Skills </h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-qrcode"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Skills Section Content-->
<div class="tab">
<button class="tablinks" onclick="openSkills(event, 'Left')" id="defaultOpen">
<h4>Front-end
Development </h4>
</button>
<button class="tablinks" onclick="openSkills(event, 'Middle')">
<h4>Back-end Development</h4>
</button>
<button class="tablinks" onclick="openSkills(event, 'Right')">
<h4>Cloud Development / Tools</h4>
</button>
</div>
</div>
<br>
<div id="Left" class="tabcontent">
<ul class="tabnumber">
<h5><i class="fab fa-html5" style="font-size: 32px;"></i> HTML5</h5>
<!-- <div class="container1">
<div class="skills htmlcss"></div>
</div> -->
<h5><i class="fab fa-js" style="font-size: 32px;"></i> Javascript</h5>
<!-- <div class="container1">
<div class="skills javascript"></div>
</div> -->
<h5><i class="fab fa-bootstrap" style="font-size: 32px;"></i> Bootstrap</h5>
<!-- <div class="container1">
<div class="skills bootstrap"></div>
</div> -->
<h5><i class="fab fa-react" style="font-size: 32px;"></i> React</h5>
<!-- <div class="container1">
<div class="skills react"></div>
</div> -->
<h5><i class="fab fa-css3-alt" style="font-size: 32px;"></i> CSS</h5>
<!-- <div class="container1">
<div class="skills jquery"></div>
</div> -->
<h5><i class="fab fa-java" style="font-size: 32px;"></i> Selenium</h5>
<!-- <div class="container1">
<div class="skills unity"></div>
</div> -->
</ul>
</div>
<div id="Middle" class="tabcontent">
<ul class="tabnumber">
<h5><i class="fab fa-java" style="font-size: 32px;"></i> Java</h5>
<!-- <div class="container1">
<div class="skills java"></div>
</div> -->
<h5><i class="fab fa-python" style="font-size: 32px;"></i> Python</h5>
<!-- <div class="container1">
<div class="skills python"></div>
</div> -->
<h5><i class="fas fa-server" style="font-size: 32px;"></i> RISC-V</h5>
<!-- <div class="container1">
<div class="skills risc-v"></div>
</div> -->
<h5><i class="fas fa-server" style="font-size: 32px;"></i> UNIX Shell Scripts</h5>
<!-- <div class="container1">
<div class="skills unix"></div>
</div> -->
<h5><i class='fab fa-cuttlefish' style="font-size: 32px;"></i> C/C++</h5>
<!-- <div class="container1">
<div class="skills CC"></div>
</div> -->
<h5><i class="fas fa-server" style="font-size: 32px;"></i> Verilog</h5>
<!-- <div class="container1">
<div class="skills verilog"></div>
</div> -->
<h5><i class="fas fa-database" style="font-size: 32px;"></i> SQL</h5>
<!-- <div class="container1">
<div class="skills sql"></div>
</div> -->
<h5><i class="fab fa-php" style="font-size: 32px;"></i> PHP</h5>
<!-- <div class="container1">
<div class="skills sql"></div>
</div> -->
</ul>
</div>
<div id="Right" class="tabcontent">
<ul class="tabnumber">
<h5><i class="fab fa-aws" style="font-size: 32px;"></i> Amazon Web Services </h5>
<!-- <div class="container1">
<div class="skills eclipse"></div>
</div> -->
<h5><i class="fab fa-microsoft" style="font-size: 32px;"></i> Microsoft Azure </h5>
<!-- <div class="container1">
<div class="skills eclipse"></div>
</div> -->
<h5><i class="fab fa-google" style="font-size: 32px;"></i> Google Cloud Platform </h5>
<!-- <div class="container1">
<div class="skills eclipse"></div>
</div> -->
<h5><i class="fab fa-java" style="font-size: 32px;"></i> Eclipse</h5>
<!-- <div class="container1">
<div class="skills eclipse"></div>
</div> -->
<h5><i class="fab fa-windows" style="font-size: 32px;"></i> Microsoft Office Suite</h5>
<!-- <div class="container1">
<div class="skills msoffice"></div>
</div> -->
<h5><i class="fab fa-python" style="font-size: 32px;"></i> Pycharm</h5>
<!-- <div class="container1">
<div class="skills pycharm"></div>
</div> -->
<h5><i class="fab fa-figma" style="font-size: 32px;"></i> Figma</h5>
<!-- <div class="container1">
<div class="skills figma"></div>
</div> -->
<h5><i class="fas fa-video" style="font-size: 32px;"></i> Sony Vegas Pro</h5>
<!-- <div class="container1">
<div class="skills sony"></div>
</div> -->
<h5><i class="fab fa-android" style="font-size: 32px;"></i> Android Studio</h5>
<!-- <div class="container1">
<div class="skills androidstudio"></div>
</div> -->
<h5><i class="fab fa-unity" style="font-size: 32px;"></i> Unity Game Engine</h5>
<!-- <div class="container1">
<div class="skills unity"></div>
</div> -->
</div>
</ul>
</div>
<script>
function openSkills(evt, skillName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(skillName).style.display = "block";
evt.currentTarget.className += " active";
}
document.getElementById("defaultOpen").click();
</script>
</section>
<!-- Portfolio Section-->
<section class="page-section portfolio bg-third" 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-qrcode"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Grid Items-->
<div class="row justify-content-center">
<!-- 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/discord-logo.jpg" alt="" />
</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/FSLWebsite.png" alt="" />
</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/ransomware.png" alt="" />
</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/React.png" alt="" />
</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/movieapp.png" alt="" />
</div>
</div>
<!-- Portfolio Item 6-->
<!-- <div class="col-md-6 col-lg-4">
<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/submarine.png" alt="" />
</div>
</div> -->
</div>
</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">Contact Me</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> -->
<!-- Contact Section Form-->
<!-- <div class="row">
<div class="col-lg-8 mx-auto"> -->
<!-- To configure the contact form email address, go to mail/contact_me.php and update the email address in the PHP file on line 19.-->
<!-- <form id="contactForm" name="sentMessage" novalidate="novalidate">
<div class="control-group">
<div class="form-group floating-label-form-group controls mb-0 pb-2">
<label>Name</label>
<input class="form-control" id="name" type="text" placeholder="Name" required="required" data-validation-required-message="Please enter your name." />
<p class="help-block text-danger"></p>
</div>
</div>
<div class="control-group">
<div class="form-group floating-label-form-group controls mb-0 pb-2">
<label>Email Address</label>
<input class="form-control" id="email" type="email" placeholder="Email Address" required="required" data-validation-required-message="Please enter your email address." />
<p class="help-block text-danger"></p>
</div>
</div>
<div class="control-group">
<div class="form-group floating-label-form-group controls mb-0 pb-2">
<label>Phone Number</label>
<input class="form-control" id="phone" type="tel" placeholder="Phone Number" required="required" data-validation-required-message="Please enter your phone number." />
<p class="help-block text-danger"></p>
</div>
</div>
<div class="control-group">
<div class="form-group floating-label-form-group controls mb-0 pb-2">
<label>Message</label>
<textarea class="form-control" id="message" rows="5" placeholder="Message" required="required" data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<br />
<div id="success"></div>
<div class="form-group"><button class="btn btn-primary btn-xl" id="sendMessageButton" type="submit">Send</button></div>
</form>
</div>
</div>
</div>
</section> -->
<!-- Footer-->
<footer class="footer text-center">
<div class="container" id="footer">
<div class="row">
<!-- Footer Social Icons-->
<div class="col-lg-4 mb-6 mb-lg-0">
<h4 class="text-uppercase mb-4">Contact Me</h4>
<h6 class="text-lowercase mb-4">fardeenkhalid@gmail.com</h6>
<a class="btn btn-outline-light btn-social mx-1" href="mailto:fardeenkhalid@gmail.com"><i
class="fas fa-envelope" target="_blank"></i></a>
<a class="btn btn-outline-light btn-social mx-1"
href="https://www.linkedin.com/in/fardeenkhalidmazumdar/" target="_blank"><i
class="fab fa-fw fa-linkedin-in"></i></a>
<a class="btn btn-outline-light btn-social mx-1" href="https://github.com/fkm97" target="_blank"><i
class="fab fa-github"></i></a>
</div>
</div>
</div>
</footer>
<!-- Copyright Section-->
<div class="copyright py-4 text-center text-white">
<div class="container"><small>Copyright © Fardeen Mazumdar 2025</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 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 text-uppercase mb-0"
id="portfolioModal1Label">Discord Bot</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-qrcode"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img/portfolio/DiscordBot.gif" alt="" />
<!-- Portfolio Modal - Text-->
<p><b><i>Technologies Used: Eclipse, Java, Maven</i></b></p>
<p class="mb-5">An all-purpose Discord bot, using the <b>JDA API</b> with several
commands capable (so far) such as:
<ul class="mb-7">
<li> <b>Ping</b> - Bot's current ping to the server</li>
<li> <b>ServerInfo</b> - Displaying information about the current Discord server
</li>
<li> <b>UserInfo</b> - Displaying information about the user you mention</li>
<li> <b>Filtering</b> - Removing Inappropriate Messages from the chat channels</li>
<li> <b>InviteCommand</b> - Ability to provide invites to users</li>
<li> <b>Image</b> (Using <b>Thumbnailator API</b>) - Manipulating images by
adjusting height, widht and rotation (optional) to send back to the user as
thumbnails with desired demensions</li>
<li> <b>Tagging</b> - Ability to tag a mentioned user several times</li>
</ul>
</p>
<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 text-uppercase mb-0"
id="portfolioModal2Label">FSL Website (UI/UX)</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-qrcode"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img/portfolio/FSL.gif" alt="" />
<!-- Portfolio Modal - Text-->
<p><b><i>Technologies Used: Figma</i></b></p>
<p class="mb-5"> A French as a Second Language (FSL) Webpage made from scratch using
Figma, with flows fully implemented to show the smooth transition between pages.
<ul class="mb-7">
<li> <b>Home Page </b> - The initial page, the website is presented with along with
a different look when logged in as a user.</li>
<li> <b>Sign Up</b> - With several options to sign up as a Teacher, Student, Parent,
Administrator or as Community, with options to sign up with Google as well,
along with methods to confirm credentials. </li>
<li> <b>Login Page</b> - Ability to simply login with an existing email and
password.</li>
<li> <b>OER Item View</b> - The pages that are presented once an Open Educational
Resource (OER) is selected.</li>
</ul>
</p>
<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 text-uppercase mb-0"
id="portfolioModal3Label">Ransomware Implementation</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-qrcode"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img/portfolio/ransom.gif" alt="" />
<!-- Portfolio Modal - Text-->
<p><b><i>Technologies Used: Pycharm, Python</i></b></p>
<p class="mb-5"> A rasomware agent with the ability to select different cryptographic
schemes for encryption and decryption. Using the command line,
the ransomware agent has the ability to encrypt and decrypt a particular folder. The
following algorithms are available for both encryption and decryption:
<ul class="mb-7">
<b> Symmetric </b>
<li> <b>XOR </b></li>
<li> <b>Advanced Encryption Standard (AES)</b> </li>
<li> <b>Rivest Cipher 4 (RC4)</b></li>
<br>
<b>Asymmetric</b>
<li> <b>Rivest, Shamir and Adleman (RSA)</b></li>
<li> <b>Elliptic Curve Cryptography (ECC)</b></li>
</ul>
</p>
<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 text-uppercase mb-0"
id="portfolioModal4Label">
React Projects
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-qrcode"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img/portfolio/ReactProjects.gif" alt="" />
<!-- Portfolio Modal - Text-->
<p><b>** IN PROGRESS **</b></p>
<p><b><i>Technologies Used: ReactJS</i></b></p>
<p class="mb-5">
A series of projects being done to demonstrate the use of React.
<ul class="mb-7">
<li>
<b>Birthday Reminder </b> - A birthday reminder web application that displays the number of birthdays of the individuals for the day,
along with their pictures and ages, with a button to be able to clear all birthdays.
</li>
</ul>
</p>
<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="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 text-uppercase mb-0"
id="portfolioModal1Label">Movie Review Web Application</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-qrcode"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img/portfolio/movieapp.gif" alt="" />
<!-- Portfolio Modal - Text-->
<p><b><i>Technologies Used: Eclipse, Java, Speing Boot, MongoDB, ReactJS, REST API</i></b></p>
<p class="mb-5">A movie review web application where users can come to the webpage, and add reviews onto the website and also watch trailers of the movies.
<ul class="mb-7">
<li> <b>UI/UX created</b> - App's User Interface was made with the help of the react framework</li>
<li> <b>Play Button</b> - The play button takes the user to a youtube trailer for the movie</li>
<li> <b>Review page</b> - Page where user can post reviews of the movies</li>
<li> <b>Data stored in Database</b> - All the movie data is stored in a database hosted by MongoDB</li>
<li> <b>REST API</b> - It follows the standards of the REST API, where it is able to GET all the information of these movies and display it on the web page and POST the reviews by the users.</li>
</ul>
</p>
<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 6-->
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog"
aria-labelledby="portfolioModal6Label" 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 text-uppercase mb-0"
id="portfolioModal6Label">Submarine</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/submarine.png" alt="" />
<!-- Portfolio Modal - Text-->
<p class="mb-5">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia neque
assumenda ipsam nihil, molestias magnam, recusandae quos quis inventore quisquam
velit asperiores, vitae? Reprehenderit soluta, eos quod consequuntur itaque. Nam.
</p>
<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>
<!-- core JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<!-- Contact form JS-->
<script src="assets/mail/jqBootstrapValidation.js"></script>
<script src="assets/mail/contact_me.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>