-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
974 lines (867 loc) Β· 38.5 KB
/
Copy pathindex.html
File metadata and controls
974 lines (867 loc) Β· 38.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Swapneswar Sundar Ray | AI Systems Engineer</title>
<meta name="description" content="Swapneswar Sundar Ray - AI Systems Engineer specializing in Agentic AI, Enterprise API Architectures, Distributed Systems, and production-grade AI platforms." />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
:root {
--bg: #061a31;
--bg2: #082442;
--panel: rgba(9, 35, 64, 0.82);
--panel2: rgba(11, 45, 82, 0.78);
--line: rgba(118, 190, 255, 0.22);
--line2: rgba(255, 255, 255, 0.09);
--text: #f5f9ff;
--muted: #bed5ed;
--soft: #8ecbff;
--accent: #57b9ff;
--accent2: #1d8cff;
--green: #57d68d;
--white: #ffffff;
--shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background:
radial-gradient(circle at 86% 10%, rgba(0, 132, 255, 0.24), transparent 24%),
radial-gradient(circle at 0% 0%, rgba(33, 150, 243, 0.18), transparent 30%),
linear-gradient(135deg, #06172c 0%, #061d36 42%, #092a4e 100%);
color: var(--text);
line-height: 1.55;
min-height: 100vh;
}
body::before {
content: "";
position: fixed;
inset: 0;
pointer-events: none;
opacity: .24;
background-image:
linear-gradient(rgba(102, 191, 255, .12) 1px, transparent 1px),
linear-gradient(90deg, rgba(102, 191, 255, .12) 1px, transparent 1px);
background-size: 54px 54px;
mask-image: radial-gradient(circle at 90% 12%, #000 0%, transparent 42%);
}
a { color: inherit; text-decoration: none; }
.page {
max-width: 1320px;
margin: 0 auto;
padding: 0 16px 24px;
}
.topbar {
height: 66px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 22px;
position: sticky;
top: 0;
z-index: 20;
background: rgba(4, 17, 34, .92);
backdrop-filter: blur(14px);
border-bottom: 1px solid rgba(89, 178, 255, .15);
margin: 0 -16px 0;
padding: 0 34px;
box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.brand {
font-size: 21px;
font-weight: 900;
letter-spacing: -0.6px;
white-space: nowrap;
}
.nav {
display: flex;
align-items: center;
gap: 34px;
font-size: 13px;
font-weight: 800;
text-transform: uppercase;
}
.nav a {
color: #f4f8ff;
padding: 24px 0 20px;
border-bottom: 2px solid transparent;
opacity: .92;
}
.nav a:hover,
.nav a.active {
color: var(--accent);
border-bottom-color: var(--accent);
}
.download-btn {
cursor: pointer;
border: 1px solid rgba(87, 185, 255, .5);
background: #137dde;
color: white;
border-radius: 8px;
padding: 9px 14px;
font-size: 12px;
font-weight: 900;
text-transform: uppercase;
box-shadow: 0 8px 20px rgba(19,125,222,.28);
}
.download-btn:hover {
background: #0f6fc7;
}
@media print {
@page {
size: A4;
margin: 0.45in;
}
html, body {
background: #061a31 !important;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
body::before {
opacity: .12;
}
.topbar {
position: relative;
background: rgba(4, 17, 34, .98) !important;
}
.download-btn {
display: none !important;
}
footer {
padding-bottom: 0;
}
.page {
max-width: 100%;
padding: 0 8px;
}
.hero {
grid-template-columns: 220px 1fr 320px;
gap: 18px;
padding-top: 20px;
}
.layout {
grid-template-columns: 250px 1fr;
gap: 14px;
}
.bottom-grid {
grid-template-columns: repeat(3, 1fr);
}
.panel,
.main-panel,
.sidebar,
.impact-panel,
.contribution,
.client-row {
background: rgba(9, 35, 64, 0.92) !important;
box-shadow: none !important;
}
.hero h1 {
font-size: 42px !important;
}
.hero .role-title {
font-size: 18px !important;
}
.photo-ring {
width: 180px;
height: 180px;
}
.contribution-grid {
grid-template-columns: repeat(3, 1fr);
}
.impact strong {
font-size: 20px;
}
.section-title {
font-size: 16px;
}
.exp-title {
font-size: 16px;
}
.research-table td,
ul,
li,
.about p,
.skill-group p,
.expertise-list div,
.exp-meta {
font-size: 12px;
}
a {
text-decoration: none;
}
}
.hero {
display: grid;
grid-template-columns: 290px 1fr 440px;
gap: 28px;
padding: 36px 28px 22px;
align-items: center;
}
.photo-ring {
width: 220px;
height: 220px;
border-radius: 50%;
border: 1.5px dashed rgba(220, 239, 255, .8);
background: radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,.02));
display: grid;
place-items: center;
overflow: hidden;
margin: 0 auto;
box-shadow: inset 0 0 40px rgba(255,255,255,.05), 0 20px 45px rgba(0,0,0,.20);
}
.photo-ring img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.hero h1 {
font-size: clamp(38px, 4.2vw, 54px);
line-height: 1.04;
letter-spacing: -1.4px;
margin: 0 0 12px;
font-weight: 900;
}
.hero .role-title {
font-size: 20px;
line-height: 1.28;
margin-bottom: 16px;
color: var(--white);
}
.hero .role-title span { color: var(--accent); }
.contact-line {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 14px;
color: #dcefff;
font-size: 16px;
margin-bottom: 18px;
}
.mini-icon { color: var(--accent); font-weight: 900; }
.hero-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.button {
display: inline-flex;
align-items: center;
gap: 10px;
border-radius: 8px;
padding: 11px 20px;
font-weight: 800;
border: 1px solid rgba(255,255,255,.22);
background: rgba(255,255,255,.08);
transition: transform .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-1px); background: rgba(255,255,255,.14); }
.button.primary { background: #137dde; border-color: #137dde; box-shadow: 0 10px 24px rgba(19,125,222,.28); }
.impact-panel {
border: 1px solid var(--line);
background: rgba(9, 35, 64, .48);
border-radius: 10px;
padding: 18px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
box-shadow: var(--shadow);
}
.impact {
min-height: 104px;
display: grid;
grid-template-columns: 54px 1fr;
align-items: center;
gap: 12px;
padding: 12px 16px;
border-right: 1px solid var(--line);
border-bottom: 1px solid var(--line);
}
.impact:nth-child(2), .impact:nth-child(4) { border-right: 0; }
.impact:nth-child(3), .impact:nth-child(4) { border-bottom: 0; }
.impact svg { width: 42px; height: 42px; stroke: var(--accent); }
.impact strong { display: block; font-size: 26px; color: var(--accent); line-height: 1; }
.impact span { font-size: 14px; color: #e7f3ff; font-weight: 600; }
.layout {
display: grid;
grid-template-columns: 290px 1fr;
gap: 18px;
padding: 0 0 0;
}
.panel {
border: 1px solid var(--line);
background: var(--panel);
border-radius: 10px;
box-shadow: var(--shadow);
}
.sidebar {
padding: 20px 16px;
align-self: start;
position: sticky;
top: 82px;
}
.section-title {
display: flex;
align-items: center;
gap: 11px;
font-size: 18px;
text-transform: uppercase;
letter-spacing: .02em;
font-weight: 900;
margin: 0 0 15px;
}
.section-title svg, .section-title .emoji {
width: 26px;
height: 26px;
color: var(--accent);
stroke: var(--accent);
flex: 0 0 auto;
}
.expertise-list {
display: grid;
gap: 13px;
margin-bottom: 22px;
padding-bottom: 22px;
border-bottom: 1px solid var(--line);
}
.expertise-list div {
display: grid;
grid-template-columns: 24px 1fr;
align-items: center;
gap: 10px;
font-size: 14px;
color: #eef7ff;
}
.tiny-icon {
width: 22px;
height: 22px;
display: grid;
place-items: center;
color: var(--accent);
font-size: 16px;
}
.skill-group { margin-bottom: 19px; }
.skill-group h4 {
margin: 0 0 8px;
color: #b7dcff;
font-size: 15px;
font-weight: 800;
}
.logo-row {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 7px;
}
.tech-logo {
width: 45px;
height: 42px;
border-radius: 7px;
background: #fff;
display: grid;
place-items: center;
padding: 5px;
overflow: hidden;
box-shadow: 0 8px 18px rgba(0,0,0,.16);
}
.tech-logo img { width: 100%; height: 100%; object-fit: contain; }
.skill-group p { margin: 0; color: #bfd6ee; font-size: 13px; }
.main { display: grid; gap: 14px; }
.main-panel { padding: 19px 20px; }
.about p {
margin: 0 0 12px;
color: #f3f9ff;
font-size: 15px;
}
.divider { border-top: 1px solid var(--line); margin: 14px 0; }
.contribution-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 18px;
margin-top: 10px;
}
.contribution {
border: 1px solid var(--line);
border-radius: 8px;
min-height: 182px;
padding: 19px 14px;
text-align: center;
background: rgba(8, 32, 59, .64);
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
gap: 14px;
}
.contribution svg {
width: 48px;
height: 48px;
stroke: var(--accent);
}
.contribution p {
color: #f2f8ff;
font-size: 13px;
line-height: 1.32;
margin: 0;
}
.experience-block { position: relative; padding-left: 34px; }
.experience-block::before {
content: "";
position: absolute;
left: 10px;
top: 35px;
bottom: 18px;
width: 1px;
background: rgba(119, 193, 255, .7);
}
.exp-item {
position: relative;
display: grid;
grid-template-columns: 150px 1fr;
gap: 20px;
border-bottom: 1px solid var(--line2);
padding: 11px 0 18px;
}
.exp-item:last-child { border-bottom: 0; }
.exp-item::before {
content: "";
position: absolute;
left: -31px;
top: 30px;
width: 14px;
height: 14px;
border-radius: 50%;
background: var(--accent);
box-shadow: 0 0 0 5px rgba(87, 185, 255, .12);
}
.company-logo {
width: 150px;
height: 92px;
border-radius: 7px;
background: white;
display: grid;
place-items: center;
padding: 14px;
overflow: hidden;
}
.company-logo img { width: 100%; height: 100%; object-fit: contain; }
.exp-title {
font-size: 18px;
font-weight: 800;
color: var(--accent);
margin: 3px 0 2px;
}
.exp-meta { font-size: 14px; color: #f5faff; margin-bottom: 6px; }
.exp-meta strong { font-weight: 900; }
ul {
margin: 0;
padding-left: 18px;
color: #e6f2ff;
font-size: 14px;
}
li { margin: 2px 0; }
.client-list {
display: grid;
gap: 9px;
margin-top: 8px;
}
.client-row {
display: grid;
grid-template-columns: 150px 1fr;
gap: 20px;
border: 1px solid var(--line);
border-radius: 8px;
padding: 8px 12px 8px 0;
align-items: center;
background: rgba(6, 26, 49, .45);
}
.client-row .company-logo { height: 76px; border-radius: 6px; }
.research-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.research-table td {
border-top: 1px solid var(--line2);
padding: 12px 8px;
color: #edf6ff;
vertical-align: middle;
}
.doi {
display: inline-block;
background: #0975d7;
color: white;
padding: 7px 12px;
border-radius: 4px;
font-size: 12px;
white-space: nowrap;
}
.bottom-grid {
display: grid;
grid-template-columns: .9fr .95fr 1.3fr;
gap: 14px;
margin-top: 14px;
}
.mini-panel { padding: 17px 18px; }
.mini-panel ul { font-size: 14px; }
.check-list { list-style: none; padding-left: 0; }
.check-list li::before { content: "β"; color: var(--green); margin-right: 9px; }
.interest-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.tag {
background: rgba(255,255,255,.07);
border: 1px solid var(--line2);
color: #ecf6ff;
border-radius: 6px;
padding: 7px 10px;
font-size: 12px;
font-weight: 700;
}
footer {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 14px;
padding: 17px 24px 0;
color: #eaf5ff;
font-size: 13px;
}
.footer-icons {
display: flex;
justify-content: flex-end;
gap: 20px;
color: #96d2ff;
font-size: 18px;
}
@media (max-width: 1100px) {
.hero, .layout { grid-template-columns: 1fr; }
.impact-panel { max-width: 640px; }
.sidebar { position: static; }
.contribution-grid { grid-template-columns: repeat(2, 1fr); }
.bottom-grid { grid-template-columns: 1fr; }
.nav { gap: 14px; font-size: 12px; }
}
@media (max-width: 720px) {
.topbar { height: auto; padding: 16px; align-items: flex-start; flex-direction: column; }
.hero { padding: 24px 4px; }
.photo-ring { width: 180px; height: 180px; }
.impact-panel { grid-template-columns: 1fr; }
.impact { border-right: 0; }
.impact:nth-child(3) { border-bottom: 1px solid var(--line); }
.exp-item, .client-row { grid-template-columns: 1fr; }
.company-logo { width: 160px; }
.contribution-grid { grid-template-columns: 1fr; }
footer { grid-template-columns: 1fr; text-align: center; }
.footer-icons { justify-content: center; }
}
</style>
</head>
<body>
<div class="page">
<header class="topbar">
<div class="brand">Swapneswar Sundar Ray</div>
<nav class="nav">
<a class="active" href="#home">β Home</a>
<a href="#about">About</a>
<a href="#experience">Experience</a>
<a href="#skills">Skills</a>
<a href="#research">Research</a>
<a href="publications.html">Publications</a>
<a href="#education">Education</a>
<a href="#contact">Contact</a>
<button class="download-btn" onclick="window.print()">Download PDF</button>
</nav>
</header>
<section id="home" class="hero">
<div class="photo-ring">
<img src="Headshot.png" alt="Swapneswar Sundar Ray professional headshot" onerror="this.style.display='none'; this.parentElement.innerHTML='<div style="text-align:center;color:#dcefff;font-weight:700;">π·<br>Your Photo<br><small>Save image as Headshot.png</small></div>'" />
</div>
<div>
<h1>Swapneswar<br />Sundar Ray</h1>
<div class="role-title"><span>AI Systems Engineer | Agentic AI</span><br />Enterprise Systems & API Architectures</div>
<div class="contact-line">
<span><span class="mini-icon">β</span> USA</span>
<span>|</span>
<span><span class="mini-icon">β</span> Swapneswar.ray@gmail.com</span>
</div>
<div class="hero-actions">
<a class="button" href="publications.html">π Publications</a>
<a class="button primary" href="https://www.linkedin.com/in/swapneswarsundarray/" target="_blank" rel="noopener">in LinkedIn β</a>
<a class="button" href="https://github.com/swapneswarsundarray/" target="_blank" rel="noopener">ββ GitHub β</a>
<a class="button" href="https://scholar.google.com/citations?user=P8ypa3AAAAAJ&hl=en&authuser=2" target="_blank" rel="noopener">π Google Scholar β</a>
<a class="button" href="https://orcid.org/0009-0007-9262-5102" target="_blank" rel="noopener">π ORCID β</a>
</div>
</div>
<div class="impact-panel" aria-label="Professional impact summary">
<div class="impact">
<svg viewBox="0 0 24 24" fill="none" stroke-width="1.8"><path d="M9 3a3 3 0 0 0-3 3v1a3 3 0 0 0-2 5 3 3 0 0 0 2 5v1a3 3 0 0 0 6 0V6a3 3 0 0 0-3-3Z"/><path d="M15 3a3 3 0 0 1 3 3v1a3 3 0 0 1 2 5 3 3 0 0 1-2 5v1a3 3 0 0 1-6 0V6a3 3 0 0 1 3-3Z"/></svg>
<div><strong>15+</strong><span>Years of Experience</span></div>
</div>
<div class="impact">
<svg viewBox="0 0 24 24" fill="none" stroke-width="1.8"><path d="M3 21h18"/><path d="M5 21V9l7-5 7 5v12"/><path d="M9 21v-6h6v6"/><path d="M8 10h.01M12 10h.01M16 10h.01"/></svg>
<div><strong>10+</strong><span>Enterprise Engagements</span></div>
</div>
<div class="impact">
<svg viewBox="0 0 24 24" fill="none" stroke-width="1.8"><path d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"/><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06A1.65 1.65 0 0 0 15 19.4a1.65 1.65 0 0 0-1 .6 1.65 1.65 0 0 0-.33 1.82 2 2 0 1 1-3.34 0A1.65 1.65 0 0 0 10 20a1.65 1.65 0 0 0-1-.6 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.6 15a1.65 1.65 0 0 0-.6-1 1.65 1.65 0 0 0-1.82-.33 2 2 0 1 1 0-3.34A1.65 1.65 0 0 0 4 10a1.65 1.65 0 0 0 .6-1 1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.6a1.65 1.65 0 0 0 1-.6 1.65 1.65 0 0 0 .33-1.82 2 2 0 1 1 3.34 0A1.65 1.65 0 0 0 14 4a1.65 1.65 0 0 0 1 .6 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9c.2.32.38.66.6 1a1.65 1.65 0 0 0 1.82.33 2 2 0 1 1 0 3.34A1.65 1.65 0 0 0 20 14a1.65 1.65 0 0 0-.6 1Z"/></svg>
<div><strong>AI-Driven</strong><span>Solutions Architected</span></div>
</div>
<div class="impact">
<svg viewBox="0 0 24 24" fill="none" stroke-width="1.8"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z"/><path d="m9 12 2 2 4-5"/></svg>
<div><strong>Mission-Critical</strong><span>Systems in Regulated Environments</span></div>
</div>
</div>
</section>
<div class="layout">
<aside id="skills" class="sidebar panel">
<h2 class="section-title"><span class="emoji">β</span> Expertise</h2>
<div class="expertise-list">
<div><span class="tiny-icon">βΊ</span> Agentic AI</div>
<div><span class="tiny-icon">βΊ</span> Generative AI</div>
<div><span class="tiny-icon">β</span> AI-Assisted Engineering</div>
<div><span class="tiny-icon">β£</span> API Architecture</div>
<div><span class="tiny-icon">β·</span> OpenAPI / Swagger Automation</div>
<div><span class="tiny-icon">β¦</span> Distributed Systems</div>
<div><span class="tiny-icon">β</span> Event-Driven Systems (Kafka)</div>
<div><span class="tiny-icon">β£</span> Microservices</div>
<div><span class="tiny-icon">β</span> Observability & Reliability</div>
<div><span class="tiny-icon">β</span> Legacy Modernization</div>
</div>
<h2 class="section-title"><span class="emoji">π </span> Technical Skills</h2>
<div class="skill-group">
<h4>AI & Agentic Systems</h4>
<div class="logo-row">
<span class="tech-logo"><img src="https://cdn.simpleicons.org/openai/000000" alt="OpenAI"></span>
<span class="tech-logo"><img src="https://avatars.githubusercontent.com/u/126733545?s=200&v=4" alt="LangChain"></span>
<span class="tech-logo"><img src="https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/dark/langgraph.png" alt="LangGraph"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/kubernetes/326CE5" alt="MCP/Systems"></span>
</div>
<p>Agentic AI, Generative AI, LangChain, LangGraph, MCP, Prompt Engineering</p>
</div>
<div class="skill-group">
<h4>Architecture & Backend</h4>
<div class="logo-row">
<span class="tech-logo"><img src="https://cdn.simpleicons.org/openjdk/F80000" alt="Java"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/spring/6DB33F" alt="Spring Boot"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/fastapi/009688" alt="REST APIs"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/docker/2496ED" alt="Microservices"></span>
</div>
<p>Java, Spring Boot, REST APIs, Microservices, Distributed Systems</p>
</div>
<div class="skill-group">
<h4>API & Integration</h4>
<div class="logo-row">
<span class="tech-logo"><img src="https://cdn.simpleicons.org/googlecloud/4285F4" alt="Apigee"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/openapiinitiative/6BA539" alt="OpenAPI"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/swagger/85EA2D" alt="Swagger"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/ibm/052FAD" alt="IBM MQ"></span>
</div>
<p>APIGEE, OpenAPI/Swagger, API Gateways, IBM DataPower, IBM MQ</p>
</div>
<div class="skill-group">
<h4>Event & Data Systems</h4>
<div class="logo-row">
<span class="tech-logo"><img src="https://cdn.simpleicons.org/apachekafka/000000" alt="Kafka"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/mongodb/47A248" alt="MongoDB"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/oracle/F80000" alt="Oracle"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/ibm/052FAD" alt="DB2"></span>
</div>
<p>Kafka, MongoDB, Oracle, DB2, SQL Server</p>
</div>
<div class="skill-group">
<h4>Cloud & DevOps</h4>
<div class="logo-row">
<span class="tech-logo"><img src="https://cdn.simpleicons.org/amazonaws/232F3E" alt="AWS"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/docker/2496ED" alt="Docker"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/jenkins/D24939" alt="Jenkins"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/git/F05032" alt="Git"></span>
</div>
<p>AWS, Docker, Jenkins, CI/CD, Git</p>
</div>
<div class="skill-group">
<h4>Observability & Security</h4>
<div class="logo-row">
<span class="tech-logo"><img src="https://cdn.simpleicons.org/splunk/000000" alt="Splunk"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/datadog/632CA6" alt="Datadog"></span>
<span class="tech-logo"><img src="https://cdn.simpleicons.org/cyberdefenders/335EEA" alt="CyberArk"></span>
</div>
<p>Splunk, Datadog, CyberArk</p>
</div>
</aside>
<main class="main">
<section id="about" class="main-panel panel about">
<h2 class="section-title"><span class="emoji">π€</span> About Me</h2>
<p>AI Systems Engineer with 15+ years of experience building scalable distributed systems, enterprise API platforms, and production-grade software. Specializes in Agentic AI, Generative AI-assisted engineering, and API-driven architectures, with a focus on making AI systems reliable, controllable, and production-ready.</p>
<p>Architect of OpenAPI-driven automation, API sandbox simulation, and intelligent workflow orchestration, combining AI reasoning with deterministic system validation to improve software quality and delivery efficiency. Proven experience delivering mission-critical systems in regulated domains including banking and financial services.</p>
<div class="divider"></div>
<h2 class="section-title"><span class="emoji">π</span> Key Contributions</h2>
<div class="contribution-grid">
<div class="contribution"><svg viewBox="0 0 24 24" fill="none" stroke-width="1.8"><path d="m16 18 6-6-6-6"/><path d="m8 6-6 6 6 6"/><path d="m14 4-4 16"/></svg><p>Designed AI-driven API sandbox automation framework enabling early integration testing and simulation before backend readiness</p></div>
<div class="contribution"><svg viewBox="0 0 24 24" fill="none" stroke-width="1.8"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z"/><path d="m9 12 2 2 4-5"/></svg><p>Built OpenAPI-based validation and mock generation systems to standardize API development workflows</p></div>
<div class="contribution"><svg viewBox="0 0 24 24" fill="none" stroke-width="1.8"><path d="M9 3a3 3 0 0 0-3 3v1a3 3 0 0 0-2 5 3 3 0 0 0 2 5v1a3 3 0 0 0 6 0V6a3 3 0 0 0-3-3Z"/><path d="M15 3a3 3 0 0 1 3 3v1a3 3 0 0 1 2 5 3 3 0 0 1-2 5v1a3 3 0 0 1-6 0V6a3 3 0 0 1 3-3Z"/></svg><p>Developed AI-assisted engineering pipelines integrating LLM reasoning with rule-based validation</p></div>
<div class="contribution"><svg viewBox="0 0 24 24" fill="none" stroke-width="1.8"><path d="M3 21h18"/><path d="M5 21V9l7-5 7 5v12"/><path d="M9 21v-6h6v6"/></svg><p>Delivered enterprise API platforms and dispute-processing systems in regulated banking environments</p></div>
<div class="contribution"><svg viewBox="0 0 24 24" fill="none" stroke-width="1.8"><path d="M3 3v18h18"/><path d="m7 15 4-4 3 3 5-7"/><path d="M19 7h-5"/><path d="M19 7v5"/></svg><p>Improved system observability and reliability using monitoring, logging, and automated alerting frameworks</p></div>
</div>
</section>
<section id="experience" class="main-panel panel">
<h2 class="section-title"><span class="emoji">π§</span> Professional Experience</h2>
<div class="experience-block">
<div class="exp-item">
<div class="company-logo"><div style="font-size:28px;font-weight:900;color:#0b4ea2;letter-spacing:-1px;">UsBank</div></div>
<div>
<div class="exp-title">Assistant Vice President β AI Systems Engineering</div>
<div class="exp-meta"><strong>UsBank</strong> | 2023 β Present</div>
<ul>
<li>Leading Agentic AI-driven API sandbox modernization using OpenAPI-based automation</li>
<li>Designing intelligent validation, mock generation, and simulation frameworks for enterprise APIs</li>
<li>Driving AI-assisted engineering practices to improve development speed, quality, and consistency</li>
<li>Architecting secure APIGEE-based API ecosystems for regulated banking platforms</li>
</ul>
</div>
</div>
<div class="exp-item">
<div class="company-logo"><div style="font-size:34px;font-weight:900;color:#d71920;letter-spacing:-1px;">ADP</div></div>
<div>
<div class="exp-title">Senior Software Engineer / Technical Lead</div>
<div class="exp-meta"><strong>Automatic Data Processing (ADP)</strong> | Roseland, NJ | 2022 β 2023</div>
<ul>
<li>Delivered enterprise-scale backend systems and high-volume payroll data processing workflows</li>
<li>Built Kafka-based event pipelines and MongoDB-backed ingestion systems for scalable data processing</li>
<li>Implemented observability frameworks including Splunk dashboards and alerting to enhance production reliability</li>
</ul>
</div>
</div>
<div class="exp-item">
<div class="company-logo" style="background:linear-gradient(135deg,#1d4ed8,#0ea5e9);color:white;font-size:32px;font-weight:900;letter-spacing:-1px;">TCS</div>
<div>
<div class="exp-title">Technical Lead / Senior Developer <span style="color:#dcefff;font-weight:600;">(Consulting via Tata Consultancy Services)</span> <span style="color:#dcefff;font-weight:500;float:right;">2011 β 2022</span></div>
<div class="client-list">
<div class="client-row">
<div class="company-logo"><div style="font-size:30px;font-weight:900;color:#d71920;letter-spacing:-1px;">Avis</div></div>
<div>
<div class="exp-meta"><strong>Avis</strong> | Parsippany, NJ</div>
<ul><li>Led modernization of reservation platforms from mainframe to Java-based microservices</li><li>Built event-driven systems using IBM MQ and integrated IoT-enabled operational workflows</li></ul>
</div>
</div>
<div class="client-row">
<div class="company-logo"><div style="font-size:26px;font-weight:900;color:#0b5cab;">MMI</div></div>
<div>
<div class="exp-meta"><strong>MMI Holdings</strong> | Cape Town, South Africa</div>
<ul><li>Developed healthcare and insurance workflow automation systems</li><li>Built data integration pipelines for EHR/PHR, policy, and customer data processing</li></ul>
</div>
</div>
<div class="client-row">
<div class="company-logo"><div style="font-size:26px;font-weight:900;color:#1d4ed8;letter-spacing:-1px;">ToysRus</div></div>
<div>
<div class="exp-meta"><strong>ToysRus</strong> | Mumbai, India</div>
<ul><li>Developed e-commerce modules including Baby Registry and omni-channel workflows</li><li>Built RESTful APIs and backend automation for customer, billing, and inventory systems</li></ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="research" class="main-panel panel">
<h2 class="section-title"><span class="emoji">π</span> Research & Publications</h2>
<p style="margin:0;color:#e6f2ff;font-size:15px;line-height:1.6;">
Research work focused on Agentic AI, enterprise API governance, distributed systems, AI reliability, and production-grade software engineering.
</p>
<a class="button primary" href="publications.html" style="margin-top:16px;display:inline-flex;">View Full Publication List β</a>
</section>
</main>
</div>
<div id="education" class="bottom-grid">
<section class="panel mini-panel">
<h2 class="section-title"><span class="emoji">π</span> Education</h2>
<ul>
<li><strong>MCA</strong><br />Indira Gandhi University</li>
<li><strong>B.Sc. Physics</strong><br />Utkal University</li>
</ul>
</section>
<section class="panel mini-panel">
<h2 class="section-title"><span class="emoji">π
</span> Certifications</h2>
<ul class="check-list">
<li>Microsoft Azure AI Fundamentals (AI-900)</li>
<li>Microsoft Azure Fundamentals (AZ-900)</li>
<li>Oracle Certified Java Professional</li>
</ul>
</section>
<section class="panel mini-panel">
<h2 class="section-title"><span class="emoji">β</span> Interests</h2>
<div class="interest-tags">
<span class="tag">Agentic AI</span>
<span class="tag">Generative AI in Software Engineering</span>
<span class="tag">Distributed Systems</span>
<span class="tag">API Architectures</span>
<span class="tag">Enterprise AI Integration</span>
<span class="tag">Workflow Orchestration</span>
<span class="tag">Applied AI Systems</span>
</div>
</section>
</div>
<footer id="contact">
<div>Swapneswar Sundar Ray</div>
<div>Building Intelligent, Reliable & Scalable Systems for the AI Era</div>
<div class="footer-icons">
<a href="https://www.linkedin.com/in/swapneswarsundarray/" target="_blank" rel="noopener">in</a>
<a href="https://github.com/swapneswarsundarray/" target="_blank" rel="noopener">ββ</a>
<a href="https://scholar.google.com/citations?user=P8ypa3AAAAAJ&hl=en&authuser=2" target="_blank" rel="noopener">π</a>
<a href="https://orcid.org/0009-0007-9262-5102" target="_blank" rel="noopener">π</a>
<a href="mailto:swapneswar.ray@gmail.com">β</a>
</div>
</footer>
<!-- =========================
CREATE A SECOND FILE NAMED publications.html
COPY EVERYTHING BELOW INTO publications.html
========================= -->
<!--
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Publications | Swapneswar Sundar Ray</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
body{margin:0;font-family:Inter,sans-serif;background:#07192f;color:#f3f8ff;padding:40px;background-image:radial-gradient(circle at top right,rgba(30,144,255,.18),transparent 30%);}
.container{max-width:1200px;margin:auto;}
h1{font-size:42px;line-height:1.08;margin-bottom:10px;}
p.sub{color:#bdd7f0;font-size:18px;margin-bottom:40px;}
.card{background:rgba(10,34,61,.88);border:1px solid rgba(119,193,255,.18);border-radius:12px;padding:24px;margin-bottom:16px;box-shadow:0 16px 40px rgba(0,0,0,.25);}
.year{display:inline-block;background:#0f7de1;color:white;padding:6px 10px;border-radius:6px;font-size:12px;font-weight:800;margin-bottom:14px;}
h2{margin:0 0 10px;font-size:24px;line-height:1.3;}
a.doi{display:inline-block;margin-top:12px;background:#0b6fd1;color:white;padding:10px 14px;border-radius:6px;text-decoration:none;font-size:13px;font-weight:700;}
.toplink{display:inline-block;margin-bottom:24px;color:#8ecbff;text-decoration:none;font-weight:700;}
</style>
</head>
<body>
<div class="container">
<a class="toplink" href="index.html">β Back to Home</a>
<h1>Research Publications</h1>
<p class="sub">Research contributions focused on Agentic AI, enterprise systems, distributed architectures, API governance, AI reliability, and production-grade software engineering.</p>
<div class="card"><span class="year">2026</span><h2>Governance-Centric AI Framework for Enterprise Production Readiness</h2><a class="doi" href="https://doi.org/10.5281/zenodo.20132637">View Publication</a></div>
<div class="card"><span class="year">2026</span><h2>AI-Based Pull Request Risk Prediction: A Hybrid Governance Framework for Improving Software Delivery Reliability</h2><a class="doi" href="https://doi.org/10.5281/zenodo.20101758">View Publication</a></div>
<div class="card"><span class="year">2026</span><h2>Governance-Centric Cognitive Proxy Architecture for Adaptive Enterprise API Orchestration Using Hybrid AI</h2><a class="doi" href="https://doi.org/10.5281/zenodo.20095159">View Publication</a></div>
<div class="card"><span class="year">2025</span><h2>Ensuring Transaction Consistency in AI-Augmented ATM Systems through Hybrid Validation and Mutation-Based Testing</h2><a class="doi" href="https://doi.org/10.5281/zenodo.20046784">View Publication</a></div>
<div class="card"><span class="year">2025</span><h2>Adaptive AI-Based Examination System for Integrity, Personalization, and Robust Evaluation</h2><a class="doi" href="https://doi.org/10.5281/zenodo.20032029">View Publication</a></div>
<div class="card"><span class="year">2025</span><h2>Adversarial Simulation Framework for Robust Cheque Fraud Detection in Banking Systems</h2><a class="doi" href="https://doi.org/10.5281/zenodo.20016898">View Publication</a></div>
<div class="card"><span class="year">2025</span><h2>From User Stories to Production Code: A Controlled Agentic Framework for Reliable Software Generation</h2><a class="doi" href="https://doi.org/10.5281/zenodo.19935975">View Publication</a></div>
<div class="card"><span class="year">2025</span><h2>From Monitoring to Control: A Feedback-Driven Autonomous System for API Workflow Reliability</h2><a class="doi" href="https://doi.org/10.5281/zenodo.19870634">View Publication</a></div>
<div class="card"><span class="year">2025</span><h2>From Liveness to Intelligence: AI-Assisted Health Scoring for Microservice Reliability</h2><a class="doi" href="https://doi.org/10.5281/zenodo.19830967">View Publication</a></div>
<div class="card"><span class="year">2023</span><h2>Autonomous API Test Generation and Self-Healing Validation Using Agentic AI</h2><a class="doi" href="https://doi.org/10.5281/zenodo.19816955">View Publication</a></div>
<div class="card"><span class="year">2024</span><h2>Reducing Cognitive Load in Multi-Language SDK Generation Using Hybrid AI-Orchestrated Architectures</h2><a class="doi" href="https://doi.org/10.5281/zenodo.19775684">View Publication</a></div>
<div class="card"><span class="year">2024</span><h2>Code-First vs LLM-First Architectures: A Hybrid Approach for Scalable and Reliable AI Systems</h2><a class="doi" href="https://doi.org/10.5281/zenodo.19773159">View Publication</a></div>
<div class="card"><span class="year">2024</span><h2>Autonomous Incident Response Using Generative AI and Agentic Systems in Distributed Enterprise Architectures</h2><a class="doi" href="https://doi.org/10.5281/zenodo.19764975">View Publication</a></div>
<div class="card"><span class="year">2025</span><h2>Enterprise Transformation with AI and Gen AI: From Legacy Architecture to Autonomous Systems</h2><a class="doi" href="https://doi.org/10.5281/zenodo.19754455">View Publication</a></div>
<div class="card"><span class="year">2025</span><h2>Autonomous API Sandbox Generation Using Agentic AI</h2><a class="doi" href="https://doi.org/10.5281/zenodo.19753050">View Publication</a></div>
</div>
</body>
</html>
-->
</div>
</body>
</html>