-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1627 lines (1461 loc) · 78.2 KB
/
index.html
File metadata and controls
1627 lines (1461 loc) · 78.2 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">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<head>
<meta charset="UTF-8">
<!-- Page Title -->
<title>Rishabh Kumar</title>
<!-- Meta Tags -->
<meta name="description" content="Portfolio Website">
<meta name="author" content="Rishabh Kumar">
<!-- Viewport Meta-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Favicon & Icons Start -->
<link rel="icon" href="img/favicon/icon.svg" type="image/svg+xml">
<link rel="manifest" href="img/favicon/manifest.webmanifest">
<!-- Favicon & Icons End -->
<!-- Facebook Metadata Start -->
<meta property="og:image:height" content="1200">
<meta property="og:image:width" content="1200">
<meta property="og:title" content="Rishabh Kumar">
<meta property="og:description" content="Rishabh Kumar">
<meta property="og:image" content="img/favicon/og-image.html">
<!-- Facebook Metadata End -->
<!-- Styles Start -->
<link rel="stylesheet" href="css/loaders/loader.css">
<link rel="stylesheet" type="text/css" href="css/plugins.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- Styles End -->
<!-- Custom Browser Color Start -->
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#dcdce7">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#111111">
<meta name="msapplication-navbutton-color" content="#111111">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Custom Browser Color End -->
</head>
<body>
<!-- Loader Start -->
<div id="loader" class="loader">
<div id="loaderContent" class="loader__content">
<div class="loader__shadow"></div>
<div class="loader__box"></div>
</div>
</div>
<!-- Loader End -->
<!-- Header Start -->
<header id="header" class="header d-flex justify-content-between">
<!-- Navigation Menu Start -->
<div class="header__navigation">
<nav id="menu" class="menu">
<ul class="menu__list d-flex justify-content-start">
<li class="menu__item">
<a class="menu__link btn" href="#home">
<span class="menu__caption">Home</span>
<i class="ph-bold ph-house-simple"></i>
</a>
</li>
<li class="menu__item">
<a class="menu__link btn" href="#portfolio">
<span class="menu__caption">Portfolio</span>
<i class="ph-bold ph-squares-four"></i>
</a>
</li>
<li class="menu__item">
<a class="menu__link btn" href="#resume">
<span class="menu__caption">Resume</span>
<i class="ph-bold ph-article"></i>
</a>
</li>
<li class="menu__item">
<a class="menu__link btn" href="#about">
<span class="menu__caption">About Me</span>
<i class="ph-bold ph-user"></i>
</a>
</li>
<li class="menu__item">
<a class="menu__link btn" href="#contact">
<span class="menu__caption">Contact</span>
<i class="ph-bold ph-envelope"></i>
</a>
</li>
</ul>
</nav>
</div>
<!-- Navigation Menu End -->
<!-- Header Controls Start -->
<div class="header__controls d-flex justify-content-end">
<button id="color-switcher" class="color-switcher header__switcher btn" type="button" role="switch"
aria-label="light/dark mode" aria-checked="true"></button>
<a id="notify-trigger" class="header__trigger btn"
href="mailto:rishabhkumar140999@gmail.com?subject=Message%20from%20your%20site">
<span class="trigger__caption">Let's Talk</span>
<i class="ph-bold ph-chat-dots"></i>
</a>
</div>
<!-- Header Controls End -->
</header>
<!-- Header End -->
<!-- SVG Background Start -->
<div id="svgBackground" class="svg-background">
<!-- top svg item -->
<div class="background__svg01" data-speed="0.8">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="1000px" height="1000px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
<style type="text/css">
.bg01 {
fill: url(#color-gradient);
}
</style>
<radialgradient id="color-gradient" cx="418.5665" cy="225.9685" r="499.9326" fx="866.8251" fy="4.6162"
gradientTransform="matrix(-0.6935 0.7207 -0.7207 -0.6935 953.1126 355.0528)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#CEC4EF" />
<stop offset="1" style="stop-color:#CEC4EF;stop-opacity:0" />
</radialgradient>
<circle class="bg01" cx="500" cy="500" r="500" />
</svg>
</div>
<!-- bottom svg item -->
<div class="background__svg02" data-speed="0.4">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="429.6px" height="429.6px"
viewBox="0 0 429.6 429.6" style="enable-background:new 0 0 429.6 429.6;" xml:space="preserve">
<style type="text/css">
.bg02 {
fill: url(#color-gradient-2);
}
</style>
<g id="Layer_1-2">
<radialgradient id="color-gradient-2" cx="2213.9312" cy="-11537.4219" r="214.85" fx="2393.6191"
fy="-11419.6494" gradientTransform="matrix(1.902285e-02 0.9998 0.9998 -1.954636e-02 11706.5303 -2223.4016)"
gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#CEC4EF" />
<stop offset="1" style="stop-color:#CEC4EF;stop-opacity:0" />
</radialgradient>
<path class="bg02"
d="M63,63C146.9-21,282.9-21,366.8,62.9s83.8,219.9-0.1,303.8s-219.9,83.9-303.8,0.1S-20.9,146.9,63,63z" />
</g>
</svg>
</div>
</div>
<!-- SVG Background End -->
<!-- Avatar Side Block Start -->
<div id="avatar" class="avatar">
<div class="avatar__container d-flex flex-column justify-content-lg-between">
<!-- image and logo -->
<div class="avatar__block">
<div class="avatar__logo d-flex align-items-center">
<div class="logo__image">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="256px" height="256px" viewBox="0 0 64 64"
style="enable-background:new 0 0 100 100;" xml:space="preserve" class="gradient-fill">
<style type="text/css">
.gradient-fill {
fill: url(#gradientFill);
}
</style>
<g>
<lineargradient id="gradientFill" gradientUnits="userSpaceOnUse" x1="9.9604" y1="75.0338" x2="75.0387"
y2="9.9555">
<stop offset="0" style="stop-color:var(--accent)" />
<stop offset="1" style="stop-color:var(--secondary)" />
</lineargradient>
<g class="gradient-fill">
<path
d="M54.7,52.4561a1,1,0,0,0-1.4141,0l-.7668.7669-.7669-.7669a1,1,0,0,0-1.414,1.414l.7669.7671-.7669.7671a1,1,0,1,0,1.414,1.4141l.7669-.767.7668.767A1,1,0,1,0,54.7,55.4043l-.767-.7671L54.7,53.87A1,1,0,0,0,54.7,52.4561Z">
</path>
<circle cx="58" cy="44" r="1"></circle>
<path
d="M39.3345,31.37a22.5127,22.5127,0,0,1-16.669,0,1,1,0,1,0-.7832,1.84,24.1164,24.1164,0,0,0,18.2354,0,1,1,0,1,0-.7832-1.84Z">
</path>
<circle cx="24" cy="25" r="2"></circle>
<circle cx="38" cy="25" r="2"></circle>
<path d="M57,8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,57,8Zm0,4a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,57,12Z">
</path>
<path
d="M31,7A24.0275,24.0275,0,0,0,7,31c0,.1515.0137.3015.0165.4526A3.9862,3.9862,0,0,1,5,28V17a1,1,0,0,0-2,0V28a6.0087,6.0087,0,0,0,4.168,5.7117,23.8651,23.8651,0,0,0,.694,3.6251,6.9948,6.9948,0,1,0,7.145,11.5254A23.99,23.99,0,1,0,31,7ZM12,45H11v1a1,1,0,0,1-2,0V45H8a1,1,0,0,1,0-2H9V42a1,1,0,0,1,2,0v1h1a1,1,0,0,1,0,2Zm-2-8c-.0533,0-.1049.0068-.158.0081A21.8638,21.8638,0,0,1,9.2106,34H13a3.996,3.996,0,0,1,3.858,3ZM31,53a21.8818,21.8818,0,0,1-14.8158-5.762c.0425-.081.0952-.155.1346-.238h3.3624A6.9978,6.9978,0,1,0,26,37H18.91A6.0046,6.0046,0,0,0,13,32H9.0366C9.0217,31.667,9,31.3346,9,31A22,22,0,1,1,31,53Zm-7-8a1,1,0,1,1,1,1A1,1,0,0,1,24,45Zm3-2a1,1,0,1,1,1,1A1,1,0,0,1,27,43Z">
</path>
</g>
</g>
</svg>
</div>
<div class="logo__caption">
<p>Rishabh<br>Kumar</p>
</div>
</div>
<div class="avatar__image">
<img src="img/avatars/1693919772379.jpeg" alt="Rishabh Kumar Avatar" id="avatarImage"
data-alt-src="img/avatars/1715794805623.jpeg" data-alt-src2="img/avatars/1715794805624.jpeg">
<div id="game-section" style="display:none; text-align: center;">
<h5 style="color: #d63384; margin-top: 10px;">Fill the Heart with Pi!</h5>
<div id="heart-container">
<svg viewBox="0 0 32 29.6" width="100" height="100">
<path id="heart-outline" d="M23.6,0c-3.4,0-6.4,2.5-7.6,5.6C14.8,2.5,11.8,0,8.4,0C3.8,0,0,3.8,0,8.4
c0,9.4,16,21.2,16,21.2s16-11.8,16-21.2C32,3.8,28.2,0,23.6,0z" fill="none" stroke="#d63384"
stroke-width="1" />
<clippath id="heartClip">
<path d="M23.6,0c-3.4,0-6.4,2.5-7.6,5.6C14.8,2.5,11.8,0,8.4,0C3.8,0,0,3.8,0,8.4
c0,9.4,16,21.2,16,21.2s16-11.8,16-21.2C32,3.8,28.2,0,23.6,0z" />
</clippath>
<rect id="heartFill" x="0" y="29.6" width="32" height="29.6" fill="#d63384"
clip-path="url(#heartClip)" />
</svg>
</div>
<!-- Container for the prompt text and input -->
<div id="pi-interaction">
<p style="font-size: 1em;">Type the digits of π :</p>
<input type="text" id="piInput" style="font-size: 1em; padding: 2px; width: 100px; max-width: 90%;"
autofocus>
</div>
<p id="pimessage" style="font-size: 0.75em; color: #d63384; height: 4.5em; margin-top: 10px;"></p>
</div>
<script>
// Avatar reveal logic remains the same.
const avatarImage = document.getElementById("avatarImage");
const gameSection = document.getElementById("game-section");
let clickCount = 0;
avatarImage.addEventListener("click", function () {
clickCount++;
if (clickCount === 13) {
avatarImage.style.display = "none";
gameSection.style.display = "block";
}
});
// Game elements and logic
const piDigits = "3.1415926535897932384626433832795028841971693993751058209";
let progress = 0;
let allowLetters = false; // Start with only numbers allowed
// Array with multiple error prompts.
const errorMessages = [
"Naah! You don't deserve me. Try again!",
"Ayyyy Poda, that's not pi. Give it another go!",
"Wrong digits, darling, Respect for Subi -1",
"Close, but not quite. Let's try again!"
];
const inputField = document.getElementById("piInput");
const messageEl = document.getElementById("pimessage");
const heartFill = document.getElementById("heartFill");
function updateHeartFill() {
const totalHeight = 29.6;
let ratio = progress / piDigits.length;
if (ratio > 1) ratio = 1;
const fillHeight = totalHeight * ratio;
const newY = totalHeight - fillHeight;
heartFill.setAttribute("y", newY);
heartFill.setAttribute("height", fillHeight);
}
function triggerSuccess() {
inputField.disabled = true;
// Replace the heart with the victory GIF.
const heartContainer = document.getElementById("heart-container");
heartContainer.innerHTML = '<img id="victoryGif" src="img/avatars/victory.gif" width="100" height="100" alt="Victory">';
// Hide the prompt and input container.
document.getElementById("pi-interaction").style.display = "none";
messageEl.textContent = "Happy Valentine's Day My Subi Dubi 💝! Didn't wanna test you or anything but just felt like making you work hard a lil 😘💌";
}
inputField.addEventListener("input", function () {
const value = inputField.value;
// **Check if the user typed "Pi!" exactly, only after failing**
if (allowLetters && value === "Pi!") {
triggerSuccess();
return;
}
// **If letters are not yet allowed, block non-numeric input**
if (!allowLetters && /[^0-9.Pi!]/.test(value)) {
messageEl.textContent = "Only digits of π allowed!";
inputField.value = piDigits.substring(0, progress);
return;
}
// **If input follows π sequence, allow it**
if (piDigits.startsWith(value)) {
progress = value.length;
updateHeartFill();
if (value === piDigits) {
triggerSuccess();
} else {
messageEl.textContent = "";
}
} else {
// **Wrong number input → Reset and allow letters**
allowLetters = true; // Now the user can type "Pi!"
const randomError = errorMessages[Math.floor(Math.random() * errorMessages.length)];
messageEl.textContent = randomError;
inputField.value = piDigits.substring(0, progress);
}
});
</script>
</div>
</div>
<!-- data caption #1 -->
<div class="avatar__block">
<h6>
<small class="top">Specialization:</small>
Full Stack Developer,<br> AI | ML and Cloud
</h6>
</div>
<!-- data caption #2 -->
<div class="avatar__block">
<h6>
<small class="top">Based in:</small>
Boston, MA | USA
</h6>
</div>
<!-- socials and CTA button -->
<div class="avatar__block">
<div class="avatar__socials">
<ul class="socials-square d-flex justify-content-between">
<li class="socials-square__item">
<a class="socials-square__link btn" href="https://github.com/rishabhkumar14" target="_blank"><i
class="ph-bold ph-github-logo"></i></a>
</li>
<li class="socials-square__item">
<a class="socials-square__link btn" href="https://www.linkedin.com/in/rishabhkumar14/" target="_blank"><i
class="ph-bold ph-linkedin-logo"></i></a>
</li>
<li class="socials-square__item">
<a class="socials-square__link btn" href="https://www.behance.net/gallery/177691749/Personal-Portfolio"
target="_blank"><i class="ph-bold ph-behance-logo"></i></a>
</li>
<li class="socials-square__item">
<a class="socials-square__link btn"
href="https://medium.com/@rishabhkumar140999/how-to-train-ml-dl-models-on-encrypted-data-1005f3101f67"
target="_blank"><i class="ph-bold ph-medium-logo"></i></a>
</li>
<li class="socials-square__item">
<a class="socials-square__link btn" href="https://wa.me/+919653700880" target="_blank"><i
class="ph-bold ph-whatsapp-logo"></i></a>
</li>
</ul>
</div>
<div class="avatar__btnholder">
<a class="btn btn-default btn-fullwidth btn-hover btn-hover-accent" href="#contact" target="_blank">
<span class="btn-caption">Contact Me!</span>
</a>
</div>
</div>
</div>
</div>
<!-- Avatar Side Block End -->
<!-- Page Content Start -->
<div id="content" class="content">
<div class="content__wrapper">
<!-- Intro Section Start -->
<section id="home" class="main intro">
<!-- Headline Start -->
<div id="headline" class="headline d-flex align-items-start flex-column">
<p class="headline__subtitle animate-headline">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="13px" height="13px" viewBox="0 0 13 13"
fill="currentColor">
<path fill="currentColor" d="M5.6,12.6c-0.5-0.8-0.7-2.4-1.7-3.5c-1-1-2.7-1.2-3.5-1.7C-0.1,7-0.1,6,0.4,5.6c0.8-0.5,2.3-0.6,3.5-1.8
C5,2.8,5.1,1.2,5.6,0.4C6-0.1,7-0.1,7.4,0.4c0.5,0.8,0.7,2.4,1.8,3.5c1.2,1.2,2.6,1.2,3.5,1.7c0.6,0.4,0.6,1.4,0,1.7
C11.8,7.9,10.2,8,9.1,9.1c-1,1-1.2,2.7-1.7,3.5C7,13.1,6,13.1,5.6,12.6z" />
</svg>
<span>Hi there!</span>
</p>
<h1 class="headline__title animate-headline">I'm Rishabh. <br>Cloud & AI Engineer @ Microsoft</h1>
<div id="microsoftBanner"
style="margin-top: 20px; padding: 15px 20px; background: linear-gradient(135deg, #0078d4 0%, #50e6ff 100%); border-radius: 10px; border-left: 4px solid #0078d4; animation: pulse 2s infinite; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease;"
class="animate-headline"
onmouseover="this.style.transform='scale(1.02)'; this.style.boxShadow='0 8px 20px rgba(0,120,212,0.4)';"
onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Microsoft_logo.svg/200px-Microsoft_logo.svg.png"
alt="Microsoft Logo" style="width: 28px; height: 28px; flex-shrink: 0;">
<p
style="margin: 0; font-size: 0.95em; font-weight: 600; color: white; display: flex; align-items: center; gap: 8px;">
🚀 <span>Working on AI Foundry and Microsoft Agent
Framework</span>
</p>
</div>
<div id="confettiContainer"
style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999;">
</div>
<div class="headline__btnholder d-flex flex-column flex-sm-row">
<a class="btn mobile-vertical btn-default btn-hover btn-hover-accent-mobile animate-headline"
href="#portfolio">
<span class="btn-caption">My Works</span>
<i class="ph-bold ph-squares-four"></i>
</a>
<a class="btn mobile-vertical btn-default btn-hover btn-hover-accent" href="https://dub.sh/rishabhresume"
target="_blank">
<span class="btn-caption">Download CV</span>
<i class="ph-bold ph-download-simple"></i>
</a>
</div>
</div>
<!-- Headline End -->
<!-- Scroll Button Start -->
<div class="rotating-btn">
<a href="#tech" class="rotating-btn__link slide-down">
<!-- SVG rotating text -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 120 120" style="enable-background:new 0 0 120 120;" xml:space="preserve"
class="animate-rotation" data-value="360">
<defs>
<path id="textPath"
d="M110,59.5c0,27.6-22.4,50-50,50s-50-22.4-50-50s22.4-50,50-50S110,31.9,110,59.5z" />
</defs>
<g>
<use xlink:href="#textPath" fill="none"></use>
<text>
<!-- button text here!!! -->
<textpath xlink:href="#textPath">Scroll for More * GO Huskies * NEU * </textpath>
</text>
</g>
</svg>
<!-- arrow icon -->
<i class="ph-bold ph-arrow-down"></i>
</a>
</div>
<!-- Scroll Button End -->
</section>
<!-- Intro Section End -->
<!-- OPortfolio Start -->
<section id="portfolio" class="portfolio inner">
<div class="content__block section-grid-title">
<p class="h2__subtitle animate-in-up">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="13px" height="13px" viewBox="0 0 13 13"
fill="currentColor">
<path fill="currentColor" d="M5.6,12.6c-0.5-0.8-0.7-2.4-1.7-3.5c-1-1-2.7-1.2-3.5-1.7C-0.1,7-0.1,6,0.4,5.6c0.8-0.5,2.3-0.6,3.5-1.8
C5,2.8,5.1,1.2,5.6,0.4C6-0.1,7-0.1,7.4,0.4c0.5,0.8,0.7,2.4,1.8,3.5c1.2,1.2,2.6,1.2,3.5,1.7c0.6,0.4,0.6,1.4,0,1.7
C11.8,7.9,10.2,8,9.1,9.1c-1,1-1.2,2.7-1.7,3.5C7,13.1,6,13.1,5.6,12.6z" />
</svg>
<span>Portfolio</span>
</p>
<h2 class="h2__title animate-in-up">My Project Portfolio!</h2>
</div>
<!-- Content Block - Services Start -->
<div class="content__block grid-block">
<div class="container-fluid p-0">
<div class="row g-0 align-items-stretch cards">
<!-- Left column -->
<div class="col-md-6">
<div class="row g-0">
<div class="col-12 col-md-12 cards__item grid-item animate-card-2">
<div class="cards__card d-flex flex-column">
<div class="cards__descr">
<h4 class="cards__title animate-in-up">AI Medical Diagnostic Tool</h4>
<div class="cards__tags d-flex flex-wrap animate-in-up">
<!-- <span class="rounded-tag tag-outline">UI/UX Design</span> -->
<a href="https://github.com/rishabhkumar14/HarvardHacks" target="_blank"
class="rounded-tag tag-outline">Github</a>
</div>
<p class="small cards__text animate-in-up">
Developed a web platform with a FastAPI backend and React frontend leveraging a fine-tuned
ResNet50 CNN to achieve 78% accuracy in diagnosing Stevens-Johnson Syndrome from optic images.
</p>
</div>
<div class="cards__image d-flex animate-in-up">
<img src="img/works/project/titleImage.gif" alt="Service/Feature Image">
</div>
</div>
</div>
<div class="col-12 col-md-12 cards__item grid-item animate-card-2">
<div class="cards__card d-flex flex-column">
<div class="cards__descr">
<h4 class="cards__title animate-in-up">Full Stack React MUI<br>Dashboard</h4>
<div class="cards__tags d-flex flex-wrap animate-in-up">
<!-- <span class="rounded-tag tag-outline">UI/UX Design</span> -->
<span class="rounded-tag tag-outline">Github (coming soon)</span>
</div>
<p class="small cards__text animate-in-up">
React | MUI | Prisma | Middleware | AuthO | ChartJs | CRUD | Services | Express | Morgan |
Junit
</p>
</div>
<div class="cards__image d-flex animate-in-up">
<img src="img/works/project/retailhub.png" alt="Service/Feature Image">
</div>
</div>
</div>
<div class="col-12 col-md-12 cards__item grid-item animate-card-2">
<div class="cards__card d-flex flex-column">
<div class="cards__descr">
<h4 class="cards__title animate-in-up">Image Augmenting Desktop App Java</h4>
<div class="cards__tags d-flex flex-wrap animate-in-up">
<span class="rounded-tag tag-outline">Github (coming soon)</span>
</div>
<p class="small cards__text animate-in-up">A image processing software complete with
diverse functionalities, file format support, and a robust MVC architecture, ensuring seamless
image manipulation.
</p>
</div>
<div class="cards__image d-flex animate-in-up">
<img src="img/works/project/ImageEditor.png" alt="Service/Feature Image">
</div>
</div>
</div>
<div class="col-12 col-md-12 cards__item grid-item animate-card-2">
<div class="cards__card d-flex flex-column">
<div class="cards__descr">
<h4 class="cards__title animate-in-up">OpenCV based Fatigue Discernment</h4>
<div class="cards__tags d-flex flex-wrap animate-in-up">
<span class="rounded-tag tag-outline">Github (coming soon)</span>
<span class="rounded-tag tag-outline">PATENTED: 202211036401</span>
</div>
<p class="small cards__text animate-in-up">
Developed a facial landmark-based unique algorithm supporting various human movement
parameters
for discerning
drowsiness or fatigue with high accuracy based on self-proclaimed thresholds.
</p>
</div>
<div class="cards__image d-flex animate-in-up">
<img src="img/works/project/dlib.png" alt="Service/Feature Image">
</div>
</div>
</div>
</div>
</div>
<!-- Right column -->
<div class="col-md-6">
<div class="row g-0">
<div class="col-12 col-md-12 cards__item grid-item animate-card-2">
<div class="cards__card d-flex flex-column">
<div class="cards__descr">
<h4 class="cards__title animate-in-up">Autonomous RL Agent Combat Training (vs PPO) </h4>
<div class="cards__tags d-flex flex-wrap animate-in-up">
<a href="https://github.com/rishabhkumar14/GameAIFinalProject" target="_blank"
class="rounded-tag tag-outline">Github</a>
</div>
<p class="small cards__text animate-in-up">Trained a reinforcement learning agent using
Q-learning & Monte-Carlo methods to simulate pathfinding, combat
strategies, and environment interactions in OpenAI Gym, leveraging state hashing and ε-greedy
exploration.
</p>
</div>
<div class="cards__image d-flex animate-in-up">
<img src="img/works/project/RLAgentTrain.gif" alt="Service/Feature Image">
</div>
</div>
</div>
<div class="col-12 col-md-12 cards__item grid-item animate-card-2">
<div class="cards__card d-flex flex-column">
<div class="cards__descr">
<h4 class="cards__title animate-in-up">Perception Systems and Behaviour in AI</h4>
<div class="cards__tags d-flex flex-wrap animate-in-up">
<span class="rounded-tag tag-outline">Unreal Engine</span>
</div>
<p class="small cards__text animate-in-up">This project demonstrates an AI system that
dynamically adapts its spatial navigation strategies using Dijkstra's algorithm for optimal
pathfinding in grid environments.
</p>
</div>
<div class="cards__image d-flex animate-in-up">
<img src="img/works/project/unreal.gif" alt="Service/Feature Image">
</div>
</div>
</div>
<div class="col-12 col-md-12 cards__item grid-item animate-card-2">
<div class="cards__card d-flex flex-column">
<div class="cards__descr">
<h4 class="cards__title animate-in-up">Gitlab CICD Automation</h4>
<div class="cards__tags d-flex flex-wrap animate-in-up">
<span class="rounded-tag tag-outline">Github (coming soon)</span>
</div>
<p class="small cards__text animate-in-up">Incorporated the GitLab API for creating a user
interface
for delivery teams to have ease of access upon using GitLab and its features, avoiding the use
of
any command line input. Automated the end-to-end project which led to zero training cost for
onboarding new members and more accurate creation of repositories and commits
</p>
</div>
<div class="cards__image d-flex animate-in-up">
<img src="img/works/project/opencv.png" alt="Service/Feature Image">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Content Block - Services End -->
</section>
<!-- OPortfolio Section End -->
<!-- Tools List Start -->
<section id="tech" class="inner-tech">
<!-- Content Block - H2 Section Title Start -->
<div class="content__block section-grid-title">
<h2 class="h2__title animate-in-up">Tech I have worked with:</h2>
</div>
<!-- Content Block - H2 Section Title End -->
<div class="content__block grid-block block-large">
<!-- Tools List Start -->
<div class="tools-cards d-flex justify-content-start flex-wrap">
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/python.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Python</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/java.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Java</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/sql.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">MySql</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/Postgresql.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">PostgreSql</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/CNNrnn.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Neural Net</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/opencv.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Open CV</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/github.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">GitHub</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/prismadb.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Prisma DB</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/restapis.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Rest APIs</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/flask.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Flask</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/express.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Express</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/node.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Node</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/typescript.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Typescript</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/react.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">React</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/c.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">C</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/git.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Git</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/C++.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">C++</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/icon-figma.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Figma</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/icon-html.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">HTML</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/icon-css.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">CSS</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/js.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">JS</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/firebase.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Firebase</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/mui.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Material UI</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/autho.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">AuthO</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/flutter.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Flutter</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/android.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Android</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/dart.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Dart</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/tools/azure.png" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Azure</h6>
</div>
</div>
</div>
<!-- Tools List End -->
</div>
<!-- Tools List End -->
</section>
<!-- OResume Section Start -->
<section id="resume" class="resume">
<div class="content__block block-large">
<p class="h2__subtitle animate-in-up">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="13px" height="13px" viewBox="0 0 13 13"
fill="currentColor">
<path fill="currentColor" d="M5.6,12.6c-0.5-0.8-0.7-2.4-1.7-3.5c-1-1-2.7-1.2-3.5-1.7C-0.1,7-0.1,6,0.4,5.6c0.8-0.5,2.3-0.6,3.5-1.8
C5,2.8,5.1,1.2,5.6,0.4C6-0.1,7-0.1,7.4,0.4c0.5,0.8,0.7,2.4,1.8,3.5c1.2,1.2,2.6,1.2,3.5,1.7c0.6,0.4,0.6,1.4,0,1.7
C11.8,7.9,10.2,8,9.1,9.1c-1,1-1.2,2.7-1.7,3.5C7,13.1,6,13.1,5.6,12.6z" />
</svg>
<span>Resume</span>
</p>
<!-- Content Block - Experience Start -->
<h2 class="h2__title animate-in-up">My Work Experience</h2>
<div class="content__block block-large">
<br />
<!-- Experience Lines Start -->
<div class="container-fluid p-0 resume-lines">
<!-- experience single item -->
<div class="row g-0 resume-lines__item animate-in-up">
<div class="col-12 col-md-2">
<span class="resume-lines__date animate-in-up">2025 - Present</span>
<span class="resume-lines__date animate-in-up">Boston, MA</span>
</div>
<div class="col-12 col-md-5">
<h5 class="resume-lines__title animate-in-up">Cloud and AI Engineer</h5>
<p class="resume-lines__source animate-in-up">at
<span class="resume-lines__source-with-logo">
<a href="https://www.microsoft.com" class="text-link-bold" target="_blank">Microsoft</a>
<img src="img/works/experience/microsoft.png" alt="Microsoft logo"
class="resume-lines__company-logo">
</span>
</p>
</div>
<div class="col-12 col-md-5">
<p class="small resume-lines__descr animate-in-up">• Contributing to building innovative cloud
solutions and software products at scale.<br />
• Collaborating with cross-functional teams to design and implement robust software systems.<br />
• Driving technical excellence and best practices across engineering initiatives.</p>
</div>
</div>
<!-- experience single item -->
<div class="row g-0 resume-lines__item animate-in-up">
<div class="col-12 col-md-2">
<span class="resume-lines__date animate-in-up">2021 - 2023</span>
<span class="resume-lines__date animate-in-up">Banglore, India</span>
</div>
<div class="col-12 col-md-5">
<h5 class="resume-lines__title animate-in-up">Software Developer II</h5>
<p class="resume-lines__source animate-in-up">at
<span class="resume-lines__source-with-logo">
<a href="#0" class="text-link-bold" target="_blank">Dell Technologies</a>
<img src="img/works/experience/dell.png" alt="Dell Technologies logo"
class="resume-lines__company-logo">
</span>
</p>
</div>
<div class="col-12 col-md-5">
<p class="small resume-lines__descr animate-in-up">• Implemented Python scripts leveraging GitLab API
to automate file conversion processes, optimizing pipeline-flow efficiency within the team at Dell
Technologies.<br />
• Elevated to a pivotal role within the Business Intelligence department, focusing on GitLab CI/CD
Automotive pipelines, and contributed to the development of performance quantification dashboards
using React.<br />
• Recognized with an Inspire award for Innovation for significant contributions to ELT Automation
via DataOps, enhancing data processing efficiency and effectiveness.</p>
</div>
</div>
<!-- experience single item -->
<div class="row g-0 resume-lines__item animate-in-up">
<div class="col-12 col-md-2">
<span class="resume-lines__date animate-in-up">2020 - 2021</span>
<span class="resume-lines__date animate-in-up">Tokyo, Japan</span>
</div>
<div class="col-12 col-md-5">
<h5 class="resume-lines__title animate-in-up">Data Science Intern</h5>
<p class="resume-lines__source animate-in-up">at
<span class="resume-lines__source-with-logo">
<a href="#0" class="text-link-bold" target="_blank">Bitgrit Inc</a>
<img src="img/works/experience/bitgrit.png" alt="Bitgrit Inc logo"
class="resume-lines__company-logo">
</span>
</p>
</div>
<div class="col-12 col-md-5">
<p class="small resume-lines__descr animate-in-up">Demonstrated adaptive usage of multiple ML Models
and worked persistently towards the timely completion of tasks involving researching a
Kubeflow-centric architecture, developing technical PoCs, and upgrading Bitgrit’s AI portfolio as a
whole.</p>
</div>
</div>
<!-- experience single item -->
<div class="row g-0 resume-lines__item animate-in-up">
<div class="col-12 col-md-2">
<span class="resume-lines__date animate-in-up">2019 - 2020</span>
<span class="resume-lines__date animate-in-up">Jaipur, India</span>
</div>
<div class="col-12 col-md-5">
<h5 class="resume-lines__title animate-in-up">Techical Dev Intern</h5>
<p class="resume-lines__source animate-in-up">at
<span class="resume-lines__source-with-logo">
<a href="#0" class="text-link-bold" target="_blank">Gramiksha</a>
<img src="img/works/experience/gramiksha.png" alt="Gramiksha logo"
class="resume-lines__company-logo">
</span>
</p>
</div>
<div class="col-12 col-md-5">
<p class="small resume-lines__descr animate-in-up">Ensured that Gramiksha's web infrastructure has a
99.9% up-time, whilst constantly optimising the website for performance and adding functionalities.
</p>
</div>
</div>
</div>
<!-- Experience Lines End -->
</div>
<!-- Content Block - Experience End -->
<!-- Content Block - Education Start -->
<h2 class="h2__title animate-in-up">My Education</h2>
<div class="content__block block-large">
<br />
<!-- Education Lines Start -->
<div class="container-fluid p-0 resume-lines section-h3">
<!-- education single item -->
<div class="row g-0 resume-lines__item animate-in-up">
<div class="col-12 col-md-2">
<span class="resume-lines__date animate-in-up">2023 - 2025</span>
<span class="resume-lines__date animate-in-up">Boston, USA</span>