-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1045 lines (975 loc) · 62.2 KB
/
Copy pathindex.html
File metadata and controls
1045 lines (975 loc) · 62.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" data-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Jaydeep Mohite — Vice President & Lead DevOps Engineer</title>
<meta name="title" content="Jaydeep Mohite — Vice President & Lead DevOps Engineer">
<meta name="description" content="Executive portfolio of Jaydeep Mohite, VP & Lead DevOps Engineer at J.P. Morgan Chase. 8+ years experience in AWS EKS, Terraform IaC, low-latency FinTech, & SRE.">
<meta name="keywords" content="Jaydeep Mohite, DevOps Engineer, Vice President, Platform Engineering, AWS, Kubernetes, EKS, Terraform, Site Reliability Engineering, SRE, J.P. Morgan, Deutsche Bank, Spring Boot, Java">
<meta name="author" content="Jaydeep Mohite">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://jaydeepmohite.dev/">
<!-- Social Meta -->
<meta property="og:type" content="profile">
<meta property="og:url" content="https://jaydeepmohite.dev/">
<meta property="og:site_name" content="Jaydeep Mohite Portfolio">
<meta property="og:locale" content="en_GB">
<meta property="og:title" content="Jaydeep Mohite — Vice President & Lead DevOps Engineer">
<meta property="og:description" content="Vice President & Lead DevOps Engineer at JPM Personal Investing (J.P. Morgan Chase & Co.). 8+ years experience designing resilient AWS EKS platforms and low-latency FinTech systems.">
<meta property="og:image" content="https://jaydeepmohite.dev/images/profilepic.jpg">
<meta property="og:image:width" content="600">
<meta property="og:image:height" content="600">
<meta property="og:image:alt" content="Jaydeep Mohite — Vice President & Lead DevOps Engineer">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://jaydeepmohite.dev/">
<meta property="twitter:title" content="Jaydeep Mohite — Vice President & Lead DevOps Engineer">
<meta property="twitter:description" content="Vice President & Lead DevOps Engineer at JPM Personal Investing (J.P. Morgan Chase & Co.). 8+ years experience in AWS EKS, Terraform, and FinTech systems.">
<meta property="twitter:image" content="https://jaydeepmohite.dev/images/profilepic.jpg">
<meta name="theme-color" content="#09090b">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- Search Engine Verification Meta -->
<meta name="google-site-verification" content="google-site-verification-token">
<meta name="msvalidate.01" content="msvalidate-token">
<!-- Fonts & Icons (Optimized Preloading) -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap">
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css/main.css?v=7.0">
<!-- Schema.org JSON-LD Graph (WebSite, ProfilePage, Person, Projects, FAQ) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"@id": "https://jaydeepmohite.dev/#website",
"url": "https://jaydeepmohite.dev/",
"name": "Jaydeep Mohite Portfolio",
"description": "Executive portfolio of Jaydeep Mohite, Vice President & Lead DevOps Engineer at JPM Personal Investing (J.P. Morgan Chase & Co.).",
"publisher": {
"@id": "https://jaydeepmohite.dev/#person"
},
"inLanguage": "en-GB"
},
{
"@type": "ProfilePage",
"@id": "https://jaydeepmohite.dev/#profilepage",
"url": "https://jaydeepmohite.dev/",
"name": "Jaydeep Mohite — Vice President & Lead DevOps Engineer",
"isPartOf": {
"@id": "https://jaydeepmohite.dev/#website"
},
"mainEntity": {
"@id": "https://jaydeepmohite.dev/#person"
},
"inLanguage": "en-GB"
},
{
"@type": "Person",
"@id": "https://jaydeepmohite.dev/#person",
"name": "Jaydeep Mohite",
"jobTitle": "Vice President — Lead DevOps Engineer",
"description": "Vice President & Lead DevOps Engineer at JPM Personal Investing (J.P. Morgan Chase & Co.) with 8+ years of experience designing zero-downtime AWS EKS platforms, automated Terraform IaC, and low-latency financial systems.",
"worksFor": {
"@type": "Organization",
"name": "JPM Personal Investing (J.P. Morgan Chase & Co.)",
"url": "https://www.jpmorganchase.com/"
},
"alumniOf": {
"@type": "EducationalOrganization",
"name": "College of Engineering, Pune (COEP)",
"url": "https://www.coep.org.in/"
},
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"name": "AWS Certified Developer — Associate",
"recognizedBy": {
"@type": "Organization",
"name": "Amazon Web Services"
}
},
{
"@type": "EducationalOccupationalCredential",
"name": "HashiCorp Certified: Terraform Associate",
"recognizedBy": {
"@type": "Organization",
"name": "HashiCorp"
}
},
{
"@type": "EducationalOccupationalCredential",
"name": "Certified SAFe® 4 Practitioner",
"recognizedBy": {
"@type": "Organization",
"name": "Scaled Agile, Inc."
}
}
],
"knowsAbout": [
"AWS EKS",
"Kubernetes",
"Terraform",
"Platform Engineering",
"Site Reliability Engineering (SRE)",
"Zero-Downtime Migration",
"Cloud Architecture",
"FinTech",
"Java",
"Spring Boot",
"Microservices Architecture",
"Redis Distributed Caching",
"CI/CD Automation",
"Docker",
"Helm"
],
"address": {
"@type": "PostalAddress",
"addressLocality": "London",
"addressCountry": "United Kingdom"
},
"email": "jaydeepmohite@hotmail.com",
"telephone": "+447459132498",
"url": "https://jaydeepmohite.dev/",
"image": "https://jaydeepmohite.dev/images/profilepic.jpg",
"sameAs": [
"https://www.linkedin.com/in/jaydeepmohite",
"https://github.com/jaydeepmohite"
]
},
{
"@type": "ItemList",
"@id": "https://jaydeepmohite.dev/#projects",
"name": "Selected Architectural Projects",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@type": "SoftwareSourceCode",
"name": "Atlas Enterprise Cloud Transformation",
"description": "Multi-account enterprise AWS cloud transformation program and zero-downtime AWS EKS compute migration for JPM Personal Investing.",
"programmingLanguage": "Terraform, HCL, Docker, Helm, Shell",
"creator": {
"@id": "https://jaydeepmohite.dev/#person"
}
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@type": "SoftwareSourceCode",
"name": "RiskOne Real-Time Risk Engine",
"description": "Strategic real-time post-trade risk monitoring and automated kill-switch engine handling millions of daily trading events at J.P. Morgan Chase.",
"programmingLanguage": "Java 17, Spring Boot, Redis, Chronicle, FIX Protocol",
"creator": {
"@id": "https://jaydeepmohite.dev/#person"
}
}
},
{
"@type": "ListItem",
"position": 3,
"item": {
"@type": "SoftwareSourceCode",
"name": "dbPalace Global P&L Platform",
"description": "Straight-through P&L accounting workflows and event-driven trade sign-offs for Deutsche Bank trading desks.",
"programmingLanguage": "Java, Spring Boot, WebSockets, IBM MQ, React",
"creator": {
"@id": "https://jaydeepmohite.dev/#person"
}
}
},
{
"@type": "ListItem",
"position": 4,
"item": {
"@type": "SoftwareSourceCode",
"name": "Multi-Broker & Bank Portfolio Aggregator",
"description": "Full-stack Progressive Web App (PWA) consolidating real-time holdings, cash balances, and net worth across multiple brokerage accounts.",
"programmingLanguage": "Python, FastAPI, Docker, SQLite WAL, PWA",
"codeRepository": "https://github.com/jaydeepmohite",
"url": "https://netwealth.tech",
"creator": {
"@id": "https://jaydeepmohite.dev/#person"
}
}
}
]
},
{
"@type": "FAQPage",
"@id": "https://jaydeepmohite.dev/#faq",
"mainEntity": [
{
"@type": "Question",
"name": "What is Jaydeep Mohite's current role and architectural focus?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Jaydeep Mohite is a Vice President & Lead DevOps Engineer at JPM Personal Investing (J.P. Morgan Chase & Co.) in London, UK. He leads enterprise multi-account AWS cloud transformation programs (Atlas), designing zero-downtime AWS EKS compute platforms, automated Terraform Infrastructure as Code (IaC), and resilient SRE guardrails."
}
},
{
"@type": "Question",
"name": "What core cloud platforms, languages, and tools does Jaydeep specialize in?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Jaydeep specializes in AWS (EKS, RDS/Aurora, VPC, IRSA, IAM), Terraform (IaC), Kubernetes, Docker, Helm, Jenkins Pipeline-as-Code, ArgoCD, Java 17 & Spring Boot, Redis Distributed Caching, and FIX Protocol for high-scale, low-latency financial systems."
}
},
{
"@type": "Question",
"name": "What industry certifications and education does Jaydeep hold?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Jaydeep holds a Bachelor of Technology (B.Tech) in Computer Engineering from the College of Engineering, Pune (COEP) (GPA: 8.17/10). His active credentials include AWS Certified Developer — Associate, HashiCorp Certified: Terraform Associate, and Certified SAFe® 4 Practitioner."
}
},
{
"@type": "Question",
"name": "How can engineering teams and leadership connect with Jaydeep?",
"acceptedAnswer": {
"@type": "Answer",
"text": "You can connect with Jaydeep directly via email at jaydeepmohite@hotmail.com, call +44 7459 132498, network on LinkedIn at linkedin.com/in/jaydeepmohite, explore code on GitHub at github.com/jaydeepmohite, or submit the direct message form on his website."
}
}
]
}
]
}
</script>
</head>
<body>
<!-- ===================================================================
HEADER & TABBED WORKSPACE DOCK
=================================================================== -->
<header class="site-header">
<div class="wrap">
<div class="header-inner">
<!-- Executive Brand -->
<a href="#overview" class="brand-row">
<div class="avatar-wrapper">
<picture>
<source srcset="images/profilepic.avif" type="image/avif">
<img src="images/profilepic.jpg" alt="Jaydeep Mohite" class="brand-avatar" width="40" height="40" loading="eager" decoding="async">
</picture>
<span class="brand-status-dot"></span>
</div>
<div class="brand-details">
<span class="brand-name">Jaydeep Mohite</span>
<span class="brand-title">VP • Lead DevOps Engineer</span>
</div>
</a>
<!-- Centered Tab Switcher Dock -->
<nav class="nav-tabs-dock" aria-label="Portfolio Workspace Navigation">
<button class="tab-btn active" data-tab="overview">
<i class="fas fa-house"></i> <span>Overview</span>
</button>
<button class="tab-btn" data-tab="work">
<i class="fas fa-folder-open"></i> <span>Projects</span>
</button>
<button class="tab-btn" data-tab="experience">
<i class="fas fa-briefcase"></i> <span>Experience</span>
</button>
<button class="tab-btn" data-tab="skills">
<i class="fas fa-layer-group"></i> <span>Skills</span>
</button>
<button class="tab-btn" data-tab="credentials">
<i class="fas fa-award"></i> <span>Endorsements</span>
</button>
</nav>
<!-- Header Actions -->
<div class="nav-actions">
<button class="btn-icon" id="theme-btn" title="Toggle Theme" aria-label="Toggle Theme">
<i class="fas fa-sun" id="theme-icon"></i>
</button>
<a href="JaydeepMohiteResume.pdf" target="_blank" rel="noopener noreferrer" class="btn btn-secondary" download="Jaydeep_Mohite_Resume.pdf" style="padding: 0.45rem 0.9rem; font-size: 0.82rem;">
<i class="fas fa-file-arrow-down"></i> <span>Resume</span>
</a>
</div>
</div>
</div>
</header>
<!-- ===================================================================
MAIN TABBED WORKSPACE CANVAS
=================================================================== -->
<main class="app-workspace">
<div class="wrap">
<!-- TAB 1: OVERVIEW PANE -->
<div class="tab-pane active" id="tab-overview">
<div class="overview-grid">
<!-- Hero Executive Card -->
<div class="hero-card">
<div>
<div class="status-badge">
<span class="status-dot-pulse"></span>
<span>London, UK • JPM Personal Investing (J.P. Morgan Chase)</span>
</div>
<h1 class="hero-headline">
Architecting Resilient <span class="gradient-text">Cloud Infrastructure</span> & High-Performance FinTech
</h1>
<p class="hero-summary">
Accomplished <strong>Vice President & Lead DevOps Engineer</strong> with <strong>8+ years of expertise</strong> designing zero-downtime AWS EKS platforms, automated Terraform Infrastructure as Code, and low-latency trading risk systems across <strong>J.P. Morgan Chase</strong> and <strong>Deutsche Bank</strong>.
</p>
</div>
<div class="quick-cta-row">
<button class="btn btn-primary" onclick="document.querySelector('[data-tab=work]').click();">
<span>Explore Projects</span> <i class="fas fa-arrow-right"></i>
</button>
<button class="btn btn-secondary" onclick="document.querySelector('[data-tab=experience]').click();">
<span>View Experience</span> <i class="fas fa-briefcase"></i>
</button>
<button class="btn btn-accent" onclick="document.querySelector('[data-tab=credentials]').click();">
<span>Get In Touch</span> <i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
<!-- Metrics Column -->
<div class="stats-column">
<div class="stat-box">
<div class="stat-num blue">8+</div>
<div class="stat-lbl">Years Enterprise Engineering</div>
</div>
<div class="stat-box">
<div class="stat-num cyan">2</div>
<div class="stat-lbl">Tier-1 Global Investment Banks</div>
</div>
<div class="stat-box">
<div class="stat-num emerald">0</div>
<div class="stat-lbl">Downtime AWS EKS Cutover</div>
</div>
<div class="stat-box">
<div class="stat-num blue">>70%</div>
<div class="stat-lbl">Risk Platform Latency Reduction</div>
</div>
</div>
</div>
<!-- Executive Highlights Grid -->
<div class="highlights-row">
<div class="highlight-box">
<div>
<div class="highlight-title">
<i class="fab fa-aws"></i> <span>Current Role Snapshot</span>
</div>
<p class="highlight-desc">
VP Lead DevOps Engineer at JPM Personal Investing (London), leading the flagship multi-account Atlas AWS transformation program and EKS containerization.
</p>
</div>
<button class="btn btn-secondary" style="width:100%; justify-content:space-between; font-size:0.8rem;" onclick="document.querySelector('[data-tab=experience]').click();">
<span>Read Full History</span> <i class="fas fa-arrow-right"></i>
</button>
</div>
<div class="highlight-box">
<div>
<div class="highlight-title">
<i class="fas fa-layer-group"></i> <span>Core Expertise</span>
</div>
<p class="highlight-desc">
Specializing in zero-downtime AWS EKS platforms, automated IaC with Terraform, and low-latency financial microservices.
</p>
</div>
<button class="btn btn-secondary" style="width:100%; justify-content:space-between; font-size:0.8rem;" onclick="document.querySelector('[data-tab=work]').click();">
<span>Explore Projects</span> <i class="fas fa-arrow-right"></i>
</button>
</div>
<div class="highlight-box">
<div>
<div class="highlight-title">
<i class="fas fa-certificate"></i> <span>Top Credentials</span>
</div>
<p class="highlight-desc">
AWS Certified Developer Associate, HashiCorp Terraform Associate, SAFe® 4 Practitioner & Deutsche Bank SPOT Award winner.
</p>
</div>
<button class="btn btn-secondary" style="width:100%; justify-content:space-between; font-size:0.8rem;" onclick="document.querySelector('[data-tab=credentials]').click();">
<span>View Certifications</span> <i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
</div>
<!-- TAB 2: SELECTED WORK PANE -->
<div class="tab-pane" id="tab-work">
<div class="pane-header">
<span class="pane-tag">01 / Projects</span>
<h2 class="pane-title">Selected Architectural Projects</h2>
<p class="pane-desc">High-scale cloud transformations, low-latency trading risk systems, and production platforms.</p>
</div>
<!-- Filters -->
<div class="filter-bar">
<button class="filter-btn active" data-filter="all">All Projects</button>
<button class="filter-btn" data-filter="cloud">Cloud & DevOps</button>
<button class="filter-btn" data-filter="fintech">Low-Latency FinTech</button>
<button class="filter-btn" data-filter="personal">Personal Projects</button>
</div>
<div class="projects-grid">
<!-- Project 2: Atlas Migration -->
<article class="project-card featured" data-category="cloud">
<div>
<div class="project-top-row">
<span class="project-badge"><i class="fab fa-aws"></i> J.P. Morgan Chase</span>
<span class="project-year">2024 — Present</span>
</div>
<h3 class="project-title">Atlas Enterprise Cloud Transformation</h3>
<div class="project-subtitle">JPM Personal Investing • Flagship Modernization</div>
<p class="project-summary">
Spearheaded the multi-account AWS cloud transformation program. Designed modular IaC blueprints with Terraform, orchestrated zero-downtime compute migration onto AWS EKS clusters with HPA and IRSA, and coordinated multi-terabyte Aurora database transfers with strict financial compliance.
</p>
<div class="project-impact">
<i class="fas fa-circle-check"></i>
<span>Zero-downtime cutover • 100% compliance-as-code • Standardized EKS runtime</span>
</div>
<div class="tags-row">
<span class="tag-pill highlight">AWS EKS</span>
<span class="tag-pill highlight">Terraform</span>
<span class="tag-pill">RDS Aurora</span>
<span class="tag-pill">Docker</span>
<span class="tag-pill">Helm</span>
<span class="tag-pill">Zero-Downtime</span>
</div>
</div>
<div class="project-footer">
<span style="color:var(--text-muted); font-size:0.8rem;">
<i class="fas fa-shield-halved"></i> J.P. Morgan Enterprise Platform
</span>
</div>
</article>
<!-- Project 3: RiskOne Engine -->
<article class="project-card" data-category="fintech">
<div>
<div class="project-top-row">
<span class="project-badge"><i class="fas fa-bolt"></i> J.P. Morgan Chase</span>
<span class="project-year">2021 — 2024</span>
</div>
<h3 class="project-title">RiskOne Real-Time Risk Engine</h3>
<div class="project-subtitle">Post-Trade Risk & Kill-Switch System</div>
<p class="project-summary">
Served as Lead Engineer on RiskOne, handling millions of daily trading events. Architected in-memory caching migration from legacy relational databases to a distributed low-latency Redis cache with real-time updates, reducing latency by over 70%.
</p>
<div class="project-impact">
<i class="fas fa-circle-check"></i>
<span>>70% latency reduction • FIX protocol handlers • Chronicle off-heap queues</span>
</div>
<div class="tags-row">
<span class="tag-pill highlight">Java 17</span>
<span class="tag-pill highlight">Spring Boot</span>
<span class="tag-pill">Chronicle</span>
<span class="tag-pill">FIX Protocol</span>
<span class="tag-pill">Redis</span>
<span class="tag-pill">AWS</span>
</div>
</div>
<div class="project-footer">
<span style="color:var(--text-muted); font-size:0.8rem;">
<i class="fas fa-shield-halved"></i> J.P. Morgan Strategic Engine
</span>
</div>
</article>
<!-- Project 4: dbPalace Platform -->
<article class="project-card" data-category="fintech cloud">
<div>
<div class="project-top-row">
<span class="project-badge"><i class="fas fa-building-columns"></i> Deutsche Bank</span>
<span class="project-year">2017 — 2021</span>
</div>
<h3 class="project-title">dbPalace Global P&L Platform</h3>
<div class="project-subtitle">Straight-Through Processing Engine</div>
<p class="project-summary">
Architected straight-through P&L accounting workflows for global trading desks. Redesigned trade sign-offs from polling to an event-driven push model using WebSockets & IBM MQ on OpenShift Cloud. Engineered in-house React reporting suite (IHAP) replacing IBM Cognos.
</p>
<div class="project-impact">
<i class="fas fa-circle-check"></i>
<span>Sub-second trade sign-off • Cognos decommissioned • OpenShift deployment</span>
</div>
<div class="tags-row">
<span class="tag-pill highlight">Spring Boot</span>
<span class="tag-pill">WebSockets</span>
<span class="tag-pill">IBM MQ</span>
<span class="tag-pill">OpenShift</span>
<span class="tag-pill">React</span>
<span class="tag-pill">Cucumber</span>
</div>
</div>
<div class="project-footer">
<span style="color:var(--text-muted); font-size:0.8rem;">
<i class="fas fa-shield-halved"></i> Deutsche Bank Core Platform
</span>
</div>
</article>
<!-- Project 4: Digital Planner -->
<article class="project-card" data-category="fintech">
<div>
<div class="project-top-row">
<span class="project-badge"><i class="fas fa-users"></i> Deutsche Bank</span>
<span class="project-year">2019 — 2020</span>
</div>
<h3 class="project-title">Digital Planner SAFe PI Tool</h3>
<div class="project-subtitle">Real-Time Collaborative Web App</div>
<p class="project-summary">
Engineered a low-latency real-time collaborative planning application for distributed engineering teams. Features live state synchronization, WebSocket broadcasting, and Redis session caching supporting 200+ engineers globally.
</p>
<div class="project-impact">
<i class="fas fa-circle-check"></i>
<span>Empowered 200+ engineers globally &bull; Real-time WebSocket sync</span>
</div>
<div class="tags-row">
<span class="tag-pill highlight">Node.js</span>
<span class="tag-pill">Angular</span>
<span class="tag-pill">WebSockets</span>
<span class="tag-pill">Redis</span>
<span class="tag-pill">JavaScript</span>
</div>
</div>
<div class="project-footer">
<span style="color:var(--text-muted); font-size:0.8rem;">
<i class="fas fa-shield-halved"></i> Deutsche Bank Agile Engineering
</span>
</div>
</article>
<!-- Project 5: Multi-Broker & Bank Portfolio Aggregator -->
<article class="project-card" data-category="personal fintech">
<div>
<div class="project-top-row">
<span class="project-badge"><i class="fas fa-laptop-code"></i> Personal Project</span>
<span class="project-year">2025 — Present</span>
</div>
<h3 class="project-title">Multi-Broker & Bank Portfolio Aggregator</h3>
<div class="project-subtitle">Full-Stack Progressive Web App (PWA)</div>
<p class="project-summary">
Architected and deployed a full-stack Progressive Web App (PWA) that consolidates real-time holdings, cash balances, and net worth across multiple brokerage accounts and banking institutions into a single unified dashboard. Features automated 2FA TOTP authentication, 256-bit AES credential encryption, secure cloud secrets resolution, and SQLite WAL persistence.
</p>
<div class="project-impact">
<i class="fas fa-circle-check"></i>
<span>Unified net worth dashboard • Modular multi-broker adapters • 100% test coverage</span>
</div>
<div class="tags-row">
<span class="tag-pill highlight">Python</span>
<span class="tag-pill highlight">FastAPI</span>
<span class="tag-pill">Docker</span>
<span class="tag-pill">Cloud Vault</span>
<span class="tag-pill">SQLite WAL</span>
<span class="tag-pill">PWA</span>
</div>
</div>
<div class="project-footer">
<a href="https://netwealth.tech" target="_blank" rel="noopener noreferrer" class="project-link">
<span>netwealth.tech</span> <i class="fas fa-arrow-up-right-from-square"></i>
</a>
<a href="https://github.com/jaydeepmohite" target="_blank" rel="noopener noreferrer" class="project-link" style="color:var(--text-muted);">
<span>GitHub</span> <i class="fab fa-github"></i>
</a>
</div>
</article>
</div>
</div>
<!-- TAB 3: EXPERIENCE PANE (INTERACTIVE COMPANY SWITCHER) -->
<div class="tab-pane" id="tab-experience">
<div class="pane-header">
<span class="pane-tag">02 / Career History</span>
<h2 class="pane-title">Professional Experience</h2>
<p class="pane-desc">Select a company from the list to view engineering responsibilities, architectural impact, and technical achievements.</p>
</div>
<div class="exp-layout">
<!-- Company Switcher List -->
<div class="company-tabs-list">
<button class="company-tab-btn active" data-company="jpmc_uk">
<span class="co-name">J.P. Morgan Chase & Co.</span>
<span class="co-role">Vice President — Lead DevOps</span>
<span class="co-period">June 2024 — Present • London, UK 🇬🇧</span>
</button>
<button class="company-tab-btn" data-company="jpmc_in">
<span class="co-name">J.P. Morgan Chase & Co.</span>
<span class="co-role">AVP — Software Engineer</span>
<span class="co-period">June 2021 — June 2024 • Bengaluru 🇮🇳</span>
</button>
<button class="company-tab-btn" data-company="db_in">
<span class="co-name">Deutsche Bank Group</span>
<span class="co-role">Associate • Senior Analyst</span>
<span class="co-period">July 2017 — June 2021 • Pune 🇮🇳</span>
</button>
<button class="company-tab-btn" data-company="early_career">
<span class="co-name">Early Career & Internships</span>
<span class="co-role">Mastercard & Choose To Thinq</span>
<span class="co-period">May 2016 — April 2017 • Pune 🇮🇳</span>
</button>
</div>
<!-- Company Detail Panel -->
<div class="company-detail-panel">
<div class="role-header">
<h3 class="role-title" id="co-role-title">Vice President — Lead DevOps Engineer</h3>
<span class="role-period-tag" id="co-role-period">June 2024 — Present</span>
</div>
<div class="role-firm" id="co-role-firm">
<span>JPM Personal Investing Limited • J.P. Morgan Chase & Co.</span>
<span style="font-size:0.78rem; font-family:var(--font-mono); color:var(--text-muted);"><i class="fas fa-location-dot"></i> London, UK 🇬🇧</span>
</div>
<div class="role-bullets" id="co-role-bullets">
<div class="role-bullet">Lead DevOps and cloud infrastructure initiatives for <strong>JPM Personal Investing</strong>, establishing scalable infrastructure patterns, strict security posture, and high developer velocity across engineering squads.</div>
<div class="role-bullet">Spearheaded the flagship <strong>Atlas Migration</strong> program, migrating business-critical workloads and distributed data stores from standalone legacy AWS accounts to enterprise-standard J.P. Morgan Chase managed AWS accounts with <strong>zero downtime</strong>.</div>
<div class="role-bullet">Architected and executed end-to-end <strong>compute migration to AWS EKS</strong> (Elastic Kubernetes Service), standardizing container runtime environments, Horizontal Pod Autoscaling (HPA), and least-privilege IAM Roles for Service Accounts (IRSA).</div>
<div class="role-bullet">Orchestrated high-volume, secure <strong>data migrations</strong> across cloud databases (RDS/Aurora) and object storage with strict transactional integrity and zero data loss.</div>
<div class="role-bullet">Engineered reusable, modular Infrastructure as Code (IaC) using <strong>Terraform</strong>, automating multi-account VPC networking, security guardrails, and compliance-as-code policies.</div>
<div class="role-bullet">Standardized enterprise <strong>CI/CD pipelines</strong> using Jenkins, Docker, and Helm, incorporating automated security scanning, quality gates, and automated canary/blue-green deployments.</div>
</div>
<div class="tags-row" id="co-role-tags">
<span class="tag-pill highlight">AWS EKS</span>
<span class="tag-pill highlight">Terraform</span>
<span class="tag-pill">Docker</span>
<span class="tag-pill">Helm</span>
<span class="tag-pill">RDS Aurora</span>
<span class="tag-pill">Jenkins</span>
<span class="tag-pill">Zero-Downtime</span>
</div>
</div>
</div>
</div>
<!-- TAB 4: SKILLS & MATRIX PANE -->
<div class="tab-pane" id="tab-skills">
<div class="pane-header">
<span class="pane-tag">03 / Expertise</span>
<h2 class="pane-title">Core Competencies & Technical Matrix</h2>
<p class="pane-desc">A structured technical map across cloud native infrastructure, low-latency engineering, and platform reliability.</p>
</div>
<div class="skills-grid">
<!-- Card 1 -->
<div class="skill-card">
<div class="skill-card-head">
<div class="skill-icon-box"><i class="fas fa-cloud"></i></div>
<h3 class="skill-card-title">Cloud & Infrastructure</h3>
</div>
<div class="tags-row">
<span class="tag-pill highlight">AWS EKS</span>
<span class="tag-pill highlight">Terraform (IaC)</span>
<span class="tag-pill">AWS EC2 / S3</span>
<span class="tag-pill">RDS / Aurora</span>
<span class="tag-pill">IAM & IRSA</span>
<span class="tag-pill">VPC Networking</span>
<span class="tag-pill">Kubernetes (k8s)</span>
<span class="tag-pill">Docker</span>
<span class="tag-pill">Helm</span>
<span class="tag-pill">OpenShift Cloud</span>
<span class="tag-pill">Linux Internals</span>
</div>
</div>
<!-- Card 2 -->
<div class="skill-card">
<div class="skill-card-head">
<div class="skill-icon-box"><i class="fas fa-gears"></i></div>
<h3 class="skill-card-title">CI/CD & SRE Tools</h3>
</div>
<div class="tags-row">
<span class="tag-pill highlight">Jenkins Pipeline-as-Code</span>
<span class="tag-pill highlight">ArgoCD & GitOps</span>
<span class="tag-pill">SonarQube</span>
<span class="tag-pill">CloudWatch</span>
<span class="tag-pill">Maven</span>
<span class="tag-pill">BitBucket / Git</span>
<span class="tag-pill">JIRA & Confluence</span>
</div>
</div>
<!-- Card 3 -->
<div class="skill-card">
<div class="skill-card-head">
<div class="skill-icon-box"><i class="fas fa-code"></i></div>
<h3 class="skill-card-title">Languages & Core Systems</h3>
</div>
<div class="tags-row">
<span class="tag-pill highlight">Java (8 / 11 / 17)</span>
<span class="tag-pill highlight">Spring Boot</span>
<span class="tag-pill">Chronicle (Low Latency)</span>
<span class="tag-pill">Python</span>
<span class="tag-pill">Bash / Shell</span>
<span class="tag-pill">FIX Protocol</span>
<span class="tag-pill">TypeScript & React</span>
<span class="tag-pill">Angular</span>
<span class="tag-pill">Groovy</span>
<span class="tag-pill">SQL</span>
</div>
</div>
<!-- Card 4 -->
<div class="skill-card">
<div class="skill-card-head">
<div class="skill-icon-box"><i class="fas fa-database"></i></div>
<h3 class="skill-card-title">Databases & Messaging</h3>
</div>
<div class="tags-row">
<span class="tag-pill highlight">Redis (In-Memory Caching)</span>
<span class="tag-pill">PostgreSQL</span>
<span class="tag-pill">Oracle DB</span>
<span class="tag-pill">IBM MQ</span>
<span class="tag-pill">WebSockets</span>
<span class="tag-pill">Apache Kafka</span>
<span class="tag-pill">MongoDB</span>
<span class="tag-pill">Tibco EMS</span>
</div>
</div>
<!-- Card 5 -->
<div class="skill-card">
<div class="skill-card-head">
<div class="skill-icon-box"><i class="fas fa-shield"></i></div>
<h3 class="skill-card-title">Practices & SRE</h3>
</div>
<div class="tags-row">
<span class="tag-pill highlight">Platform Engineering</span>
<span class="tag-pill highlight">Site Reliability (SRE)</span>
<span class="tag-pill">Zero-Downtime Cutover</span>
<span class="tag-pill">Compliance-as-Code</span>
<span class="tag-pill">Scaled Agile (SAFe)</span>
<span class="tag-pill">Microservices Architecture</span>
<span class="tag-pill">BDD Automation</span>
</div>
</div>
</div>
</div>
<!-- TAB 5: ENDORSEMENTS & CONTACT PANE -->
<div class="tab-pane" id="tab-credentials">
<div class="pane-header">
<span class="pane-tag">04 / Endorsements & Contact</span>
<h2 class="pane-title">Certifications, Endorsements & Connect</h2>
<p class="pane-desc">Industry credentials, peer recommendations, and direct channels for engineering leadership inquiries.</p>
</div>
<div class="endorse-layout">
<!-- Column 1: Certifications & Education -->
<div>
<h3 style="font-size:1.1rem; font-weight:700; margin-bottom:0.85rem; color:var(--text-primary);">
<i class="fas fa-certificate" style="color:var(--accent-blue);"></i> Industry Certifications & Awards
</h3>
<div class="cred-box">
<div class="cred-icon"><i class="fab fa-aws"></i></div>
<div>
<div class="cred-info-title">AWS Certified Developer — Associate</div>
<div class="cred-info-meta">Amazon Web Services • Valid Nov 2025</div>
</div>
</div>
<div class="cred-box">
<div class="cred-icon"><i class="fas fa-cubes"></i></div>
<div>
<div class="cred-info-title">HashiCorp Certified: Terraform Associate</div>
<div class="cred-info-meta">HashiCorp • Valid July 2025</div>
</div>
</div>
<div class="cred-box">
<div class="cred-icon"><i class="fas fa-layer-group"></i></div>
<div>
<div class="cred-info-title">Certified SAFe® 4 Practitioner</div>
<div class="cred-info-meta">Scaled Agile Framework • Oct 2018</div>
</div>
</div>
<div class="cred-box">
<div class="cred-icon"><i class="fas fa-award"></i></div>
<div>
<div class="cred-info-title">Deutsche Bank Recognition & SPOT Awards</div>
<div class="cred-info-meta">Deutsche Bank Group • Outstanding Reporting Architecture</div>
</div>
</div>
<h3 style="font-size:1.1rem; font-weight:700; margin-top:1.75rem; margin-bottom:0.85rem; color:var(--text-primary);">
<i class="fas fa-graduation-cap" style="color:var(--accent-cyan);"></i> Education
</h3>
<div style="background-color:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-md); padding:1rem 1.2rem; margin-bottom:0.75rem;">
<div style="font-size:0.92rem; font-weight:700; color:var(--text-primary);">Bachelor of Technology (B.Tech) — Computer Engineering</div>
<div style="font-size:0.82rem; color:var(--accent-cyan);">College of Engineering, Pune (COEP) • GPA: 8.17 / 10.0</div>
</div>
<div style="background-color:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-md); padding:1rem 1.2rem;">
<div style="font-size:0.92rem; font-weight:700; color:var(--text-primary);">Diploma in Computer Engineering</div>
<div style="font-size:0.82rem; color:var(--accent-cyan);">Government Polytechnic, Pune • Score: 92.06%</div>
</div>
</div>
<!-- Column 2: Testimonials -->
<div>
<h3 style="font-size:1.1rem; font-weight:700; margin-bottom:0.85rem; color:var(--text-primary);">
<i class="fas fa-quote-left" style="color:var(--accent-indigo);"></i> Peer Endorsements
</h3>
<div class="test-card">
<p class="test-quote">
"Jaydeep is the most brilliant person I have ever worked with. His skill set is so diverse that you name something and there are chances that he already knows it. His learning attitude makes him the ideal person one should look up to."
</p>
<div class="test-author-row">
<div class="test-initials">RS</div>
<div>
<div style="font-size:0.86rem; font-weight:700; color:var(--text-primary);">Rishabh Sareen</div>
<div style="font-size:0.75rem; color:var(--text-muted);">Engineer at Goldman Sachs</div>
</div>
</div>
</div>
<div class="test-card">
<p class="test-quote">
"Jaydeep is one of the most brilliant colleagues I've ever known. Apart from the great breadth of skills which he possesses in web development, I've witnessed him drive product releases and spearhead various projects within the organization."
</p>
<div class="test-author-row">
<div class="test-initials">AS</div>
<div>
<div style="font-size:0.86rem; font-weight:700; color:var(--text-primary);">Abhinav Singh</div>
<div style="font-size:0.75rem; color:var(--text-muted);">Staff Software Engineer I at Harness</div>
</div>
</div>
</div>
<div class="test-card">
<p class="test-quote">
"Jaydeep is the heart of the web-team project and excels at web development, cloud architectures, and software engineering. He leads by example and brings great value to any team."
</p>
<div class="test-author-row">
<div class="test-initials">UM</div>
<div>
<div style="font-size:0.86rem; font-weight:700; color:var(--text-primary);">Udit Mehta</div>
<div style="font-size:0.75rem; color:var(--text-muted);">Senior Software Engineer at Microsoft</div>
</div>
</div>
</div>
</div>
</div>
<!-- FAQ Section for Search Engine Rich Cards & Executive Queries -->
<div class="faq-section-block">
<div class="pane-header" style="margin-bottom: 1.25rem;">
<span class="pane-tag">Executive FAQ</span>
<h3 class="pane-title" style="font-size: 1.25rem;">Frequently Asked Questions</h3>
</div>
<div class="faq-accordion">
<details class="faq-item" open>
<summary class="faq-question">
<span>What is Jaydeep Mohite's current role and architectural focus?</span>
<i class="fas fa-chevron-down faq-chevron"></i>
</summary>
<div class="faq-answer">
<p>Jaydeep is a <strong>Vice President & Lead DevOps Engineer</strong> at <strong>JPM Personal Investing (J.P. Morgan Chase & Co.)</strong> in London, UK. He leads enterprise multi-account AWS cloud transformation programs (Atlas), designing zero-downtime AWS EKS compute platforms, automated Terraform Infrastructure as Code (IaC), and resilient SRE guardrails.</p>
</div>
</details>
<details class="faq-item">
<summary class="faq-question">
<span>What core cloud platforms, languages, and tools does Jaydeep specialize in?</span>
<i class="fas fa-chevron-down faq-chevron"></i>
</summary>
<div class="faq-answer">
<p>Jaydeep specializes in <strong>AWS</strong> (EKS, RDS/Aurora, VPC, IRSA, IAM), <strong>Terraform (IaC)</strong>, <strong>Kubernetes</strong>, <strong>Docker</strong>, <strong>Helm</strong>, <strong>Jenkins Pipeline-as-Code</strong>, <strong>ArgoCD</strong>, <strong>Java 17 & Spring Boot</strong>, <strong>Redis Distributed Caching</strong>, and <strong>FIX Protocol</strong> for high-scale, low-latency financial systems.</p>
</div>
</details>
<details class="faq-item">
<summary class="faq-question">
<span>What industry certifications and education does Jaydeep hold?</span>
<i class="fas fa-chevron-down faq-chevron"></i>
</summary>
<div class="faq-answer">
<p>Jaydeep holds a <strong>Bachelor of Technology (B.Tech) in Computer Engineering</strong> from the prestigious <strong>College of Engineering, Pune (COEP)</strong> (GPA: 8.17/10). His active credentials include <strong>AWS Certified Developer — Associate</strong>, <strong>HashiCorp Certified: Terraform Associate</strong>, and <strong>Certified SAFe® 4 Practitioner</strong>.</p>
</div>
</details>
<details class="faq-item">
<summary class="faq-question">
<span>How can engineering teams and leadership connect with Jaydeep?</span>
<i class="fas fa-chevron-down faq-chevron"></i>
</summary>
<div class="faq-answer">
<p>You can connect with Jaydeep directly via email at <a href="mailto:jaydeepmohite@hotmail.com">jaydeepmohite@hotmail.com</a>, call <a href="tel:+447459132498">+44 7459 132498</a>, network on <a href="https://www.linkedin.com/in/jaydeepmohite" target="_blank" rel="noopener noreferrer">LinkedIn</a>, explore code on <a href="https://github.com/jaydeepmohite" target="_blank" rel="noopener noreferrer">GitHub</a>, or submit the direct message form below.</p>
</div>
</details>
</div>
</div>
<!-- Direct Contact Section Below -->
<div class="contact-section-grid">
<!-- Channels List -->
<div>
<div class="contact-card-item">
<div class="contact-item-left">
<div class="contact-item-icon"><i class="fas fa-location-dot"></i></div>
<div>
<div class="contact-lbl">Location</div>
<div class="contact-val">London, United Kingdom 🇬🇧</div>
</div>
</div>
</div>
<div class="contact-card-item">
<div class="contact-item-left">
<div class="contact-item-icon"><i class="fas fa-envelope"></i></div>
<div>
<div class="contact-lbl">Email</div>
<div class="contact-val"><a href="mailto:jaydeepmohite@hotmail.com">jaydeepmohite@hotmail.com</a></div>
</div>
</div>
<button class="btn-mini-action" data-copy="jaydeepmohite@hotmail.com" title="Copy Email">Copy</button>
</div>
<div class="contact-card-item">
<div class="contact-item-left">
<div class="contact-item-icon"><i class="fas fa-phone"></i></div>
<div>
<div class="contact-lbl">Mobile</div>
<div class="contact-val"><a href="tel:+447459132498">+44 7459 132498</a></div>
</div>
</div>
<button class="btn-mini-action" data-copy="+447459132498" title="Copy Mobile">Copy</button>
</div>
<div class="contact-card-item">
<div class="contact-item-left">
<div class="contact-item-icon"><i class="fab fa-linkedin-in"></i></div>
<div>
<div class="contact-lbl">LinkedIn</div>
<div class="contact-val"><a href="https://www.linkedin.com/in/jaydeepmohite" target="_blank" rel="noopener noreferrer">linkedin.com/in/jaydeepmohite</a></div>
</div>
</div>
<a href="https://www.linkedin.com/in/jaydeepmohite" target="_blank" rel="noopener noreferrer" class="btn-mini-action">Open</a>
</div>
<div class="contact-card-item">
<div class="contact-item-left">
<div class="contact-item-icon"><i class="fab fa-github"></i></div>
<div>
<div class="contact-lbl">GitHub</div>
<div class="contact-val"><a href="https://github.com/jaydeepmohite" target="_blank" rel="noopener noreferrer">github.com/jaydeepmohite</a></div>
</div>
</div>
<a href="https://github.com/jaydeepmohite" target="_blank" rel="noopener noreferrer" class="btn-mini-action">Open</a>
</div>
</div>
<!-- Direct Form -->
<div class="contact-form-box">
<h3 style="font-size:1.05rem; font-weight:700; margin-bottom:1rem; color:var(--text-primary);">Send a Direct Message</h3>
<form id="contact-form">
<div class="form-group">
<label for="contact-name" class="form-label">Your Name</label>
<input type="text" id="contact-name" class="form-input" placeholder="e.g. Alex Morgan" required>
</div>
<div class="form-group">