-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
1441 lines (1315 loc) · 77.9 KB
/
index.html
File metadata and controls
1441 lines (1315 loc) · 77.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" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-TLGX32ZH');</script>
<!-- End Google Tag Manager -->
<meta http-equiv="Content-Security-Policy" content="
default-src 'self';
script-src 'self' 'unsafe-inline' 'wasm-unsafe-eval' https://www.googletagmanager.com https://unpkg.com https://ahmershah.dev https://www.gstatic.com https://cdn.jsdelivr.net https://static.cloudflareinsights.com https://va.vercel-scripts.com https://cdn.vercel-insights.com;
style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://cdn.jsdelivr.net;
font-src 'self' data: https://fonts.gstatic.com;
img-src 'self' data: blob: https://ahmershah.dev https://www.googletagmanager.com https://res.cloudinary.com;
connect-src 'self' blob: https://ahmershah.dev https://www.googletagmanager.com https://www.google-analytics.com https://www.gstatic.com https://cdn.jsdelivr.net https://formspree.io https://pub-cf58c39336f64e21807389581d20ec09.r2.dev https://vitals.vercel-insights.com;
worker-src 'self' blob:;
frame-src 'self' https://*.ahmershah.dev https://ahmershahdev.github.io https://www.googletagmanager.com;
object-src 'none';
base-uri 'self';
upgrade-insecure-requests;">
<title>Ahmer Shah | Software Engineer & Full-Stack Developer</title>
<link rel="canonical" href="https://ahmershah.dev/">
<meta name="google-site-verification" content="uoOGBFxYr8VvgPVjFVX5ETvoTDnXkzDsUMIidCoA2Q4" />
<meta name="msvalidate.01" content="DBE8A4FC14B77DA2C6490D2C6A1EA2E7" />
<meta name="description"
content="Hey! I'm Ahmer Shah, a Software Engineering student & Full-Stack Developer crafting high-performance web & app solutions with Laravel, JavaScript, and AI.">
<meta name="author" content="Ahmer Shah">
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<meta property="og:title" content="Ahmer Shah | Software Engineer & Full-Stack Developer">
<meta property="og:description"
content="Hey! I'm Ahmer Shah, a Software Engineering student & Full-Stack Developer crafting high-performance web & app solutions with Laravel, JavaScript, and AI.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://ahmershah.dev/">
<meta property="og:image"
content="https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_logo_t/v1776536513/portfolio/logo/logo.webp">
<meta property="og:site_name" content="Ahmer Shah">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Ahmer Shah | Software Engineer & Full-Stack Developer">
<meta name="twitter:description"
content="Hey! I'm Ahmer Shah, a Software Engineering student & Full-Stack Developer crafting high-performance web & app solutions with Laravel, JavaScript, and AI.">
<meta name="twitter:image"
content="https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_logo_t/v1776536513/portfolio/logo/logo.webp">
<meta name="twitter:site" content="@ahmershah29">
<meta name="twitter:creator" content="@ahmershah29">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://www.gstatic.com" crossorigin>
<link rel="preload" href="assets/css/global.css" as="style">
<link rel="preload" href="assets/css/loader.css" as="style">
<link rel="icon" type="image/x-icon"
href="https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_default_t/v1776536595/portfolio/favicon/favicon-ico.ico">
<link rel="icon" type="image/png" sizes="96x96"
href="https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_default_t/v1776536502/portfolio/favicon/favicon-96x96.png">
<link rel="icon" type="image/svg+xml"
href="https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_default_t/v1776536591/portfolio/favicon/favicon-svg.svg">
<link rel="apple-touch-icon" sizes="180x180"
href="https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_default_t/v1776536500/portfolio/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192"
href="https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_default_t/v1776536509/portfolio/favicon/web-app-manifest-192x192.png">
<link rel="icon" type="image/png" sizes="512x512"
href="https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_default_t/v1776536511/portfolio/favicon/web-app-manifest-512x512.png">
<link rel="manifest" href="site.webmanifest">
<link rel="sitemap" type="application/xml" href="https://ahmershah.dev/sitemap.xml">
<meta name="theme-color" content="#000000">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="stylesheet" href="assets/css/bootstrap.purged.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/bootstrap-icons.min.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/all.purged.css" media="print" onload="this.media='all'">
<style>
body {
cursor:
url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><g fill='none' stroke='%2300f0ff' stroke-width='1.5'><line x1='16' y1='6' x2='16' y2='12'/><line x1='16' y1='20' x2='16' y2='26'/><line x1='6' y1='16' x2='12' y2='16'/><line x1='20' y1='16' x2='26' y2='16'/><circle cx='16' cy='16' r='1.5' fill='%2300f0ff' stroke='none'/></g></svg>") 16 16,
auto;
font-family: "Exo 2", sans-serif !important;
background-color: #0a0a0f !important;
color: #f0f8ff !important;
overflow-x: hidden !important;
-webkit-tap-highlight-color: transparent !important;
}
</style>
<link rel="stylesheet" href="assets/css/global.css" fetchpriority="high">
<link rel="stylesheet" href="assets/css/animations.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/navigation.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/loader.css">
<link rel="stylesheet" href="assets/css/buttons.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/badges.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/cards.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/skills.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/timeline.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/effects.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/hero.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/about.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/section-transitions.css?v=20260418" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/projects.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/blogs.css?v=20260418" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/social-animations.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/social-section.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/social-panel.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/social-card.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/social-responsive.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/cert-tabs.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/cert-book.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/cert-content.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/cert-controls.css?v=20260418" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/cert-responsive.css?v=20260418" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/form.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="assets/css/footer.css" media="print" onload="this.media='all'">
<link rel="preload"
href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600&display=swap"
as="style" onload="this.rel='stylesheet'">
<noscript>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600&display=swap">
</noscript>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.160.0/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.160.0/examples/jsm/"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Ahmer Shah",
"alternateName": "Syed Ahmer Shah",
"url": "https://ahmershah.dev",
"image": "https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_logo_t/v1776536513/portfolio/logo/logo.webp",
"jobTitle": "Software Engineering Student & Full-Stack Developer",
"description": "Hi, I'm Ahmer Shah — a Software Engineering student fueled by curiosity and a passion for building meaningful technology. My journey began at St. Bonaventure High School and continued at Superior College of Science, where I developed strong analytical skills and discipline. Today, I’m pursuing a Bachelor's in Software Engineering at HITMS and a 3-Year Advanced Diploma in Software Engineering (ADSE) from Aptech Pakistan. This dual path bridges theory and real-world practice — from programming, web development, and databases to full software design. I leverage AI tools like GitHub Copilot and Cursor AI to streamline workflows and innovate faster. Driven to create impactful software, I am honing my skills to become a Full-Stack Developer, aiming to build future-ready solutions and leave a lasting legacy.",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://ahmershah.dev/"
},
"alumniOf": [
{
"@type": "EducationalOrganization",
"name": "HITMS",
"description": "Bachelor's in Software Engineering | Nov 2024 — Dec 2028. Focusing on modern development practices, algorithms, and system design in a rigorous academic environment."
},
{
"@type": "EducationalOrganization",
"name": "Aptech Pakistan",
"description": "ADSE | Aug 2025 — Sep 2028. Parallel industry-focused training specializing in full-stack programming and software architecture."
},
{
"@type": "EducationalOrganization",
"name": "Superior College",
"description": "HSC — Pre-Engineering | Jul 2022 — Jul 2024. Grade: A (70.45%). Developed strong analytical skills and a mathematical foundation for complex problem-solving."
},
{
"@type": "EducationalOrganization",
"name": "St. Bonaventure's",
"description": "SSC — Computer Science | Apr 2012 — Jul 2022. Grade: A-1 (83.90%). Initial introduction to Computer Science and disciplined study habits."
}
],
"email": "support@ahmershah.dev",
"sameAs": [
"https://github.com/ahmershahdev",
"https://linkedin.com/in/syedahmershah",
"https://ahmershah.dev",
"https://g.page/r/CS9yn4Q_UhZ4EBM",
"",
"https://twitter.com/ahmershah29",
"https://instagram.com/ahmershah29",
"https://facebook.com/ahmershah29",
"https://tiktok.com/@ahmershah29",
"https://pinterest.com/ahmershah29",
"https://youtube.com/@ahmershahdev",
"https://medium.com/@syedahmershah",
"https://hashnode.com/@syedahmershah",
"https://dev.to/syedahmershah",
"https://linktr.ee/syedahmershah",
"https://beacons.ai/syedahmershah",
"https://leetcode.com/syedahmershah",
"https://hackerrank.com/profile/syedahmershah",
"https://www.datacamp.com/portfolio/syedahmershah",
"https://coursera.org/learner/syedahmershah"
],
"knowsAbout": [
"Frontend Development: HTML5, CSS3, JavaScript, Bootstrap, Tailwind CSS, jQuery",
"Backend Development: PHP, Laravel, WordPress",
"Databases: MySQL",
"Programming Languages: JavaScript",
"Development Tools: Git, GitHub, VS Code, Vercel, Supabase, Firebase, WordPress",
"AI-Assisted Tools: GitHub Copilot, Cursor AI, ChatGPT, Claude",
"Microsoft Office: Word, PowerPoint, Excel",
"SEO: Advanced Search Engine Optimization",
"Web Technologies: JSON, XML"
],
"knowsLanguage": [
"English",
"Urdu"
],
"address": {
"@type": "PostalAddress",
"addressLocality": "Hyderabad",
"addressRegion": "Sindh",
"addressCountry": "PK"
},
"contactPoint": [
{
"@type": "ContactPoint",
"contactType": "customer support",
"email": "support@ahmershah.dev",
"availableLanguage": ["English", "Urdu"]
}
],
"hasCreativeWork": {
"@type": "CreativeWork",
"name": "Quote by Ahmer Shah",
"text": "And I can fight only for something that I love, love only what I respect, and respect only what I at least know."
},
"mainEntity": {
"@type": "WebPage",
"@id": "https://ahmershah.dev/",
"name": "Ahmer Shah | Software Engineer & Full-Stack Developer",
"url": "https://ahmershah.dev/",
"description": "Portfolio of Ahmer Shah — Software Engineering student and Full-Stack Developer specializing in Laravel, JavaScript, Three.js, and AI-assisted development.",
"hasPart": [
{
"@type": "WebPageElement",
"name": "Hero",
"description": "Introduction to Ahmer Shah as a Software Engineer and Full-Stack Developer.",
"url": "https://ahmershah.dev/#home"
},
{
"@type": "WebPageElement",
"name": "About",
"description": "Background, biography and personal story of Ahmer Shah.",
"url": "https://ahmershah.dev/#about"
},
{
"@type": "WebPageElement",
"name": "Education",
"description": "Academic history including HITMS (BSc Software Engineering) and Aptech Pakistan (ADSE).",
"url": "https://ahmershah.dev/#education"
},
{
"@type": "WebPageElement",
"name": "Skills",
"description": "Technical skills covering frontend, backend, databases, DevTools, and AI-assisted workflows.",
"url": "https://ahmershah.dev/#skills"
},
{
"@type": "WebPageElement",
"name": "Certificates",
"description": "Professional certifications from Coursera, IBM, Meta, Amazon, LinkedIn Learning and more.",
"url": "https://ahmershah.dev/#certificates"
},
{
"@type": "WebPageElement",
"name": "Blog",
"description": "Technical articles and engineering notes published on Medium, Hashnode, and Dev.to.",
"url": "https://ahmershah.dev/#blog"
},
{
"@type": "WebPageElement",
"name": "Projects",
"description": "Portfolio of software projects including Commerza e-commerce platform and 3D portfolio.",
"url": "https://ahmershah.dev/#projects"
},
{
"@type": "WebPageElement",
"name": "Signal Hub",
"description": "Directory of all personal and professional social media profiles and contact channels.",
"url": "https://ahmershah.dev/#social"
},
{
"@type": "WebPageElement",
"name": "Contact",
"description": "Contact form and direct links to reach Ahmer Shah for opportunities and collaboration.",
"url": "https://ahmershah.dev/#contact"
}
]
}
}
</script>
<!-- Vercel Web Analytics -->
<script defer src="https://cdn.vercel-insights.com/v1/script.js"></script>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TLGX32ZH" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="loader-wrapper" style="user-select: none;">
<div class="scanlines"></div>
<div class="container h-100 d-flex flex-column justify-content-center align-items-center">
<div class="cyber-spinner mb-4">
<div class="spinner-border text-info" role="status" style="width: 100px; height: 100px; border-width: 3px;">
<span class="visually-hidden">Loading...</span>
</div>
<div class="spinner-text">INIT</div>
</div>
<div class="w-75 w-md-50">
<div class="d-flex justify-content-between mb-2">
<span class="text-info small fw-bold tracking-widest uppercase">System_Boot</span>
<span id="load-percent" class="text-info small fw-bold">0%</span>
</div>
<div class="progress bg-dark-cyan border-info-subtle" style="height: 8px;">
<div id="loading-bar" class="progress-bar bg-info shadow-glow transition-fast" role="progressbar"
aria-label="Page Loading" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 0%;"></div>
</div>
</div>
<div class="quote-box mt-5 px-3 text-center">
<p id="dynamic-quote" class="hacky-text small-mobile"></p>
</div>
</div>
</div>
<div id="three-bg-container"></div>
<canvas id="cursor-canvas"></canvas>
<div id="scroll-progress-bar" class="scroll-progress" aria-label="Page scroll progress" role="progressbar"
aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"></div>
<header>
<nav class="navbar navbar-expand-xl fixed-top">
<div class="container d-flex justify-content-between align-items-center">
<a class="navbar-brand" href="#home">AHMER SHAH</a>
<button class="navbar-toggler border-0 d-md-none" type="button" data-bs-toggle="offcanvas"
data-bs-target="#offcanvasNavbar">
<span class="menu-btn-text">MENU</span>
</button>
<div class="collapse navbar-collapse d-none d-md-flex justify-content-end" id="desktopNav">
<ul class="navbar-nav align-items-center">
<li class="nav-item"><a class="nav-link" href="#home"><i
class="fas fa-terminal me-2"></i><span>Home</span></a></li>
<li class="nav-item"><a class="nav-link" href="#about"><i
class="fas fa-user-secret me-2"></i><span>About</span></a></li>
<li class="nav-item"><a class="nav-link" href="#education"><i
class="fas fa-university me-2"></i><span>Education</span></a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#dropdown" id="skillsDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
<i class="fas fa-microchip me-2"></i><span>Capabilities</span>
</a>
<ul class="dropdown-menu dropdown-menu-dark custom-glow-menu" aria-labelledby="skillsDropdown">
<li><a class="dropdown-item" href="#skills"><i class="fas fa-code-branch me-2"></i>Skills</a></li>
<li><a class="dropdown-item" href="#projects"><i class="fas fa-project-diagram me-2"></i>Projects</a>
</li>
<li><a class="dropdown-item" href="#certificates"><i class="fas fa-shield-alt me-2"></i>Certificates</a>
</li>
<li><a class="dropdown-item" href="#blog"><i class="bi bi-book me-2"></i>Blog Stack</a></li>
<li><a class="dropdown-item" href="#social"><i class="fas fa-shield-alt me-2"></i>Signal Hub</a>
</li>
</ul>
</li>
<li class="nav-item"><a class="nav-link" href="#contact"><i
class="fas fa-satellite-dish me-2"></i><span>Contact</span></a></li>
</ul>
</div>
</div>
</nav>
</header>
<div class="offcanvas offcanvas-start bg-black text-white" tabindex="-1" id="offcanvasNavbar"
style="width: 280px; border-right: 1px solid #0ff0fc;">
<div class="offcanvas-header border-bottom border-secondary">
<h5 class="offcanvas-title" style="color: #0ff0fc; font-weight: bold; letter-spacing: 2px;">
<i class="fas fa-shredder me-2"></i>SYSTEM_MENU
</h5>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav overflow-hidden">
<li class="nav-item"><a class="nav-link py-3" href="#home" data-bs-dismiss="offcanvas"><i
class="fas fa-terminal me-3"></i>Home</a></li>
<li class="nav-item"><a class="nav-link py-3" href="#about" data-bs-dismiss="offcanvas"><i
class="fas fa-user-secret me-3"></i>About</a></li>
<li class="nav-item"><a class="nav-link py-3" href="#education" data-bs-dismiss="offcanvas"><i
class="fas fa-microchip me-3"></i>Education</a></li>
<li class="nav-item"><a class="nav-link py-3" href="#skills" data-bs-dismiss="offcanvas"><i
class="fas fa-code-branch me-3"></i>Skills</a></li>
<li class="nav-item"><a class="nav-link py-3" href="#certificates" data-bs-dismiss="offcanvas"><i
class="fas fa-shield-alt me-3"></i>Certification</a></li>
<li class="nav-item"><a class="nav-link py-3" href="#blog" data-bs-dismiss="offcanvas"><i
class="bi bi-book me-3"></i>Blog Stack</a></li>
<li class="nav-item"><a class="nav-link py-3" href="#projects" data-bs-dismiss="offcanvas"><i
class="fas fa-project-diagram me-3"></i>Projects</a></li>
<li class="nav-item"><a class="nav-link py-3" href="#social" data-bs-dismiss="offcanvas"><i
class="bi bi-broadcast me-3"></i>Signal Hub</a></li>
<li class="nav-item"><a class="nav-link py-3" href="#contact" data-bs-dismiss="offcanvas"><i
class="fas fa-satellite-dish me-3"></i>Contact</a></li>
</ul>
</div>
</div>
<main class="page-enter">
<section id="home" class="hero-section d-flex align-items-center reveal-visible" aria-label="Introduction">
<div class="container">
<div class="row align-items-center gy-5">
<div class="col-lg-6">
<div class="hero-sys-chip mb-4">
<span class="hero-chip-dot"></span>
<span>◈ SYS_ONLINE — FULL STACK DEV</span>
</div>
<header>
<h1 class="text-neon-green mb-2 mt-3 mt-lg-0 fw-bold">Hello, I'm</h1>
<h2 class="display-3 glowing-text mb-4">Ahmer Shah</h2>
<h3 class="h3 mb-4 text-light">
<span id="typewriter"></span><span class="cursor-blink">|</span>
</h3>
</header>
<div class="hero-bio-wrap mb-5">
<div class="hero-bio-bar"></div>
<p class="text-secondary" style="line-height: 1.6;">
A passionate software engineering student with a solid academic
background and a deep interest in technology, aiming to create
meaningful, future-ready solutions.
</p>
</div>
<div class="d-flex flex-row flex-wrap gap-2">
<a href="#contact" class="btn btn-neon flex-fill" aria-label="Contact Ahmer Shah"><i
class="bi bi-send-fill me-2" aria-hidden="true"></i>Get In Touch</a>
<a href="#certificates" class="btn btn-neon flex-fill" aria-label="View certifications"><i
class="bi bi-patch-check-fill me-2" aria-hidden="true"></i>View Certificates</a>
</div>
<a href="https://drive.google.com/file/d/1hkqKbb8kCnF2taKcAHZs5hW1Cz89HDOZ/view?usp=drive_link"
class="btn btn-neon w-100 mt-2" target="_blank" rel="noopener noreferrer">
<i class="bi bi-file-earmark-pdf-fill me-2" aria-hidden="true"></i>Download Resume (PDF)
</a>
</div>
<div class="col-lg-6 d-flex justify-content-center">
<div class="hero-orbit-wrap">
<p class="orbit-sys-label" aria-hidden="true">◈ PROFILE DATA NODE</p>
<div class="hero-orbit-scene" role="region" aria-label="Profile highlights">
<svg class="orbit-static-svg" viewBox="0 0 360 360" xmlns="http://www.w3.org/2000/svg"
aria-hidden="true">
<circle cx="180" cy="180" r="120" stroke="rgba(0,240,255,0.15)" stroke-width="1"
stroke-dasharray="5 6" fill="none" />
<circle cx="180" cy="180" r="46" stroke="rgba(0,255,65,0.2)" stroke-width="1" fill="none" />
<line x1="180" y1="180" x2="180" y2="60" stroke="rgba(0,240,255,0.2)" stroke-width="1"
stroke-dasharray="3 5" />
<line x1="180" y1="180" x2="294" y2="143" stroke="rgba(0,240,255,0.2)" stroke-width="1"
stroke-dasharray="3 5" />
<line x1="180" y1="180" x2="251" y2="277" stroke="rgba(0,240,255,0.2)" stroke-width="1"
stroke-dasharray="3 5" />
<line x1="180" y1="180" x2="109" y2="277" stroke="rgba(0,240,255,0.2)" stroke-width="1"
stroke-dasharray="3 5" />
<line x1="180" y1="180" x2="66" y2="143" stroke="rgba(0,240,255,0.2)" stroke-width="1"
stroke-dasharray="3 5" />
<circle cx="180" cy="60" r="3" fill="#0ff0fc" opacity="0.7" />
<circle cx="294" cy="143" r="3" fill="#0ff0fc" opacity="0.7" />
<circle cx="251" cy="277" r="3" fill="#0ff0fc" opacity="0.7" />
<circle cx="109" cy="277" r="3" fill="#0ff0fc" opacity="0.7" />
<circle cx="66" cy="143" r="3" fill="#0ff0fc" opacity="0.7" />
</svg>
<svg class="orbit-spin-svg" viewBox="0 0 360 360" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
<circle cx="180" cy="180" r="155" stroke="rgba(0,255,65,0.08)" stroke-width="1"
stroke-dasharray="2 14" fill="none" />
<circle cx="180" cy="25" r="4" fill="#00ff41" opacity="0.6" />
</svg>
<div class="orbit-center-node">
<div class="orbit-pulse-ring orbit-pulse-1"></div>
<div class="orbit-pulse-ring orbit-pulse-2"></div>
<div class="orbit-center-core">
<i class="bi bi-person-badge-fill" aria-hidden="true"></i>
<span class="orbit-online-text">ONLINE</span>
</div>
</div>
<div class="orbit-node orbit-node-1" aria-label="Dual Degree in Software Engineering">
<div class="orbit-node-card">
<i class="bi bi-mortarboard-fill" aria-hidden="true"></i>
<strong>Dual Degree</strong>
<small>Software Eng.</small>
</div>
</div>
<div class="orbit-node orbit-node-2" aria-label="Full-Stack Development Focus">
<div class="orbit-node-card">
<i class="bi bi-code-square" aria-hidden="true"></i>
<strong>Full-Stack</strong>
<small>Dev Focus</small>
</div>
</div>
<div class="orbit-node orbit-node-3" aria-label="50 Plus Professional Certifications">
<div class="orbit-node-card">
<i class="bi bi-patch-check-fill" aria-hidden="true"></i>
<strong>50+ Certs</strong>
<small>Professional</small>
</div>
</div>
<div class="orbit-node orbit-node-4" aria-label="Passion for Tech Innovation">
<div class="orbit-node-card">
<i class="bi bi-controller" aria-hidden="true"></i>
<strong>Tech Passion</strong>
<small>Innovation</small>
</div>
</div>
<div class="orbit-node orbit-node-5" aria-label="AI-Assisted Development Tools">
<div class="orbit-node-card">
<i class="bi bi-robot" aria-hidden="true"></i>
<strong>AI-Assisted</strong>
<small>Dev Tools</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="about" class="py-5 curtain-reveal" aria-labelledby="about-heading">
<div class="container">
<h2 id="about-heading" class="section-title text-center mb-5">About Me</h2>
<div class="row">
<div class="col-lg-10 mx-auto">
<article class="neon-border p-4 p-md-5" role="main">
<div class="terminal-header d-flex mb-4 border-bottom border-secondary pb-2">
<span class="dot bg-danger me-2"></span>
<span class="dot bg-warning me-2"></span>
<span class="dot bg-success"></span>
<span class="ms-auto small text-secondary font-monospace">@ahmershahdev</span>
</div>
<p class="mb-4 lead-custom">
Hi, I'm <strong class="text-neon-green">Ahmer Shah</strong> — a Software Engineering student fueled by
curiosity and a love for building technology that matters.
</p>
<p class="mb-4">
My journey started at <strong class="text-info">St. Bonaventure High School</strong> and continued at
<strong class="text-info">Superior College of Science</strong>, where I developed strong analytical
skills and discipline. Today, I’m pursuing a Bachelor's in Software Engineering at <abbr
title="Hyderabad Institute of Technology and Management Sciences">HITMS</abbr> and a 3-Year Advanced
Diploma in Software Engineering (ADSE) from <strong class="text-danger">Aptech Pakistan</strong>.
</p>
<p class="mb-4">
This dual path bridges <span class="text-info">theory</span> and <span
class="text-neon-green">real-world practice</span> — from programming, web development, and databases
to full software design. I leverage AI tools like <strong class="text-warning">GitHub Copilot</strong>
and <strong class="text-warning">Cursor AI</strong> to streamline workflows and innovate faster.
</p>
<p class="mb-0">
Driven to create impactful software, I am honing my skills to become a <strong
class="text-danger fw-800">Full-Stack Developer</strong>. My goal is to build future-ready solutions
and leave a lasting legacy beyond the ordinary.
</p>
</article>
</div>
</div>
</div>
</section>
<section id="education" class="py-5 bg-dark curtain-reveal" aria-labelledby="education-heading">
<div class="container">
<h2 id="education-heading" class="section-title text-center mb-5">Education & Journey</h2>
<div class="timeline">
<article class="timeline-item">
<div class="timeline-icon"><i class="bi bi-mortarboard-fill"></i></div>
<div class="timeline-content">
<h3 class="h5 mb-1 text-uppercase">HITMS</h3>
<div class="text-neon-blue mb-2 fw-bold">
Bachelor's in Software Engineering | <time datetime="2024-11">Nov 2024</time> — <time
datetime="2028-12">Dec 2028</time>
</div>
<p class="text-secondary mb-0">Focusing on modern development practices, algorithms, and system design in
a rigorous academic environment.</p>
</div>
</article>
<article class="timeline-item">
<div class="timeline-icon"><i class="bi bi-code-slash"></i></div>
<div class="timeline-content">
<h3 class="h5 mb-1 text-uppercase">Aptech Pakistan</h3>
<div class="text-neon-blue mb-2 fw-bold">
ADSE | <time datetime="2025-08">Aug 2025</time> — <time datetime="2028-09">Sep 2028</time>
</div>
<p class="text-secondary mb-0">Parallel industry-focused training specializing in full-stack programming
and software architecture.</p>
</div>
</article>
<article class="timeline-item">
<div class="timeline-icon"><i class="bi bi-book"></i></div>
<div class="timeline-content">
<h3 class="h5 mb-1 text-uppercase">Superior College</h3>
<div class="text-neon-blue mb-2 fw-bold">
HSC — Pre-Engineering | <time datetime="2022-07">Jul 2022</time> — <time datetime="2024-07">Jul
2024</time>
</div>
<div class="badge bg-dark border border-neon-green text-neon-green mb-2">Grade: A (70.45%)</div>
<p class="text-secondary mb-0">Developed strong analytical skills and a mathematical foundation for
complex problem-solving.</p>
</div>
</article>
<article class="timeline-item">
<div class="timeline-icon"><i class="bi bi-pencil-square"></i></div>
<div class="timeline-content">
<h3 class="h5 mb-1 text-uppercase">St. Bonaventure's</h3>
<div class="text-neon-blue mb-2 fw-bold">
SSC — Computer Science | <time datetime="2012-04">Apr 2012</time> — <time datetime="2022-07">Jul
2022</time>
</div>
<div class="badge bg-dark border border-neon-green text-neon-green mb-2">Grade: A-1 (83.90%)</div>
<p class="text-secondary mb-0">Initial introduction to Computer Science and disciplined study habits.</p>
</div>
</article>
</div>
</div>
</section>
<section id="skills" class="py-5 curtain-reveal" aria-labelledby="skills-heading">
<div class="container">
<h2 id="skills-heading" class="section-title text-center mb-5">Skills & Technologies</h2>
<div class="row g-4 justify-content-center">
<div class="col-md-6 col-lg-4 d-flex">
<div class="skill-item w-100 p-3" role="group" aria-label="Frontend Development Skills">
<h3 class="h5"><i class="bi bi-code-slash text-neon-blue me-2" aria-hidden="true"></i> Frontend
Development</h3>
<p class="small text-secondary">HTML5, CSS3, JavaScript, Bootstrap, Tailwind CSS, jQuery</p>
<div class="progress" style="height: 8px; background-color: rgba(255, 255, 255, 0.1)">
<div class="progress-bar" role="progressbar"
style="width: 85%; background: linear-gradient(to right, #0ff0fc, #00ff41);"
aria-label="Frontend Development" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 d-flex">
<div class="skill-item w-100 p-3" role="group" aria-label="Backend Development Skills">
<h3 class="h5"><i class="bi bi-file-earmark-code-fill text-neon-blue me-2" aria-hidden="true"></i> Backend
Development</h3>
<p class="small text-secondary">PHP, Laravel, WordPress</p>
<div class="progress" style="height: 8px; background-color: rgba(255, 255, 255, 0.1)">
<div class="progress-bar" role="progressbar"
style="width: 75%; background: linear-gradient(to right, #0ff0fc, #00ff41);"
aria-label="Backend Development" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 d-flex">
<div class="skill-item w-100 p-3" role="group" aria-label="Database Skills">
<h3 class="h5"><i class="bi bi-server text-neon-blue me-2" aria-hidden="true"></i> Databases</h3>
<p class="small text-secondary">MySQL</p>
<div class="progress" style="height: 8px; background-color: rgba(255, 255, 255, 0.1)">
<div class="progress-bar" role="progressbar"
style="width: 80%; background: linear-gradient(to right, #0ff0fc, #00ff41);" aria-label="Database"
aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 d-flex">
<div class="skill-item w-100 p-3" role="group" aria-label="Programming Languages Skills">
<h3 class="h5"><i class="bi bi-braces text-neon-blue me-2" aria-hidden="true"></i> Programming Languages
</h3>
<p class="small text-secondary">Basic JavaScript</p>
<div class="progress" style="height: 8px; background-color: rgba(255, 255, 255, 0.1)">
<div class="progress-bar" role="progressbar"
style="width: 75%; background: linear-gradient(to right, #0ff0fc, #00ff41);"
aria-label="Programming Languages" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 d-flex">
<div class="skill-item w-100 p-3" role="group" aria-label="Development Tools Skills">
<h3 class="h5"><i class="bi bi-tools text-neon-blue me-2" aria-hidden="true"></i> Development Tools</h3>
<p class="small text-secondary">Git, GitHub, VS Code, Vercel, Supabase, Firebase, WordPress</p>
<div class="progress" style="height: 8px; background-color: rgba(255, 255, 255, 0.1)">
<div class="progress-bar" role="progressbar"
style="width: 85%; background: linear-gradient(to right, #0ff0fc, #00ff41);"
aria-label="Development Tools" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 d-flex">
<div class="skill-item w-100 p-3" role="group" aria-label="AI Tools Skills">
<h3 class="h5"><i class="bi bi-cpu text-neon-blue me-2" aria-hidden="true"></i> AI-Assisted Tools</h3>
<p class="small text-secondary">GitHub Copilot, Cursor AI, ChatGPT, Claude</p>
<div class="progress" style="height: 8px; background-color: rgba(255, 255, 255, 0.1)">
<div class="progress-bar" role="progressbar"
style="width: 70%; background: linear-gradient(to right, #0ff0fc, #00ff41);"
aria-label="AI-Assisted Tools" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 d-flex">
<div class="skill-item w-100 p-3" role="group" aria-label="Microsoft Office Skills">
<h3 class="h5"><i class="bi bi-file-earmark-text text-neon-blue me-2" aria-hidden="true"></i> Microsoft
Office</h3>
<p class="small text-secondary">Word, PowerPoint, Excel</p>
<div class="progress" style="height: 8px; background-color: rgba(255, 255, 255, 0.1)">
<div class="progress-bar" role="progressbar"
style="width: 85%; background: linear-gradient(to right, #0ff0fc, #00ff41);"
aria-label="Microsoft Office" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 d-flex">
<div class="skill-item w-100 p-3" role="group" aria-label="SEO Skills">
<h3 class="h5"><i class="bi bi-search text-neon-blue me-2" aria-hidden="true"></i> SEO</h3>
<p class="small text-secondary">Advanced Search Engine Optimization</p>
<div class="progress" style="height: 8px; background-color: rgba(255, 255, 255, 0.1)">
<div class="progress-bar" role="progressbar"
style="width: 90%; background: linear-gradient(to right, #0ff0fc, #00ff41);" aria-label="SEO"
aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 d-flex">
<div class="skill-item w-100 p-3" role="group" aria-label="Web Technologies Skills">
<h3 class="h5"><i class="bi bi-globe text-neon-blue me-2" aria-hidden="true"></i> Web Technologies</h3>
<p class="small text-secondary">JSON, XML</p>
<div class="progress" style="height: 8px; background-color: rgba(255, 255, 255, 0.1)">
<div class="progress-bar" role="progressbar"
style="width: 80%; background: linear-gradient(to right, #0ff0fc, #00ff41);"
aria-label="Web Technologies" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="certificates" class="py-5 bg-dark curtain-reveal" aria-labelledby="certs-heading">
<div class="container">
<h2 id="certs-heading" class="section-title text-center mb-4">Certifications</h2>
<div class="cert-tabs-wrapper mb-5">
<div class="cert-tabs d-flex justify-content-center flex-wrap gap-2">
<button class="cert-tab-btn active" data-cat="all" aria-pressed="true">
<i class="bi bi-grid-3x3-gap me-1"></i>All <span class="cert-tab-count">6</span>
</button>
<button class="cert-tab-btn" data-cat="coursera" aria-pressed="false">
<i class="bi bi-mortarboard me-1"></i>Coursera <span class="cert-tab-count">3</span>
</button>
<button class="cert-tab-btn" data-cat="linkedin" aria-pressed="false">
<i class="bi bi-linkedin me-1"></i>LinkedIn <span class="cert-tab-count">3</span>
</button>
<button class="cert-tab-btn" data-cat="hackerrank" aria-pressed="false">
<i class="bi bi-code-slash me-1"></i>HackerRank <span class="cert-tab-count">3</span>
</button>
</div>
</div>
<div class="cert-magazine-scene">
<div id="certMagazine">
</div>
<div class="book-ground-shadow"></div>
</div>
<div class="cert-book-nav mt-4 d-flex align-items-center justify-content-center">
<button class="cert-nav-btn" id="certPrevBtn" aria-label="Previous certificate">
<i class="bi bi-chevron-left"></i>
</button>
<div class="d-flex flex-column align-items-center gap-2">
<span class="cert-counter font-orbitron" id="certCounter">Cover</span>
<div class="cert-progress-track">
<div class="cert-progress-bar" id="certProgressBar"></div>
</div>
<div class="cert-dot-nav" id="certDotNav" role="tablist" aria-label="Certificate page dots"></div>
</div>
<button class="cert-nav-btn" id="certNextBtn" aria-label="Next certificate">
<i class="bi bi-chevron-right"></i>
</button>
</div>
</div>
</section>
<section id="blog" class="py-5 curtain-reveal" aria-labelledby="blog-heading">
<div class="container">
<h2 id="blog-heading" class="section-title text-center mb-3">Stacked Blog Lab</h2>
<p class="blog-subtitle">
Five floating entries from my writing vault. Click the stack once to fan it open, click again to close,
and jump into Medium, Hashnode, or Dev.to anytime.
</p>
<div class="blog-stack-stage" aria-label="Interactive blog card stack">
<div class="blog-pen-orbit" aria-hidden="true">
<i class="bi bi-pen"></i>
</div>
<article class="blog-stack-card blog-card-l1">
<span class="blog-platform"><span class="blog-platform-glyph">DEV</span> Dev.to</span>
<p class="blog-author">@syedahmershah</p>
<h3 class="blog-title">The Enemy in Your Terminal: Why OpenClaw was the Perfect Trojan Horse</h3>
<p class="blog-description">
A deep dive into why developer trust and terminal workflows were the perfect social-engineering surface
for one of the most dangerous modern attack narratives.
</p>
<div class="blog-meta-row">
<span class="blog-meta">security · terminal ops · threat intel</span>
<a class="blog-read-link"
href="https://dev.to/syedahmershah/the-enemy-in-your-terminal-why-openclaw-was-the-perfect-trojan-horse-4efc"
target="_blank" rel="noopener noreferrer">Read Here <i class="bi bi-arrow-up-right"></i></a>
</div>
</article>
<article class="blog-stack-card blog-card-l2">
<span class="blog-platform"><i class="bi bi-medium"></i> Medium</span>
<p class="blog-author">@syedahmershah</p>
<h3 class="blog-title">How 1 Missing Line of Code Cost Anthropic $340 Billion</h3>
<p class="blog-description">
A forensic-style breakdown of cascading technical and financial impact when high-stakes systems rely on
one fragile assumption.
</p>
<div class="blog-meta-row">
<span class="blog-meta">engineering risk · AI systems · postmortem</span>
<a class="blog-read-link"
href="https://medium.com/@syedahmershah/how-1-missing-line-of-code-cost-anthropic-340-billion-074db31fae55"
target="_blank" rel="noopener noreferrer">Read Here <i class="bi bi-arrow-up-right"></i></a>
</div>
</article>
<article class="blog-stack-card blog-card-l3">
<span class="blog-platform"><span class="blog-platform-glyph">HN</span> Hashnode</span>
<p class="blog-author">@syedahmershah</p>
<h3 class="blog-title">Beyond the Prompt: The Rise of the Sovereign Developer</h3>
<p class="blog-description">
Why modern builders need architectural judgment, systems thinking, and product ownership beyond just
prompting tools.
</p>
<div class="blog-meta-row">
<span class="blog-meta">developer mindset · AI era · strategy</span>
<a class="blog-read-link"
href="https://blog.ahmershah.dev/beyond-the-prompt-the-rise-of-the-sovereign-developer?utm_source=hashnode&utm_medium=feed"
target="_blank" rel="noopener noreferrer">Read Here <i class="bi bi-arrow-up-right"></i></a>
</div>
</article>
<article class="blog-stack-card blog-card-l4">
<span class="blog-platform"><span class="blog-platform-glyph">DEV</span> Dev.to</span>
<p class="blog-author">@syedahmershah</p>
<h3 class="blog-title">Your Best Employee is Your Biggest Security Risk (And They Use ChatGPT)</h3>
<p class="blog-description">
A practical security briefing on human trust boundaries, AI-assisted workflows, and why insider behavior
can quietly become your largest vulnerability.
</p>
<div class="blog-meta-row">
<span class="blog-meta">security culture · insider risk · GenAI policy</span>
<a class="blog-read-link"
href="https://dev.to/syedahmershah/your-best-employee-is-your-biggest-security-risk-and-they-use-chatgpt-3nm6"
target="_blank" rel="noopener noreferrer">Read Here <i class="bi bi-arrow-up-right"></i></a>
</div>
</article>
<article class="blog-stack-card blog-card-l5">
<span class="blog-platform"><i class="bi bi-medium"></i> Medium</span>
<p class="blog-author">@syedahmershah</p>
<h3 class="blog-title">Your $20/mo AI Wrapper is Dead: Why OpenClaw is Making 60% of SaaS Tools Obsolete
</h3>
<p class="blog-description">
A market-technical analysis of why thin AI wrappers are collapsing and what builders must do next to stay
relevant.
</p>
<div class="blog-meta-row">
<span class="blog-meta">SaaS economics · AI disruption · product moat</span>
<a class="blog-read-link"
href="https://medium.com/@syedahmershah/openclaw-vs-saas-ai-tools-2026-1387cc9567fb" target="_blank"
rel="noopener noreferrer">Read Here <i class="bi bi-arrow-up-right"></i></a>
</div>
</article>
</div>
</div>
</section>
<section id="projects" class="py-5 curtain-reveal" aria-labelledby="projects-heading">
<div class="container">
<h2 id="projects-heading" class="section-title text-center mb-5">Projects</h2>
<div class="project-carousel" id="projectCarousel">
<div class="project-slide active" data-index="0">
<div class="row align-items-center g-4 g-lg-5">
<div class="col-lg-6 project-img-col">
<img
src="https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_project_t/v1776536520/portfolio/projects/commerza.webp"
class="project-carousel-img" alt="Commerza - E-Commerce Store Home Page">
</div>
<div class="col-lg-6 project-info-col">
<h3 class="h4 mb-3">Commerza - E-Commerce Store</h3>
<p class="text-secondary mb-4">
Commerza is a full-stack e-commerce web application with a modern user storefront and an admin
dashboard. It includes product & order management, authentication, cart, tracking,
dynamic UI interactions, and SEO optimization. Built for real-world use.
</p>
<div class="mb-4">
<span class="badge bg-neon-green">HTML5</span>
<span class="badge bg-neon-red">CSS3</span>
<span class="badge bg-neon-blue">Bootstrap</span>
<span class="badge bg-neon-green">JavaScript</span>
<span class="badge bg-neon-red">jQuery</span>
<span class="badge bg-neon-red">SEO</span>
<span class="badge bg-neon-blue">MySQL</span>
<span class="badge bg-neon-purple">PHP</span>
<span class="badge bg-neon-purple">Laravel</span>
</div>
<div class="row g-2">
<div class="col-6"><a href="https://github.com/ahmershahdev/commerza.git" target="_blank"
class="btn btn-sm btn-neon w-100">View Project</a></div>
<div class="col-6"><a href="https://commerza.ahmershah.dev/" target="_blank" rel="noopener noreferrer"
class="btn btn-sm btn-neon w-100">Visit Website</a></div>
</div>
</div>
</div>
</div>
<div class="project-slide" data-index="1">
<div class="row align-items-center g-4 g-lg-5">
<div class="col-lg-6 project-img-col">
<img
src="https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_project_t/v1776536522/portfolio/projects/novio.webp"
class="project-carousel-img" alt="Novio Home Page">
</div>
<div class="col-lg-6 project-info-col">
<h3 class="h4 mb-3">Novio</h3>
<p class="text-secondary mb-4">
Novio is a pure frontend showcase with 30+ custom HTML pages, simulating a premium online tech courses
platform. Built entirely with HTML, CSS, and JavaScript, Novio demonstrates responsive layouts,
interactive UI, and localStorage-based features—no backend required.
</p>
<div class="mb-4">
<span class="badge bg-neon-green">HTML5</span>
<span class="badge bg-neon-green">CSS3</span>
<span class="badge bg-neon-green">Bootstrap</span>
<span class="badge bg-neon-red">JavaScript</span>
<span class="badge bg-neon-red">jQuery</span>
<span class="badge bg-neon-blue">SEO</span>
</div>
<div class="row g-2">
<div class="col-6"><a href="https://github.com/ahmershahdev/novio.git" target="_blank"
class="btn btn-sm btn-neon w-100">View Project</a></div>
<div class="col-6"><a href="https://novio.ahmershah.dev/" target="_blank" rel="noopener noreferrer"
class="btn btn-sm btn-neon w-100">Visit Website</a></div>
</div>
</div>
</div>
</div>
<div class="project-slide" data-index="2">
<div class="row align-items-center g-4 g-lg-5">
<div class="col-lg-6 project-img-col">
<img
src="https://res.cloudinary.com/syedahmershah/image/upload/t_portfolio_project_t/v1776536518/portfolio/projects/auctions_table.webp"
class="project-carousel-img" alt="Auctions Table Home Page">
</div>
<div class="col-lg-6 project-info-col">
<h3 class="h4 mb-3">Auctions Table (Frontend)</h3>
<p class="text-secondary mb-4">
AuctionsTable is an elegant, single-page auction platform designed to showcase live auctions with
real-time bidding capabilities. The website features smooth animations, a premium dark theme, and a
fully responsive design optimized for all devices.
</p>
<div class="mb-4">