-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
873 lines (772 loc) · 37.5 KB
/
Copy pathindex.html
File metadata and controls
873 lines (772 loc) · 37.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vipul Krishna Mathuria - Software Developer</title>
<style>
:root {
--color-primary: #2563eb;
--color-primary-dark: #1e40af;
--color-secondary: #10b981;
--color-text: #1f2937;
--color-text-light: #6b7280;
--color-bg: #ffffff;
--color-bg-alt: #f9fafb;
--color-border: #e5e7eb;
--color-accent: #8b5cf6;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: var(--color-text);
background: var(--color-bg-alt);
}
.header {
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
color: white;
padding: 3rem 2rem;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.header .title {
font-size: 1.25rem;
opacity: 0.95;
margin-bottom: 1.5rem;
}
.contact-links {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
margin-top: 1.5rem;
}
.contact-links a {
color: white;
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 6px;
transition: all 0.3s;
}
.contact-links a:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
.section {
background: var(--color-bg);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.section h2 {
font-size: 1.75rem;
color: var(--color-primary);
margin-bottom: 1.5rem;
padding-bottom: 0.75rem;
border-bottom: 3px solid var(--color-primary);
}
.section h3 {
font-size: 1.35rem;
color: var(--color-text);
margin-top: 1.5rem;
margin-bottom: 0.75rem;
}
.section h4 {
font-size: 1.1rem;
color: var(--color-text-light);
margin-top: 1rem;
margin-bottom: 0.5rem;
font-weight: 600;
}
.job-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
margin-bottom: 1rem;
}
.job-title {
font-size: 1.35rem;
color: var(--color-text);
font-weight: 600;
}
.job-duration {
color: var(--color-text-light);
font-size: 0.95rem;
font-weight: 500;
}
.company-name {
color: var(--color-primary);
font-weight: 600;
}
ul {
margin-left: 1.5rem;
margin-top: 0.75rem;
}
li {
margin-bottom: 0.5rem;
color: var(--color-text);
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-top: 1.5rem;
}
.skill-category {
background: var(--color-bg-alt);
padding: 1.25rem;
border-radius: 8px;
border-left: 4px solid var(--color-primary);
}
.skill-category h4 {
color: var(--color-primary);
font-size: 1.1rem;
margin-bottom: 0.75rem;
margin-top: 0;
}
.skill-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.skill-tag {
background: white;
padding: 0.4rem 0.8rem;
border-radius: 6px;
font-size: 0.9rem;
color: var(--color-text);
border: 1px solid var(--color-border);
}
.highlight {
background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
padding: 1.5rem;
border-radius: 8px;
border-left: 4px solid #f59e0b;
margin: 1rem 0;
}
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin: 1.5rem 0;
}
.stat-card {
background: var(--color-bg-alt);
padding: 1.25rem;
border-radius: 8px;
text-align: center;
border: 2px solid var(--color-border);
}
.stat-number {
font-size: 2rem;
font-weight: 700;
color: var(--color-primary);
}
.stat-label {
color: var(--color-text-light);
font-size: 0.9rem;
margin-top: 0.25rem;
}
.badge {
display: inline-block;
background: var(--color-secondary);
color: white;
padding: 0.25rem 0.75rem;
border-radius: 12px;
font-size: 0.85rem;
font-weight: 600;
margin-right: 0.5rem;
}
/* Timeline Styles */
.timeline {
position: relative;
padding-left: 50px;
}
.timeline::before {
content: '';
position: absolute;
left: 20px;
top: 0;
bottom: 0;
width: 2px;
background: var(--color-primary);
}
.timeline-item {
position: relative;
margin-bottom: 2rem;
}
.timeline-dot {
position: absolute;
left: -37px;
top: 8px;
width: 16px;
height: 16px;
border-radius: 50%;
background: white;
border: 4px solid var(--color-primary);
z-index: 1;
}
.timeline-badge {
display: inline-block;
background: var(--color-primary);
color: white;
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 0.75rem;
}
/* Accordion Styles */
.job-accordion {
background: #2d3748;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.accordion-button {
background: #2d3748;
color: white;
cursor: pointer;
padding: 1.25rem 1.5rem;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: all 0.3s;
font-size: 1.15rem;
font-weight: 600;
display: flex;
justify-content: space-between;
align-items: center;
}
.accordion-button:hover {
background: #374151;
}
.accordion-button.active {
background: #374151;
}
.accordion-button::after {
content: '+';
font-size: 1.8rem;
font-weight: 300;
transition: transform 0.3s;
color: white;
}
.accordion-button.active::after {
content: '−';
}
.accordion-panel {
padding: 0;
max-height: 0;
overflow: hidden;
background: var(--color-bg-alt);
transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.accordion-panel.active {
padding: 1.5rem;
max-height: 5000px;
}
.accordion-panel h4 {
color: var(--color-text);
margin: 1.25rem 0 0.75rem 0;
font-size: 1.15rem;
font-weight: 700;
}
.accordion-panel ul {
margin-left: 1.5rem;
margin-top: 0.5rem;
}
.accordion-panel li {
margin-bottom: 0.6rem;
line-height: 1.6;
color: var(--color-text);
}
.accordion-panel strong {
color: var(--color-text);
}
@media (max-width: 768px) {
.header h1 {
font-size: 2rem;
}
.contact-links {
flex-direction: column;
align-items: center;
gap: 1rem;
}
.job-header {
flex-direction: column;
}
.skills-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<header class="header">
<h1>Vipul Krishna Mathuria</h1>
<p class="title">Senior Java Backend Developer • Spring Boot • Kafka • AWS • Microservices</p>
<div class="contact-links">
<a href="tel:+918727039860" style="text-decoration:none; color:inherit;">
<img src="https://cdn-icons-png.flaticon.com/512/724/724664.png" alt="Phone" width="18" height="18"
style="vertical-align:middle; margin-right:6px;">
+91-8727039860
</a>
<a href="mailto:vipul07.mathuria@gmail.com" style="text-decoration:none; color:inherit;">
<img src="https://cdn-icons-png.flaticon.com/512/732/732200.png" alt="Email" width="18" height="18"
style="vertical-align:middle; margin-right:6px;">
vipul07.mathuria@gmail.com
</a>
<a href="https://github.com/vipul1999" target="_blank" style="text-decoration:none; color:inherit;">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/github/github-original.svg" alt="GitHub"
width="20" height="20" style="vertical-align:middle; margin-right:6px;">
GitHub
</a>
<a href="https://www.linkedin.com/in/vipulkrishna/" target="_blank"
style="text-decoration:none; color:inherit;">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/linkedin/linkedin-original.svg"
alt="LinkedIn" width="20" height="20" style="vertical-align:middle; margin-right:6px;">
LinkedIn
</a>
<a href="https://bit.ly/resume-vipul" target="_blank" style="text-decoration:none; color:inherit;">
<img src="https://cdn-icons-png.flaticon.com/512/337/337946.png" alt="Resume" width="18" height="18"
style="vertical-align:middle; margin-right:6px;">
Resume
</a>
</div>
</header>
<div class="container">
<section class="section">
<h2>Professional Summary</h2>
<p>Software Development Engineer II with <strong>3.8+ years</strong> of hands-on experience building
scalable backend systems at Jar App, Delhivery, and Infogain. Expert in <strong>Java, Spring Boot,
Kafka, PostgreSQL, and AWS</strong>, with a proven track record of delivering <strong>30+ critical
features</strong> and optimizing systems to achieve <strong>75% latency reduction</strong>.
Passionate about solving complex technical challenges and driving business impact through efficient,
maintainable code.</p>
<div class="stats">
<div class="stat-card">
<div class="stat-number">3.8+</div>
<div class="stat-label">Years Experience</div>
</div>
<div class="stat-card">
<div class="stat-number">30+</div>
<div class="stat-label">Features Delivered</div>
</div>
<div class="stat-card">
<div class="stat-number">35+</div>
<div class="stat-label">Bugs Resolved</div>
</div>
<div class="stat-card">
<div class="stat-number">780+</div>
<div class="stat-label">DSA Problems Solved</div>
</div>
</div>
</section>
<section class="section">
<h2>Technical Skills</h2>
<div class="skills-grid">
<!-- Backend Technologies -->
<div class="skill-category">
<h4>
<img src="https://cdn-icons-png.flaticon.com/512/2721/2721293.png" alt="Backend" width="22"
height="22" style="vertical-align:middle; margin-right:6px;">
Backend Technologies
</h4>
<div class="skill-tags">
<span class="skill-tag">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/java/java-original.svg"
width="18" height="18" style="vertical-align:middle; margin-right:4px;">
Java
</span>
<span class="skill-tag">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/spring/spring-original.svg"
width="18" height="18" style="vertical-align:middle; margin-right:4px;">
Spring Boot
</span>
<span class="skill-tag">REST APIs</span>
<span class="skill-tag">Microservices</span>
<span class="skill-tag">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg"
width="18" height="18" style="vertical-align:middle; margin-right:4px;">
Python
</span>
</div>
</div>
<!-- Databases -->
<div class="skill-category">
<h4>
<img src="https://cdn-icons-png.flaticon.com/512/4248/4248443.png" alt="Database" width="22"
height="22" style="vertical-align:middle; margin-right:6px;">
Databases
</h4>
<div class="skill-tags">
<span class="skill-tag">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/postgresql/postgresql-original.svg"
width="18" height="18" style="vertical-align:middle; margin-right:4px;">
PostgreSQL
</span>
<span class="skill-tag">Cosmos DB</span>
<span class="skill-tag">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/elasticsearch/elasticsearch-original.svg"
width="18" height="18" style="vertical-align:middle; margin-right:4px;">
Elasticsearch
</span>
<span class="skill-tag">SQL Optimization</span>
</div>
</div>
<!-- Cloud & DevOps -->
<div class="skill-category">
<h4>
<img src="https://cdn-icons-png.flaticon.com/512/2721/2721267.png" alt="Cloud" width="22"
height="22" style="vertical-align:middle; margin-right:6px;">
Cloud & DevOps
</h4>
<div class="skill-tags">
<span class="skill-tag">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/amazonwebservices/amazonwebservices-original-wordmark.svg"
width="20" height="20" style="vertical-align:middle; margin-right:6px;">
AWS
</span>
</span>
<span class="skill-tag">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/azure/azure-original.svg"
width="18" height="18" style="vertical-align:middle; margin-right:4px;">
Azure
</span>
<span class="skill-tag">
<img src="https://www.svgrepo.com/show/349587/amazon-s3.svg" alt="Amazon S3" width="20"
height="20" style="vertical-align:middle; margin-right:6px;">
S3</span>
<span class="skill-tag">CloudWatch</span>
<span class="skill-tag">Devtron</span>
</div>
</div>
<!-- Messaging & Tools -->
<div class="skill-category">
<h4>
<img src="https://cdn-icons-png.flaticon.com/512/906/906361.png" alt="Tools" width="22"
height="22" style="vertical-align:middle; margin-right:6px;">
Messaging & Tools
</h4>
<div class="skill-tags">
<span class="skill-tag">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/apachekafka/apachekafka-original.svg"
width="18" height="18" style="vertical-align:middle; margin-right:4px;">
Kafka
</span>
<span class="skill-tag">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-original.svg"
width="18" height="18" style="vertical-align:middle; margin-right:4px;">
Git
</span>
<span class="skill-tag">
<img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/newrelic.svg"
alt="New Relic" width="20" height="20"
style="vertical-align:middle; margin-right:6px; fill:#008C99;">
New Relic
</span>
<span class="skill-tag">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/grafana/grafana-original.svg"
width="18" height="18" style="vertical-align:middle; margin-right:4px;">
Grafana
</span>
<span class="skill-tag">
<img src="https://www.vectorlogo.zone/logos/getpostman/getpostman-icon.svg" width="18"
height="18" style="vertical-align:middle; margin-right:4px;">
Postman
</span>
</div>
</div>
</div>
</section>
<section class="section">
<h2>Professional Experience</h2>
<div class="timeline">
<!-- Infogain Experience -->
<div class="timeline-item">
<div class="timeline-dot"></div>
<span class="timeline-badge">Aug 2024 - Aug 2025</span>
<div class="job-accordion">
<button class="accordion-button">
<span><strong>Java Backend Developer</strong> @ Infogain</span>
</button>
<div class="accordion-panel">
<div class="highlight">
<strong>🏦 Domain:</strong> Financial Services - Insurance planning and proposal
management platform for PACS Singapore
</div>
<h4>PruJourney / PruPlanner Platform</h4>
<ul>
<li>Worked on <strong>microservices architecture</strong> for comprehensive insurance
journey management covering financial planning, proposals, payments, and submissions
</li>
<li><strong>Tech Stack:</strong> Java (Spring Boot), Cosmos DB (NoSQL), Azure Monitors,
FTL templates, automated CI/CD pipelines</li>
</ul>
<h4>Key Microservices Developed</h4>
<ul>
<li><strong>Planner Service:</strong> Managed planners/advisors, allocation via AG
(Agent Groups) & AD (Affinity Distribution)</li>
<li><strong>Client Service:</strong> Customer data management, onboarding, KYC processes
</li>
<li><strong>FNA Service:</strong> Financial Needs Analysis engine for personalized
insurance recommendations</li>
<li><strong>Proposal Service:</strong> Draft and finalize insurance proposals with
validation</li>
<li><strong>Payment Service:</strong> Integrated payment gateways (Standard Chartered
Bank, United Overseas Bank)</li>
<li><strong>Signature Service:</strong> Digital signature capture and validation</li>
<li><strong>Submission Service:</strong> Final application submission to backend
insurance systems</li>
</ul>
<h4>Infrastructure & Integration</h4>
<ul>
<li>Worked with <strong>Cosmos DB</strong> for high-availability NoSQL data storage</li>
<li>Implemented monitoring and logging using <strong>Azure Monitors</strong></li>
<li>Built <strong>CI/CD pipelines</strong> for automated deployments</li>
<li>Created <strong>FTL (Freemarker) templates</strong> for dynamic front-end rendering
from backend data</li>
<li>Integrated APIs with <strong>SCB and UOB</strong> for payment flows and verification
</li>
<li>Managed <strong>local replication</strong> environments for comprehensive testing
</li>
</ul>
</div>
</div>
</div>
<!-- Jar App Experience -->
<div class="timeline-item">
<div class="timeline-dot"></div>
<span class="timeline-badge">May 2024 - June 2024</span>
<div class="job-accordion">
<button class="accordion-button">
<span><strong>Software Development Engineer II</strong> @ Jar App</span>
</button>
<div class="accordion-panel">
<div class="highlight">
<strong>🎯 Key Impact:</strong> Led data-driven experimentation and infrastructure
improvements for a fintech savings platform, focusing on user engagement and system
reliability.
</div>
<h4>User Cohort Analysis & MCAP Reduction Daily Recurrence (MRDR) Experiment</h4>
<ul>
<li>Spearheaded creation of <strong>user cohort-based coupons</strong> for Daily Saving
UPI auto-pay setup users, analyzing behavior patterns to enhance engagement</li>
<li>Designed and executed <strong>MRDR experiment</strong> with 4 new user cohorts
testing variations in MCAP amounts (₹30 vs ₹50) and expiry settings
(once-in-lifetime vs daily)</li>
<li>Managed <strong>15-day experiment lifecycle</strong> with real-time monitoring and
iterative optimization based on conversion rates and retention metrics</li>
<li>Delivered actionable insights that informed ongoing user retention strategies,
improving overall app value proposition</li>
</ul>
<h4>Infrastructure & Data Management</h4>
<ul>
<li>Implemented <strong>S3 bucket backup storage</strong> for CleverTap notification
delivery acknowledgment, ensuring reliable and scalable data storage</li>
<li>Developed <strong>high transaction value user cohorts</strong> to handle data
efficiently and offer personalized services to premium users</li>
<li>Configured AWS permissions, policies, and integrated with CleverTap notification
system for data integrity</li>
</ul>
</div>
</div>
</div>
<!-- Delhivery Experience -->
<div class="timeline-item">
<div class="timeline-dot"></div>
<span class="timeline-badge">June 2021 - Dec 2023</span>
<div class="job-accordion">
<button class="accordion-button">
<span><strong>Java Backend Developer</strong> @ Delhivery</span>
</button>
<div class="accordion-panel">
<div class="highlight">
<strong>🚀 Major Achievement:</strong> Reduced API response time from 8s to 2s and
scaled CSV processing from 125 rows to 10K rows in 4 seconds through async processing
and optimization.
</div>
<h4>Telescope Platform (First 8 Months)</h4>
<ul>
<li>Built <strong>user data permission module</strong> restricting data visibility to
authorized users for FCs, orders, shipments, and products</li>
<li>Developed <strong>10+ listing APIs</strong> including shipment content, summary,
invoice awaiting truck, and serviceability with advanced filters</li>
<li>Created <strong>CSV download/upload APIs</strong> for order bulk operations and
serviceability management</li>
<li>Handled <strong>encryption/decryption of PII data</strong> for consignee
information, ensuring GDPR compliance</li>
<li>Fixed critical production bugs impacting warehouse operations</li>
</ul>
<h4>WMS (Warehouse Management System) - 1 Year 8 Months</h4>
<ul>
<li><strong>Bundle Pickwave:</strong> Added new pick-wave type inheriting traits from
multi and bulk pickwaves, improving warehouse flexibility</li>
<li><strong>Multi Container in Picklist:</strong> Enabled multiple containers per
picklist with minimal code changes; optimized notifications from picklist to
container level</li>
<li><strong>Event Tracking:</strong> Implemented comprehensive user, activity, and
device-level tracking for all inbound/outbound WMS events with Kafka integration
</li>
<li><strong>Tag Assignment & FMS Validation:</strong> Managed tag entities for client
inventory conditions, validated FMS categories during transfers</li>
<li><strong>Facility Layout:</strong> Developed physical entity representation (zones,
locations, containers) with bulk upload/download capabilities</li>
<li><strong>ODMZero:</strong> Built courier assignment logic based on weight, price, and
serviceability for optimal order allocation</li>
</ul>
<h4>Technical Optimizations & Infrastructure</h4>
<ul>
<li>Implemented <strong>non-blocking async API calls</strong> using CompletableFuture,
reducing response time from <strong>8s → 2s</strong></li>
<li>Optimized CSV processing with batch operations and streaming, scaling from
<strong>125 rows → 10K rows in 4s</strong>
</li>
<li>Created/updated <strong>Elasticsearch endpoints</strong> for efficient object
indexing and management</li>
<li>Built <strong>third-party API integration utilities</strong> with encryption support
for privacy-sensitive data</li>
<li>Configured <strong>AWS CloudWatch alarms</strong> and monitoring for production
health metrics</li>
<li>Advanced <strong>Git operations</strong>: cherry-picking, rebasing, merge conflict
resolution, commit recovery</li>
</ul>
<h4>Proactive Contributions</h4>
<ul>
<li>Updated <strong>Devtron deployment strategies</strong> to reduce downtime; added
envoy-proxy for advanced metric tracing</li>
<li>Monitored resources via <strong>New Relic</strong>: CPU, memory, throughput,
latency, error rates with custom NRQL queries</li>
<li>Successfully integrated <strong>Codacy tool</strong> across 20+ WMS services for
static code analysis</li>
<li>Managed 5 major features involving 15+ stakeholders from PRD to release</li>
</ul>
<h4>Python Services Work</h4>
<ul>
<li>Built Python API and fixed critical issues in <strong>waybill generation
service</strong> during resource crunch</li>
<li>Maintained services: wms-document-generation, wms-reports-lambda, wms-cycle-count,
COMS service</li>
<li>COMS service ownership: managed routing system communicating with HQ service across
5 internal services</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<h2>Education</h2>
<h3><img src="https://upload.wikimedia.org/wikipedia/en/9/96/Logo_of_NIT_Jalandhar.png"
alt="NIT Jalandhar Logo" width="30" height="30" style="vertical-align:middle; margin-right:8px;">
Dr. B R Ambedkar National Institute of Technology, Jalandhar</h3>
<p><strong>Bachelor of Technology in Computer Science & Engineering</strong> | CGPA: 7.05</p>
<div style="margin-top: 1.5rem;">
<h4>Academic Achievements</h4>
<ul>
<li><strong>Silver Medal</strong> - 7th State Merit in 10th Board by Rajasthan Board (2014)</li>
<li><strong>JEE Main 2017</strong> - General Rank: 8,811 out of 1.3 Million participants</li>
</ul>
</div>
</section>
<section class="section">
<h2>Coding Profiles & Competitive Programming</h2>
<div class="skills-grid">
<div class="skill-category">
<h4>
<img src="https://upload.wikimedia.org/wikipedia/commons/4/43/GeeksforGeeks.svg"
alt="GeeksforGeeks" width="22" height="22" style="vertical-align:middle; margin-right:6px;">
GeeksforGeeks
</h4>
<p><strong>560+ Problems Solved</strong></p>
<a href="http://bit.ly/gfg-vk" target="_blank" style="color: var(--color-primary);">View Profile
→</a>
</div>
<div class="skill-category">
<h4>
<img src="https://upload.wikimedia.org/wikipedia/commons/6/65/HackerRank_logo.png"
alt="HackerRank" width="22" height="22" style="vertical-align:middle; margin-right:6px;">
HackerRank
</h4>
<p><strong>5-Star Golden Badge</strong></p>
<p>Problem Solving, C++, Java, SQL, Python</p>
<a href="http://bit.ly/hkrnvkm" target="_blank" style="color: var(--color-primary);">View Profile
→</a>
</div>
<div class="skill-category">
<h4>
<img src="https://leetcode.com/favicon-32x32.png" alt="LeetCode" width="20" height="20"
style="vertical-align:middle; margin-right:6px;">
LeetCode
</h4>
<p><strong>221+ Problems Solved</strong></p>
<a href="https://leetcode.com/u/vipulkris19/" target="_blank" style="color: var(--color-primary);">View Profile
→</a>
</div>
<div class="skill-category">
<h4>
<img src="https://cdn-icons-png.flaticon.com/512/281/281764.png" alt="Google Kick Start"
width="20" height="20" style="vertical-align:middle; margin-right:6px;">
Google Kick Start 2020
</h4>
<p><strong>Global Rank: 1099</strong></p>
<p>Round H</p>
<a href="http://bit.ly/37LXQwW" target="_blank" style="color: var(--color-primary);">View
Certificate →</a>
</div>
</div>
</section>
<section class="section">
<h2>Certifications & Training</h2>
<ul>
<li><strong>Backend Developer Fellowship</strong> - Crio.Do (8-week virtual program) <a
href="http://bit.ly/criovkm" target="_blank">→</a></li>
<li><strong>AT&T Summer Learning Academy Externship</strong> - 4-week virtual development training <a
href="http://bit.ly/atntvkm" target="_blank">→</a></li>
<li><strong>HP Summer Scholars</strong> - 6-week virtual development, team of 8 <a
href="http://bit.ly/hpssvkm" target="_blank">→</a></li>
<li><strong>Software Engineering Virtual Experience</strong> - JPMorgan on Inside-Sherpa <a
href="http://bit.ly/3qEJXZU" target="_blank">→</a></li>
<li><strong>Technical Support Fundamentals</strong> - Grow with Google on Coursera <a
href="http://bit.ly/2VUxenT" target="_blank">→</a></li>
</ul>
</section>
</div>
<script>
// Accordion functionality
const accordionButtons = document.querySelectorAll('.accordion-button');
accordionButtons.forEach(button => {
button.addEventListener('click', function () {
// Toggle active class on button
this.classList.toggle('active');
// Get the panel
const panel = this.nextElementSibling;
// Toggle active class on panel
panel.classList.toggle('active');
});
});
</script>
</body>
</html>