-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
608 lines (533 loc) · 24.5 KB
/
index.html
File metadata and controls
608 lines (533 loc) · 24.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Suds Kumar - Resume</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary-color: #4285F4; /* Google Cloud blue */
--secondary-color: #24292e;
--light-color: #f6f8fa;
--text-color: #24292e;
--border-color: #e1e4e8;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: #fff;
}
a {
color: var(--primary-color);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}
header {
background-color: var(--secondary-color);
color: white;
padding: 40px 0;
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.profile-pic {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
border: 3px solid white;
}
.header-text {
flex: 1;
padding-left: 30px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
.tagline {
font-size: 1.2rem;
opacity: 0.9;
margin-bottom: 15px;
}
.contact-info {
margin-bottom: 15px;
}
.contact-info span {
margin-right: 15px;
display: inline-flex;
align-items: center;
}
.contact-info i {
margin-right: 5px;
}
.social-links {
display: flex;
gap: 15px;
margin-top: 15px;
}
.social-links a {
color: white;
font-size: 1.2rem;
}
.about {
background-color: var(--light-color);
padding: 40px 0;
}
section {
padding: 40px 0;
border-bottom: 1px solid var(--border-color);
}
section:last-child {
border-bottom: none;
}
h2 {
font-size: 1.8rem;
margin-bottom: 25px;
color: var(--secondary-color);
position: relative;
padding-bottom: 10px;
}
h2::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 3px;
background-color: var(--primary-color);
}
.job, .education-item, .skill-category, .project, .certification-item {
margin-bottom: 30px;
}
.job:last-child, .education-item:last-child, .skill-category:last-child, .project:last-child, .certification-item:last-child {
margin-bottom: 0;
}
.job-header, .edu-header, .project-header, .cert-header {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
flex-wrap: wrap;
}
.job-title, .degree, .project-name, .cert-name {
font-size: 1.3rem;
font-weight: bold;
color: var(--primary-color);
}
.company, .school {
font-weight: bold;
}
.date {
color: #586069;
}
.location {
font-style: italic;
color: #586069;
margin-top: 5px;
}
.job-desc, .edu-desc, .project-desc {
margin-top: 10px;
}
.job-desc ul, .project-desc ul {
padding-left: 20px;
margin-top: 10px;
}
.job-desc li, .project-desc li {
margin-bottom: 8px;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}
.skill-category h3 {
margin-bottom: 15px;
font-size: 1.2rem;
}
.skills-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.skill-tag {
background-color: var(--light-color);
border: 1px solid var(--border-color);
border-radius: 15px;
padding: 5px 15px;
font-size: 0.9rem;
}
.highlight-tag {
background-color: rgba(66, 133, 244, 0.1);
border: 1px solid var(--primary-color);
}
.certifications-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
footer {
background-color: var(--secondary-color);
color: white;
text-align: center;
padding: 20px 0;
margin-top: 40px;
}
@media (max-width: 768px) {
.header-content {
flex-direction: column;
text-align: center;
}
.header-text {
padding-left: 0;
margin-top: 20px;
}
.social-links {
justify-content: center;
}
.job-header, .edu-header, .project-header, .cert-header {
flex-direction: column;
}
.date {
margin-top: 5px;
}
.skills-grid, .certifications-grid {
grid-template-columns: 1fr;
}
.contact-info {
display: flex;
flex-direction: column;
align-items: center;
}
.contact-info span {
margin-bottom: 8px;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<img src="/api/placeholder/150/150" alt="Suds Kumar" class="profile-pic">
<div class="header-text">
<h1>Suds Kumar</h1>
<p class="tagline">Google Cloud Solution Architect | Pre-Sales | Go-To-Market | Consulting | Advisory | Data & AI | 5xGCP</p>
<div class="contact-info">
<span><i class="fas fa-map-marker-alt"></i> Watford, London Area, UK</span>
<span><i class="fas fa-phone"></i> 07933020075</span>
<span><i class="fas fa-envelope"></i> suds123@gmail.com</span>
</div>
<div class="social-links">
<a href="https://github.com/sudsk" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/sudskumar/" target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</header>
<section class="about">
<div class="container">
<h2>About Me</h2>
<p>I am a Data Cloud expert and technologist who enjoys solving complex data & design challenges and architecting and engineering solutions on Cloud. With extensive experience in advising and architecting for customers in cloud data transformation, I provide solutions and recommendations for making the best use of the Cloud platform.</p>
<p>My expertise spans solutions architecture, data engineering, data platform infrastructure, databases, data ingestion, data strategy & roadmap, data warehouse, data lakes, data modeling, data migration, data movement, data governance, metadata management, data provenance, data mesh, data virtualisation, data catalog, analytics & insights, AI & ML, DevOps, and security.</p>
<p>I lead data technology consulting, thought leadership, technical evangelism, design sessions, solution workshops, and architecture engagements for Financial Services customers. I'm also experienced in pre-sales, go-to-market offerings, assets, products & solutions, ideation, working with product managers, enhancements & innovations.</p>
<p>I bring best practices and experience from various industries including Payments, Investment Banking, Telecommunications, Leasing & Financing, Retail, and more.</p>
</div>
</section>
<section class="experience">
<div class="container">
<h2>Work Experience</h2>
<div class="job">
<div class="job-header">
<div class="job-title">Senior GCP Architect</div>
<div class="date">August 2023 - Present</div>
</div>
<div class="company">EPAM Systems</div>
<div class="location">London, England, United Kingdom</div>
</div>
<div class="job">
<div class="job-header">
<div class="job-title">Data Lead | GCP Architect | Director | Financial Services</div>
<div class="date">May 2021 - July 2023</div>
</div>
<div class="company">Capgemini</div>
<div class="location">London, England, United Kingdom</div>
<div class="job-desc">
<ul>
<li>Drove accelerated growth in Capgemini global Google Cloud portfolio and advised customers in making the best use of the GCP platform</li>
<li>Created GCP data offering and solutions for Capgemini Financial Services</li>
<li>Led GCP chapter of tech practitioners in UK</li>
<li>Led technology consulting and architecture engagements through pre-sales phase for Financial Services customers</li>
</ul>
</div>
</div>
<div class="job">
<div class="job-header">
<div class="job-title">Senior Cloud Architect | Data Tech & Analytics</div>
<div class="date">June 2019 - May 2021</div>
</div>
<div class="company">Sky</div>
<div class="location">London, United Kingdom</div>
<div class="job-desc">
<ul>
<li>Accountable for the design of Google Cloud Platform solutions, and other on-prem platforms, to meet Sky's objective to use data for the benefit of our customers and internal stakeholders by designing platforms that store and process data</li>
<li>Delivered Jobs-as-code automation, which significantly reduced time by 70% for productionizing workflows</li>
</ul>
</div>
</div>
<div class="job">
<div class="job-header">
<div class="job-title">Data Solution Architect | Digital</div>
<div class="date">March 2016 - June 2019</div>
</div>
<div class="company">Worldpay</div>
<div class="location">London, United Kingdom</div>
<div class="job-desc">
<ul>
<li>Redesigned Digital POS (point-of-sale) backend database and REST APIs which improved the performance of the application by 40%</li>
<li>Designed data architecture and integration of Digital Platform with New Acquiring Platform</li>
<li>Led the architecture, design and implementation of key portal based strategic products such as merchant dashboard and point-of-sale application</li>
<li>Contributed to portals and data related strategy road mapping</li>
<li>Architected and designed data movements through messaging, ETL, application transformations</li>
<li>A key member of the Data Working Group and Technical Design Authority boards</li>
</ul>
</div>
</div>
<div class="job">
<div class="job-header">
<div class="job-title">Senior Tech Architect | BI & Big Data</div>
<div class="date">January 2013 - February 2016</div>
</div>
<div class="company">Infosys</div>
<div class="location">London, United Kingdom</div>
<div class="job-desc">
<ul>
<li>Positioned and designed solutions for financial services customers with Infosys Big Data platform and services; involved in 6 pre-sales opportunities, with 4 converting into the sale of Infosys services</li>
<li>Designed Data Archival (WORM) platform for Investment Banking client resulting in client able to comply with Dodd-Frank Record retention regulations within six months, thereby avoiding the risk of penalties</li>
<li>Designed EU Financial Transaction Tax reporting solution for Investment Banking client, allowing the client to report and pay tax, thereby avoiding the risk of penalties</li>
<li>Led Finance, Risk, Treasury Analytics for retail banking giant under their multi-million transformation programme of their retail banking business</li>
</ul>
</div>
</div>
<div class="job">
<div class="job-header">
<div class="job-title">Business Intelligence Architect</div>
<div class="date">January 2011 - January 2013</div>
</div>
<div class="company">Peak Indicators Limited</div>
<div class="job-desc">
<ul>
<li>UK wide Oracle BI Consulting in the areas of OBIEE, OBIA, Informatica and ODI</li>
<li>Conducted 5 Oracle University training programs for ODI 10g & 11g</li>
</ul>
</div>
</div>
<div class="job">
<div class="job-header">
<div class="job-title">Business Intelligence Solution Architect</div>
<div class="date">June 2010 - November 2010</div>
</div>
<div class="company">Logica</div>
<div class="job-desc">
<ul>
<li>Involved in pre-sales and BI practice support</li>
<li>Customer presentations, demos & workshops in Logica's Oracle BI capabilities</li>
</ul>
</div>
</div>
<div class="job">
<div class="job-header">
<div class="job-title">Business Intelligence Specialist</div>
<div class="date">April 2009 - May 2010</div>
</div>
<div class="company">Wm Morrison Supermarkets Plc</div>
<div class="job-desc">
<ul>
<li>Implemented Retail EDW using foundation model provided by ORDM (Oracle Retail Data Model)</li>
<li>The system used ODI & PL/SQL as ETL and OBIEE as Reporting tools and provided advanced Analytics capabilities using Oracle OLAP and Data Mining</li>
</ul>
</div>
</div>
<div class="job">
<div class="job-header">
<div class="job-title">Senior Consultant | BI/DW</div>
<div class="date">March 2008 - April 2009</div>
</div>
<div class="company">Oracle</div>
<div class="job-desc">
<ul>
<li>EMEA + APAC customer consulting in BI & DW area</li>
<li>Key projects: DataHub solution for H3G (Milan, Italy), MIS Reporting Solution for Wilkinson (UK), Corporate Reporting Solution for Romtelecom (Romania), DW Architect for BCR Bank (Romania), Solution Assessment for Raiffeisen Bank (Romania), DW Health Check for MTRC (Hong Kong), Oracle Mobile Knowledge Solution for Celtel</li>
</ul>
</div>
</div>
<div class="job">
<div class="job-header">
<div class="job-title">Technical Architect</div>
<div class="date">June 2006 - February 2008</div>
</div>
<div class="company">Tech Mahindra</div>
<div class="location">London, United Kingdom, Hon-Atsugi, Japan</div>
<div class="job-desc">
<ul>
<li>Service provisioning and service delivery datamarts and dashboards using OWB & OBIEE tools at British Telecom Global Services, UK</li>
<li>CRM Data Hub, Single View, CRM for Sky Broadband Launch - for ClarityBlue, UK</li>
<li>Supply Chain Management Data Hub for Nissan, Japan using Ab-Initio</li>
</ul>
</div>
</div>
<div class="job">
<div class="job-header">
<div class="job-title">Advisiory IT Specialist</div>
<div class="date">December 2004 - June 2006</div>
</div>
<div class="company">IBM Global Services</div>
<div class="location">Kolkata, India</div>
<div class="job-desc">
<ul>
<li>Enterprise Data Warehouse for AOL using Ab-Initio, Netezza, Redbrick, Perl</li>
</ul>
</div>
</div>
<div class="job">
<div class="job-header">
<div class="job-title">System Analyst</div>
<div class="date">September 2000 - October 2004</div>
</div>
<div class="company">Churchill Insurance</div>
<div class="job-desc">
<ul>
<li>Data integration, Batch & MIS projects using PL/SQL and Pro*C for Churchill Insurance, UK</li>
</ul>
</div>
</div>
</div>
</section>
<section class="education">
<div class="container">
<h2>Education</h2>
<div class="education-item">
<div class="edu-header">
<div class="degree">MBA, Finance</div>
<div class="date">2010 - 2013</div>
</div>
<div class="school">Amity University</div>
</div>
<div class="education-item">
<div class="edu-header">
<div class="degree">Executive Program in Business Management, General Management</div>
<div class="date">2005 - 2006</div>
</div>
<div class="school">Indian Institute of Management, Calcutta</div>
</div>
<div class="education-item">
<div class="edu-header">
<div class="degree">Bachelor of Engineering (Honours), Computer Science & Engineering</div>
<div class="date">1996 - 2000</div>
</div>
<div class="school">Utkal University</div>
</div>
</div>
</section>
<section class="certifications">
<div class="container">
<h2>Certifications</h2>
<div class="certifications-grid">
<div class="certification-item">
<div class="cert-name">Oracle 11g Data Warehousing Certified Implementation Specialist</div>
</div>
<div class="certification-item">
<div class="cert-name">Oracle Business Intelligence Certified Implementation Specialist</div>
</div>
<div class="certification-item">
<div class="cert-name">PRINCE2 Foundation</div>
</div>
</div>
</div>
</section>
<section class="skills">
<div class="container">
<h2>Skills</h2>
<div class="skills-grid">
<div class="skill-category">
<h3>Top Skills</h3>
<div class="skills-list">
<span class="skill-tag highlight-tag">Data Migration</span>
<span class="skill-tag highlight-tag">Machine Learning</span>
<span class="skill-tag highlight-tag">Vertex AI</span>
<span class="skill-tag highlight-tag">Google Cloud Platform</span>
<span class="skill-tag highlight-tag">Solution Architecture</span>
</div>
</div>
<div class="skill-category">
<h3>Cloud & Infrastructure</h3>
<div class="skills-list">
<span class="skill-tag">Google Cloud Platform (GCP)</span>
<span class="skill-tag">Cloud Architecture</span>
<span class="skill-tag">Data Platform Infrastructure</span>
<span class="skill-tag">Cloud Migration</span>
<span class="skill-tag">DevOps</span>
</div>
</div>
<div class="skill-category">
<h3>Data Technologies</h3>
<div class="skills-list">
<span class="skill-tag">Data Warehousing</span>
<span class="skill-tag">Data Lakes</span>
<span class="skill-tag">Data Modeling</span>
<span class="skill-tag">ETL/ELT</span>
<span class="skill-tag">Data Governance</span>
<span class="skill-tag">Metadata Management</span>
<span class="skill-tag">Data Mesh</span>
<span class="skill-tag">Data Virtualization</span>
<span class="skill-tag">Data Catalog</span>
</div>
</div>
<div class="skill-category">
<h3>AI & Analytics</h3>
<div class="skills-list">
<span class="skill-tag">Vertex AI</span>
<span class="skill-tag">Machine Learning</span>
<span class="skill-tag">Business Intelligence</span>
<span class="skill-tag">Data Analytics</span>
<span class="skill-tag">BigQuery</span>
</div>
</div>
<div class="skill-category">
<h3>Business & Consulting</h3>
<div class="skills-list">
<span class="skill-tag">Pre-Sales</span>
<span class="skill-tag">Go-To-Market Strategy</span>
<span class="skill-tag">Solution Design</span>
<span class="skill-tag">Technical Leadership</span>
<span class="skill-tag">Data Strategy</span>
<span class="skill-tag">Financial Services</span>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 Suds Kumar. All rights reserved.</p>
</div>
</footer>
</body>
</html>