-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1451 lines (1286 loc) · 65.9 KB
/
index.html
File metadata and controls
1451 lines (1286 loc) · 65.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
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.0">
<!--=============== PRECONNECT & DNS-PREFETCH ===============-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://unpkg.com">
<link rel="preconnect" href="https://cdn.jsdelivr.net">
<link rel="dns-prefetch" href="https://unpkg.com">
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net">
<!--=============== FAVICON ===============-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicons/favicon-16x16.png">
<link rel="manifest" href="assets/favicons/site.webmanifest">
<link rel="mask-icon" href="assets/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="assets/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="assets/favicons/browserconfig.xml">
<meta name="theme-color" content="#a789d4">
<!--=============== BOXICONS ===============-->
<!--=============== SWIPER CSS ===============-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<style>
/* Additional custom styles - most styling is in styles.css */
@media (max-width: 768px) {
.work__screenshots .swiper {
height: 280px;
}
}
</style>
<title> M.Hasan's Portfolio </title>
<!-- Force scroll to top on load -->
<script>
if ('scrollRestoration' in history) history.scrollRestoration = 'manual';
window.scrollTo(0, 0);
document.documentElement.scrollTop = 0;
document.body.scrollTop = 0;
</script>
<style>
html { scroll-behavior: smooth; }
body { opacity: 0; }
body.loaded { opacity: 1; transition: opacity 0.3s ease; }
</style>
</head>
<!-- Background Music (Lazy Loaded) -->
<audio id="background-music" loop preload="none">
<source src="assets/music/music.mp3" type="audio/mp3">
</audio>
<script>
// Play music on first click (lazy load audio)
document.addEventListener("click", () => {
const music = document.getElementById("background-music");
const musicToggle = document.getElementById("music-toggle");
if (music.readyState === 0) {
music.load(); // Load audio on first interaction
}
music.play();
if (musicToggle) {
musicToggle.classList.remove('bx-volume-mute');
musicToggle.classList.add('bx-volume-full');
}
window.isPlaying = true;
}, { once: true });
</script>
<script>
function sendWhatsAppMessage(event) {
event.preventDefault();
const name = document.getElementById("whatsapp-name").value.trim();
const email = document.getElementById("whatsapp-email").value.trim();
const message = document.getElementById("whatsapp-message").value.trim();
const phoneNumber = "+601116395365"; // Replace with your full WhatsApp number (country code + number, no + or spaces)
const fullMessage = `Name: ${name}%0AEmail: ${email}%0AMessage: ${message}`;
const whatsappURL = `https://wa.me/${phoneNumber}?text=${fullMessage}`;
window.open(whatsappURL, "_blank");
}
</script>
<body onload="window.scrollTo(0,0); document.body.classList.add('loaded');">
<!--=============== HEADER ===============-->
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo">Hasan</a>
<div class="nav__menu">
<ul class="nav__list">
<li class="nav__item ">
<a href="#home" class="nav__link">
<i class='bx bx-home'></i>
</a>
</li>
<li class="nav__item ">
<a href="#about" class="nav__link">
<i class='bx bx-user'></i>
</a>
</li>
<li class="nav__item">
<a href="#skills" class="nav__link">
<i class='bx bx-book'></i>
</a>
</li>
<li class="nav__item">
<a href="#git-activity" class="nav__link">
<i class='bx bxl-github'></i>
</a>
</li>
<li class="nav__item">
<a href="#work" class="nav__link">
<i class='bx bx-briefcase-alt-2'></i>
</a>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">
<i class='bx bx-message-square-dots'></i>
</a>
</li>
</ul>
</div>
<!--=============== Theme & Music buttons ===============-->
<div style="display: flex; gap: 1rem; align-items: center;">
<i class='bx bx-volume-mute change-theme' id="music-toggle" title="Toggle Music" style="cursor: pointer;"></i>
<i class='bx bx-moon change-theme' id="theme-button" title="Toggle Theme"></i>
</div>
</nav>
</header>
<!--=============== MAIN ===============-->
<main class="main">
<!--=============== HOME ===============-->
<section class="home section" id="home">
<div class="home__container container grid">
<!-- Left Side: Text and Buttons -->
<div class="home__data">
<span class="home__greeting">Hello, I'm</span>
<h1 class="home__name">M. Hasan</h1>
<!-- Dynamic Title with Typing Effect -->
<div class="typing-container">
<span class="typing-static">I AM</span>
<span class="typing-text" id="typing-text"></span>
<span class="typing-cursor">|</span>
</div>
<h3 class="home__education">Sr. Software Engineer</h3>
<!-- Button Group -->
<div class="home__buttons">
<a href="#about" class="button">About Me</a>
<a href="#work" class="button button--ghost">View Projects</a>
</div>
<!-- CV Options -->
<div class="home__cv-links">
<button class="cv-link" id="view-resume-btn"><i class='bx bx-show'></i> View Resume</button>
<span class="cv-divider">|</span>
<a download href="assets/pdf/mehadi.pdf" class="cv-link"><i class='bx bx-download'></i> Download CV</a>
<span class="cv-divider">|</span>
<a download href="assets/pdf/mehadieu.pdf" class="cv-link"><i class='bx bx-download'></i> EU Format</a>
</div>
</div>
<!-- Center Image -->
<div class="home__handle">
<img src="assets/img/img.jpeg" alt="M. Hasan" class="home__img2" loading="eager">
</div>
<!-- Social Links -->
<div class="home__social">
<a href="https://www.linkedin.com/in/eshad-hasan/" target="_blank" class="home__social-link">
<i class='bx bxl-linkedin'></i>
</a>
<a href="https://github.com/eshad" target="_blank" class="home__social-link">
<i class='bx bxl-github'></i>
</a>
</div>
<!-- Scroll Down -->
<a href="#about" class="home__scroll">
<i class='bx bx-mouse home__scroll-icon'></i>
<span class="home__scroll-name">Scroll Down</span>
</a>
</div>
</section>
<!--=============== ABOUT ===============-->
<section class="about section" id="about">
<span class="section__subtitle">My Intro</span>
<h2 class="section__title">About Me</h2>
<div class="about__container container grid">
<img src="assets/img/about1.jpeg" alt="About Image" class="about__img" loading="lazy">
<div class="about__data">
<div class="about__info">
<div class="about__box">
<i class='bx bx-award about__icon'></i>
<h3 class="about__title">Experience</h3>
<span class="about__subtitle">Expert level</span>
</div>
<div class="about__box">
<i class='bx bx-briefcase-alt about__icon'></i>
<h3 class="about__title">Years of Experience</h3>
<span class="about__subtitle"><span class="counter" data-target="14">0</span>+</span>
</div>
<div class="about__box">
<i class='bx bx-support about__icon'></i>
<h3 class="about__title">Support</h3>
<span class="about__subtitle">Online 24/7</span>
</div>
</div>
<p class="about__description">
A highly skilled Software Engineer with deep expertise in system architecture, efficient system design, and end-to-end deployment.<br>
I specialize in Backend development using <strong>Java, PHP, Python, .Net, C/C++</strong>, combining my passion and profession to build scalable and high-performance applications.<br>
With a strong foundation in <strong>UI/UX design</strong>, I craft visually compelling and user-friendly interfaces.<br>
My expertise extends to <strong>both Agile and Waterfall methodologies</strong>, ensuring seamless project execution and delivery.<br>
I take pride in delivering solutions that meet client expectations, with a proven track record of success and satisfaction.
</p>
<a href="#contact" class="button about__button-contact">Contact Me</a>
</div>
</div>
</section>
<!--=============== SKILLS ===============-->
<section class="skills section" id="skills">
<span class="section__subtitle">My Expertise</span>
<h2 class="section__title">Technical Competencies</h2>
<div class="skills__container container grid">
<!-- Programming Languages -->
<div class="skills__content">
<h3 class="skills__title"><i class='bx bx-code-alt'></i> Programming Languages</h3>
<div class="skills__box">
<div class="skills__group">
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Java / J2EE</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">C / C++</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Python</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">C# / .NET</h3><span class="skills__level">Advanced</span></div></div>
</div>
<div class="skills__group">
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">PHP / Laravel</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">JavaScript / TypeScript</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Kotlin</h3><span class="skills__level">Intermediate</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Delphi</h3><span class="skills__level">Intermediate</span></div></div>
</div>
</div>
</div>
<!-- Cloud & Infrastructure -->
<div class="skills__content">
<h3 class="skills__title"><i class='bx bx-cloud'></i> Cloud & Infrastructure</h3>
<div class="skills__box">
<div class="skills__group">
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">AWS Cloud</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Microsoft Azure</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Google Cloud (GCP)</h3><span class="skills__level">Intermediate</span></div></div>
</div>
<div class="skills__group">
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Tencent Cloud</h3><span class="skills__level">Intermediate</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Alibaba Cloud</h3><span class="skills__level">Intermediate</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Docker / Kubernetes</h3><span class="skills__level">Advanced</span></div></div>
</div>
</div>
</div>
<!-- Databases -->
<div class="skills__content">
<h3 class="skills__title"><i class='bx bx-data'></i> Database Systems</h3>
<div class="skills__box">
<div class="skills__group">
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Oracle</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">MS SQL Server</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">MySQL / PostgreSQL</h3><span class="skills__level">Advanced</span></div></div>
</div>
<div class="skills__group">
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">MongoDB</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">GraphQL</h3><span class="skills__level">Intermediate</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Firebase</h3><span class="skills__level">Intermediate</span></div></div>
</div>
</div>
</div>
<!-- DevOps & Tools -->
<div class="skills__content">
<h3 class="skills__title"><i class='bx bx-git-branch'></i> DevOps & CI/CD</h3>
<div class="skills__box">
<div class="skills__group">
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Git / GitHub / Bitbucket</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Jenkins CI/CD</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Linux Administration</h3><span class="skills__level">Advanced</span></div></div>
</div>
<div class="skills__group">
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">Redmine / Jira</h3><span class="skills__level">Advanced</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">OWASP ZAP</h3><span class="skills__level">Intermediate</span></div></div>
<div class="skills__data"><i class='bx bxs-badge-check'></i><div><h3 class="skills__name">UiPath / RPA</h3><span class="skills__level">Intermediate</span></div></div>
</div>
</div>
</div>
</div>
<!-- Additional Competencies -->
<div class="competencies__extra container">
<div class="competencies__grid">
<div class="competency__card">
<i class='bx bx-desktop'></i>
<h4>Operating Systems</h4>
<p>Unix, Linux, Windows, Android, iOS, macOS</p>
</div>
<div class="competency__card">
<i class='bx bx-layer'></i>
<h4>Architecture</h4>
<p>Client-Server, N-Tier, SOA, Microservices, GRID</p>
</div>
<div class="competency__card">
<i class='bx bx-brain'></i>
<h4>Business Intelligence</h4>
<p>SAS Enterprise Miner, SPSS Clementine, AlphaMiner</p>
</div>
<div class="competency__card">
<i class='bx bx-cog'></i>
<h4>Development Model</h4>
<p>Scrum, Agile, Waterfall, SOLID Principles</p>
</div>
<div class="competency__card">
<i class='bx bx-game'></i>
<h4>Game Development</h4>
<p>Unity, Cocos, Blender, Game Engines</p>
</div>
<div class="competency__card">
<i class='bx bx-shield'></i>
<h4>Security Testing</h4>
<p>Penetration Testing, MSF Console, SET Tools</p>
</div>
</div>
</div>
</section>
<!--=============== GIT ACTIVITY ===============-->
<section class="git-activity section" id="git-activity">
<span class="section__subtitle">GitHub Profile</span>
<h2 class="section__title">Development Statistics</h2>
<!-- GitHub Stats Cards -->
<div class="github-stats-cards container">
<div class="stats-grid">
<!-- GitHub Stats -->
<div class="stat-card-wrapper">
<img src="https://github-readme-stats-sigma-five.vercel.app/api?username=eshad&show_icons=true&count_private=true&include_all_commits=true&theme=radical&hide_border=true&bg_color=00000000&title_color=6366f1&icon_color=34d399&text_color=c9d1d9"
alt="GitHub Stats"
loading="lazy"
class="stat-image"
onerror="this.onerror=null; this.src='https://github-readme-stats-sigma-five.vercel.app/api?username=eshad&show_icons=true&theme=radical';">
</div>
<!-- GitHub Streak -->
<div class="stat-card-wrapper">
<img src="https://github-readme-streak-stats.herokuapp.com/?user=eshad&theme=radical&hide_border=true&background=00000000&ring=6366f1&fire=34d399&currStreakLabel=c9d1d9&sideLabels=c9d1d9"
alt="GitHub Streak"
loading="lazy"
class="stat-image"
onerror="this.src='https://github-readme-streak-stats.herokuapp.com/?user=eshad&theme=radical'">
</div>
<!-- Top Languages -->
<div class="stat-card-wrapper">
<img src="https://github-readme-stats-sigma-five.vercel.app/api/top-langs/?username=eshad&layout=compact&theme=radical&hide_border=true&bg_color=00000000&title_color=6366f1&text_color=c9d1d9&langs_count=8&hide=html,css"
alt="Top Languages"
loading="lazy"
class="stat-image"
onerror="this.onerror=null; this.src='https://github-readme-stats-sigma-five.vercel.app/api/top-langs/?username=eshad&layout=compact&theme=radical';">
</div>
</div>
</div>
<!-- GitHub Trophies -->
<div class="github-trophies container">
<div class="trophies-wrapper">
<img src="https://github-profile-trophy.vercel.app/?username=eshad&theme=darkhub&no-frame=true&no-bg=true&column=7&margin-w=10&margin-h=10"
alt="GitHub Trophies"
loading="lazy"
class="trophies-image"
onerror="this.style.display='none'">
</div>
</div>
<!-- Contribution Calendar -->
<div class="github-stats-cards container">
<div class="stat-card-wrapper full-width contribution-calendar">
<div class="contribution-header-stats">
<h3 class="contribution-title">
<i class='bx bx-calendar'></i> Contribution Activity
</h3>
</div>
<div class="github-calendar-wrapper">
<img src="https://ghchart.rshah.org/6366f1/eshad"
alt="GitHub Contribution Calendar"
loading="lazy"
class="stat-image"
style="width: 100%; height: auto;">
</div>
<div class="contribution-legend-info">
<span style="font-size: var(--smaller-font-size); color: var(--text-color-light);">
Less <span style="display: inline-flex; gap: 3px; margin: 0 8px;">
<span style="width: 10px; height: 10px; background: #161b22; border: 1px solid #30363d; display: inline-block;"></span>
<span style="width: 10px; height: 10px; background: #0e4429; border: 1px solid #30363d; display: inline-block;"></span>
<span style="width: 10px; height: 10px; background: #006d32; border: 1px solid #30363d; display: inline-block;"></span>
<span style="width: 10px; height: 10px; background: #26a641; border: 1px solid #30363d; display: inline-block;"></span>
<span style="width: 10px; height: 10px; background: #39d353; border: 1px solid #30363d; display: inline-block;"></span>
</span> More
</span>
</div>
</div>
</div>
<!-- Featured Repositories -->
<div class="github-stats-cards container">
<div class="stat-card-wrapper full-width featured-repos-wrapper">
<h3 class="contribution-title">
<i class='bx bx-folder-open'></i> Featured Repositories
</h3>
<div class="repos-grid">
<a href="https://github.com/eshad/redmine_dark_mode" target="_blank" class="repo-card">
<div class="repo-card-header">
<i class='bx bx-book-bookmark'></i>
<span class="repo-name">redmine_dark_mode</span>
</div>
<p class="repo-description">Plugin for Redmine Dark Mode Solution</p>
<div class="repo-footer">
<span class="repo-lang"><span class="lang-dot css"></span> CSS</span>
<span class="repo-stats"><i class='bx bx-star'></i> 0</span>
</div>
</a>
<a href="https://github.com/eshad/custom_mail_redmine_plugin" target="_blank" class="repo-card">
<div class="repo-card-header">
<i class='bx bx-book-bookmark'></i>
<span class="repo-name">custom_mail_redmine_plugin</span>
</div>
<p class="repo-description">Custom plugin for Redmine mail issues</p>
<div class="repo-footer">
<span class="repo-lang"><span class="lang-dot html"></span> HTML</span>
<span class="repo-stats"><i class='bx bx-star'></i> 1</span>
</div>
</a>
<a href="https://github.com/eshad/Challenge-Your-Math-Skills" target="_blank" class="repo-card">
<div class="repo-card-header">
<i class='bx bx-book-bookmark'></i>
<span class="repo-name">Challenge-Your-Math-Skills</span>
</div>
<p class="repo-description">AI-powered math practice for students</p>
<div class="repo-footer">
<span class="repo-lang"><span class="lang-dot typescript"></span> TypeScript</span>
<span class="repo-stats"><i class='bx bx-star'></i> 0</span>
</div>
</a>
<a href="https://github.com/eshad/gdu-mimic" target="_blank" class="repo-card">
<div class="repo-card-header">
<i class='bx bx-book-bookmark'></i>
<span class="repo-name">gdu-mimic</span>
</div>
<p class="repo-description">Mediamtx live stream solution for GDU</p>
<div class="repo-footer">
<span class="repo-lang"><span class="lang-dot html"></span> HTML</span>
<span class="repo-stats"><i class='bx bx-star'></i> 0</span>
</div>
</a>
<a href="https://github.com/eshad/timer" target="_blank" class="repo-card">
<div class="repo-card-header">
<i class='bx bx-book-bookmark'></i>
<span class="repo-name">timer</span>
</div>
<p class="repo-description">Safari extension for time tracking</p>
<div class="repo-footer">
<span class="repo-lang"><span class="lang-dot swift"></span> Swift</span>
<span class="repo-stats"><i class='bx bx-star'></i> 0</span>
</div>
</a>
<a href="https://github.com/eshad/highlighter" target="_blank" class="repo-card">
<div class="repo-card-header">
<i class='bx bx-book-bookmark'></i>
<span class="repo-name">highlighter</span>
</div>
<p class="repo-description">Safari extension for highlighting</p>
<div class="repo-footer">
<span class="repo-lang"><span class="lang-dot javascript"></span> JavaScript</span>
<span class="repo-stats"><i class='bx bx-star'></i> 0</span>
</div>
</a>
<a href="https://github.com/eshad/syncFiles" target="_blank" class="repo-card">
<div class="repo-card-header">
<i class='bx bx-book-bookmark'></i>
<span class="repo-name">syncFiles</span>
</div>
<p class="repo-description">Sync files between Linux and Windows</p>
<div class="repo-footer">
<span class="repo-lang"><span class="lang-dot javascript"></span> JavaScript</span>
<span class="repo-stats"><i class='bx bx-star'></i> 0</span>
</div>
</a>
<a href="https://github.com/eshad/gdu-deployer" target="_blank" class="repo-card">
<div class="repo-card-header">
<i class='bx bx-book-bookmark'></i>
<span class="repo-name">gdu-deployer</span>
</div>
<p class="repo-description">Automation tools for GDU deployment</p>
<div class="repo-footer">
<span class="repo-lang"><span class="lang-dot javascript"></span> JavaScript</span>
<span class="repo-stats"><i class='bx bx-star'></i> 0</span>
</div>
</a>
</div>
</div>
</div>
<!-- Activity Graph -->
<div class="github-stats-cards container">
<div class="stat-card-wrapper full-width">
<img src="https://github-readme-activity-graph.vercel.app/graph?username=eshad&theme=tokyo-night&hide_border=true&bg_color=00000000&color=6366f1&line=34d399&point=c9d1d9"
alt="Activity Graph"
loading="lazy"
class="stat-image"
onerror="this.src='https://github-readme-activity-graph.vercel.app/graph?username=eshad&theme=tokyo-night'">
</div>
</div>
<!-- Badges & Profile Views -->
<div class="github-footer container">
<div class="github-badges-inline">
<a href='https://archiveprogram.github.com/' target="_blank" class="badge-link-small" title="Arctic Code Vault Contributor">
<img src='https://raw.githubusercontent.com/acervenky/animated-github-badges/master/assets/acbadge.gif' alt='Arctic Code Vault'>
</a>
<a href='https://docs.github.com/en/developers' target="_blank" class="badge-link-small" title="GitHub Developer Program">
<img src='https://raw.githubusercontent.com/acervenky/animated-github-badges/master/assets/devbadge.gif' alt='Developer Program'>
</a>
<a href='https://github.com/pricing' target="_blank" class="badge-link-small" title="GitHub Pro">
<img src='https://raw.githubusercontent.com/acervenky/animated-github-badges/master/assets/pro.gif' alt='GitHub Pro'>
</a>
<a href='https://stars.github.com/' target="_blank" class="badge-link-small" title="GitHub Stars">
<img src='https://raw.githubusercontent.com/acervenky/animated-github-badges/master/assets/starbadge.gif' alt='GitHub Stars'>
</a>
<a href='https://docs.github.com/en/github/supporting-the-open-source-community-with-github-sponsors' target="_blank" class="badge-link-small" title="GitHub Sponsor">
<img src='https://raw.githubusercontent.com/acervenky/animated-github-badges/master/assets/sponsorbadge.gif' alt='Sponsor'>
</a>
</div>
<div class="profile-views">
<img src="https://komarev.com/ghpvc/?username=eshad&color=6366f1&style=for-the-badge&label=PROFILE+VIEWS"
alt="Profile Views"
loading="lazy">
</div>
</div>
</section>
<!--=============== SERVICES ===============-->
<section class="services section">
<span class="section__subtitle">My Expertise</span>
<h2 class="section__title">What I Offer</h2>
<div class="services__container container grid">
<!-- Software Development -->
<div class="services__card">
<h3 class="services__title">Software <br> Development</h3>
<span class="services__button">
See More <i class='bx bx-right-arrow services__icon'></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close'></i>
<h3 class="services__modal-title">Software Development</h3>
<p class="services__modal-description">
I design and develop robust, scalable software solutions using modern technologies and best coding practices.
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Full-stack web and mobile application development.</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Cross-platform development (React.js, Next.js, Kotlin, Node.js).</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Custom API development and integration.</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Database architecture and optimization (SQL, MongoDB, Firebase).</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Building and deploying secure applications.</p>
</li>
</ul>
</div>
</div>
</div>
<!-- UI/UX & Product Design -->
<div class="services__card">
<h3 class="services__title">UI/UX <br> Design</h3>
<span class="services__button">
See More <i class='bx bx-right-arrow services__icon'></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close'></i>
<h3 class="services__modal-title">UI/UX & Product Design</h3>
<p class="services__modal-description">
I design intuitive, user-friendly, and visually appealing digital experiences, ensuring seamless interactions.
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">User-centric interface design with Figma, Adobe XD, and Sketch.</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Prototyping and wireframing for web and mobile applications.</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Responsive and accessible design principles.</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Integrating UI animations and micro-interactions.</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Optimizing user flows and interaction design.</p>
</li>
</ul>
</div>
</div>
</div>
<!-- Cloud & DevOps -->
<div class="services__card">
<h3 class="services__title">Cloud & <br> DevOps</h3>
<span class="services__button">
See More <i class='bx bx-right-arrow services__icon'></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close'></i>
<h3 class="services__modal-title">Cloud & DevOps</h3>
<p class="services__modal-description">
I provide DevOps solutions and cloud-based infrastructure management for seamless deployment and scalability.
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Cloud architecture and deployment (AWS, Azure, Google Cloud).</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">CI/CD pipeline setup (Jenkins, GitHub Actions, Bitbucket).</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Containerization and orchestration (Docker, Kubernetes).</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Monitoring and performance tuning (Grafana, Prometheus, CloudWatch).</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Infrastructure as Code (Terraform, Ansible).</p>
</li>
</ul>
</div>
</div>
</div>
<!-- Cybersecurity & Penetration Testing -->
<div class="services__card">
<h3 class="services__title">Cybersecurity <br> & Testing</h3>
<span class="services__button">
See More <i class='bx bx-right-arrow services__icon'></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close'></i>
<h3 class="services__modal-title">Cybersecurity & Testing</h3>
<p class="services__modal-description">
I provide security solutions, penetration testing, and vulnerability assessments to protect systems from threats.
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Ethical hacking and penetration testing (OWASP ZAP, Metasploit).</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Security auditing and compliance (ISO 27001, GDPR).</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Network and server security implementation.</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Load balancing, DDoS protection, and encryption strategies.</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check-circle'></i>
<p class="services__modal-info">Automated security testing and monitoring.</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--=============== WORK ===============-->
<!-- Section container -->
<section class="work section" id="work">
<div class="container">
<span class="section__subtitle">My Portfolio</span>
<h2 class="section__title">Featured Projects</h2>
<!-- Filter Buttons -->
<div class="work__filters">
<span class="work__item active-work" data-filter="all">All</span>
<span class="work__item" data-filter=".app">Apps</span>
<span class="work__item" data-filter=".web">Web Development</span>
<span class="work__item" data-filter=".uiux">UI/UX Design</span>
<span class="work__item" data-filter=".devops">Cloud & DevOps</span>
</div>
<!-- Project Cards -->
<div class="work__container grid">
<!-- LRT/MRT Signaling -->
<div class="work__card mix app devops">
<div class="work__tag">Transportation</div>
<h3 class="work__title">LRT/MRT/RTS Signaling System</h3>
<p class="work__description">Urban rail signaling system for Malaysia's public transportation network with real-time monitoring.</p>
<button class="work__button" data-video="VxFVLkVqEUo"><i class='bx bx-play-circle'></i> Watch Demo</button>
</div>
<!-- Project Management -->
<div class="work__card mix devops">
<div class="work__tag">Management</div>
<h3 class="work__title">Project Tracking System</h3>
<p class="work__description">Redmine-based project management with custom workflows, reporting, and team collaboration features.</p>
<button class="work__button" data-video="0SGo4ysnkJ0"><i class='bx bx-play-circle'></i> Watch Demo</button>
</div>
<!-- Inventory System -->
<div class="work__card mix web devops">
<div class="work__tag">Enterprise</div>
<h3 class="work__title">Cloud Inventory System</h3>
<p class="work__description">Full-featured inventory management with cloud deployment, real-time tracking, and access control.</p>
<button class="work__button" data-video="kqwIsAytyI0"><i class='bx bx-play-circle'></i> Watch Demo</button>
</div>
<!-- E-commerce -->
<div class="work__card mix web">
<div class="work__tag">E-commerce</div>
<h3 class="work__title">Export/Import Platform</h3>
<p class="work__description">UK-based commercial product platform with Laravel, React.js, and MySQL backend.</p>
<button class="work__button" data-video="ru3H-AEa6X0"><i class='bx bx-play-circle'></i> Watch Demo</button>
</div>
<!-- IoT Smart Building -->
<div class="work__card mix app devops">
<div class="work__tag">IoT</div>
<h3 class="work__title">Smart Building Automation</h3>
<p class="work__description">IoT-based building automation with Arduino & Raspberry Pi for power scheduling and production planning.</p>
<button class="work__button" data-video="ucnRe1eglwU"><i class='bx bx-play-circle'></i> Watch Demo</button>
</div>
<!-- Gaming Project -->
<div class="work__card mix app uiux">
<div class="work__tag">Gaming</div>
<h3 class="work__title">Game Development</h3>
<p class="work__description">Sample gaming project built with Unity and Cocos game engines with custom graphics.</p>
<button class="work__button" data-video="1fTcyv6d-VI"><i class='bx bx-play-circle'></i> Watch Demo</button>
</div>
<!-- iGaming -->
<div class="work__card mix web app">
<div class="work__tag">iGaming</div>
<h3 class="work__title">iGaming Platform</h3>
<p class="work__description">Complete iGaming solution with user management, payment integration, and real-time features.</p>
<button class="work__button" data-video="kyoqaYAXk-o"><i class='bx bx-play-circle'></i> Watch Demo</button>
</div>
<!-- ERP System -->
<div class="work__card mix web devops">
<div class="work__tag">Enterprise</div>
<h3 class="work__title">ERP System</h3>
<p class="work__description">Web-based Enterprise Resource Planning system with modules for HR, Finance, and Operations.</p>
<a href="https://github.com/eshad" class="work__button" target="_blank"><i class='bx bx-code-alt'></i> View Code</a>
</div>
<!-- Data Analysis -->
<div class="work__card mix app">
<div class="work__tag">AI/ML</div>
<h3 class="work__title">Data Analysis Tools</h3>
<p class="work__description">Custom data analysis tools using Pandas, NumPy, SciPy for web scraping and analytics.</p>
<a href="https://github.com/eshad" class="work__button" target="_blank"><i class='bx bx-code-alt'></i> View Code</a>
</div>
</div>
<!-- Video Modal -->
<div id="videoModal" class="video-modal">
<div class="video-modal-content">
<span class="video-modal-close">×</span>
<iframe
id="videoFrame"
width="100%"
height="400"
frameborder="0"
allow="autoplay; encrypted-media"
allowfullscreen
></iframe>
</div>
</div>
</div>
</section>
<!--=============== APPROACH SECTION ===============-->
<section class="portfolio-overview section">
<span class="section__subtitle">How I Work</span>
<h2 class="section__title">My Approach</h2>
<div class="portfolio__container container">
<!-- Problem-Solving & Approach -->
<div class="portfolio__content">
<h3 class="portfolio__title">Problem-Solving Philosophy</h3>
<p class="portfolio__description">
With 14+ years in software engineering, I've learned that the best solutions come from understanding problems deeply before writing a single line of code.
My approach: analyze thoroughly, design intentionally, and implement efficiently.
</p>
<p class="portfolio__description">
I break complex challenges into structured, manageable steps—delivering scalable, secure, and maintainable solutions.
Whether it's debugging a critical production issue or architecting a new system, I focus on root causes and long-term sustainability.
</p>
</div>
<!-- Research & Innovation -->
<div class="portfolio__content">
<h3 class="portfolio__title">Current Research: AI in Healthcare</h3>
<p class="portfolio__description">
I'm actively exploring AI-powered medical assistant tools that leverage machine learning and NLP to support healthcare professionals
in making faster, data-driven decisions.
</p>
<p class="portfolio__description">
My focus areas include predictive analytics, medical dataset integration, and preliminary diagnostic systems
that can enhance patient care while maintaining strict compliance and accuracy standards.
</p>
</div>
<!-- Leadership -->
<div class="portfolio__content">
<h3 class="portfolio__title">Leadership & Collaboration</h3>
<p class="portfolio__description">
Beyond technical expertise, I bring strong leadership skills honed through managing cross-functional teams and complex projects.
I believe in fostering collaborative environments where innovation thrives and team members grow.
</p>
<p class="portfolio__description">
My management style emphasizes clear communication, mentorship, and creating space for diverse perspectives—because the best solutions
often emerge from collaborative problem-solving.
</p>
</div>
</div>
</section>
<!-- Project Screenshot Carousel Section -->
<section class="work__screenshots section">
<div class="container">
<span class="section__subtitle">Project Gallery</span>
<h2 class="section__title">Screenshots Preview</h2>
<!-- Swiper -->
<div class="swiper projectSwiper">
<div class="swiper-wrapper">
<!-- iGaming / JackpotX -->
<div class="swiper-slide">
<img src="images/iGaming Project.png" alt="iGaming Project" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/iGaming Project Documentations.png" alt="iGaming Project Documentations" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/iGaming User.png" alt="iGaming User" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/iGaming User Panel.png" alt="iGaming User Panel" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/iGaming User Part JackpotX.png" alt="iGaming User Part JackpotX" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/iGaming -Admin.png" alt="iGaming Admin" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/iGaming Admin Section.png" alt="iGaming Admin Section" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/iGaming Admin Part.png" alt="iGaming Admin Part" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/iGaming Admin Part-2.png" alt="iGaming Admin Part 2" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/iGaming Admin Part - 3.png" alt="iGaming Admin Part 3" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/iGaming JackpotX Admin Panel.png" alt="iGaming JackpotX Admin Panel" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/iGaming JackpotX Admin - 4.png" alt="iGaming JackpotX Admin 4" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/CI:CD JackpotX.png" alt="CI/CD JackpotX" class="screenshot-img" loading="lazy" />
</div>
<!-- RTS (Real-Time System) -->
<div class="swiper-slide">
<img src="images/GDU RTS.png" alt="GDU RTS" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/RTS-WebSocket.png" alt="RTS WebSocket" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/RTS - User Panel.png" alt="RTS User Panel" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/RTS-User Panel.png" alt="RTS User Panel" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/RTS-User Panel-1.png" alt="RTS User Panel 1" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/RTS User Panel - 5.png" alt="RTS User Panel 5" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/RTS-Admin control and distribution.png" alt="RTS Admin Control and Distribution" class="screenshot-img" loading="lazy" />
</div>
<div class="swiper-slide">
<img src="images/RTS Admin control and Distribution - 2.png" alt="RTS Admin Control and Distribution 2" class="screenshot-img" loading="lazy" />