-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
801 lines (792 loc) · 33.1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shyam Patadia</title>
<script src="https://cdn.jsdelivr.net/npm/lucide@latest/dist/umd/lucide.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<script
defer
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"
></script>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<style>
[x-cloak] {
display: none !important;
}
</style>
</head>
<body
class="bg-gray-900 text-gray-300 font-roboto"
x-data="{ activeTab: 'summary' }"
>
<div class="container mx-auto px-4 py-8 max-w-4xl">
<header class="text-center mb-8">
<img
src="https://avatars.githubusercontent.com/u/65619938?v=4"
alt="Shyam Patadia"
class="w-32 h-32 rounded-full border-4 border-blue-500 mx-auto mb-4"
/>
<h1 class="text-4xl font-bold text-blue-400 mb-2">SHYAM PATADIA</h1>
<p class="text-xl text-gray-400">Developer</p>
</header>
<nav class="mb-8">
<ul class="flex flex-wrap justify-center space-x-4">
<li>
<button
@click="activeTab = 'summary'"
:class="{ 'text-blue-400 border-b-2 border-blue-400': activeTab === 'summary' }"
class="px-4 py-2 focus:outline-none"
>
Summary
</button>
</li>
<li>
<button
@click="activeTab = 'areas-of-focus'"
:class="{ 'text-blue-400 border-b-2 border-blue-400': activeTab === 'areas-of-focus' }"
class="px-4 py-2 focus:outline-none"
>
Areas of Focus
</button>
</li>
<li>
<button
@click="activeTab = 'skills'"
:class="{ 'text-blue-400 border-b-2 border-blue-400': activeTab === 'skills' }"
class="px-4 py-2 focus:outline-none"
>
Skills
</button>
</li>
<li>
<button
@click="activeTab = 'academics'"
:class="{ 'text-blue-400 border-b-2 border-blue-400': activeTab === 'academics' }"
class="px-4 py-2 focus:outline-none"
>
Academics
</button>
</li>
<li>
<button
@click="activeTab = 'experience'"
:class="{ 'text-blue-400 border-b-2 border-blue-400': activeTab === 'experience' }"
class="px-4 py-2 focus:outline-none"
>
Experience
</button>
</li>
<li>
<button
@click="activeTab = 'projects'"
:class="{ 'text-blue-400 border-b-2 border-blue-400': activeTab === 'projects' }"
class="px-4 py-2 focus:outline-none"
>
Projects
</button>
</li>
<li>
<button
@click="activeTab = 'contact'"
:class="{ 'text-blue-400 border-b-2 border-blue-400': activeTab === 'contact' }"
class="px-4 py-2 focus:outline-none"
>
Contact
</button>
</li>
<li>
<button
@click="activeTab = 'certifications'"
:class="{ 'text-blue-400 border-b-2 border-blue-400': activeTab === 'certifications' }"
class="px-4 py-2 focus:outline-none"
>
Certifications
</button>
</li>
</ul>
</nav>
<main>
<section
x-show="activeTab === 'summary'"
x-transition:enter="transition ease-out duration-300"
x-transition:enter-start="opacity-0 transform scale-90"
x-transition:enter-end="opacity-100 transform scale-100"
>
<h2 class="text-2xl font-bold text-blue-400 mb-4">
Professional Summary
</h2>
<p class="mb-4">
Software Engineer with experience in developing test automation
infrastructure using Selenium Grid and integrating CI/CD pipelines.
Proficient in containerization with Docker and Azure DevOps to
streamline deployment processes. Experienced in implementing
GxP-compliant software development life cycle (SDLC) processes using
Jira for project management and compliance. Have developed end to
end test automation suits for validation of web based, desktop based
and api based testing of applications. Experienced in drafting
official documenttion and SOP drafting for establising various
processes and frameworks for internal and external project
lifecycles.
</p>
<p class="mb-4">
Skilled in creating automation scripts for data processing using
PowerShell and Python, facilitating efficient data extraction and
management. Certified in Azure DevOps, Scrum methodologies, and
software development processes, with a commitment to continuous
improvement and best practices in software development.
</p>
</section>
<section
x-show="activeTab === 'areas-of-focus'"
x-transition:enter="transition ease-out duration-300"
x-transition:enter-start="opacity-0 transform scale-90"
x-transition:enter-end="opacity-100 transform scale-100"
>
<h2 class="text-2xl font-bold text-blue-400 mb-6">Areas of Focus</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-4">
Test Automation Infrastructure
</h3>
<p class="mb-4">
Developed and maintained a robust test automation
infrastructure, including the setup and optimization of Selenium
Grid for cross-browser and cross-platform testing. This enabled
the team to scale test execution efficiently and integrate
seamlessly with the CI/CD pipeline.
</p>
<div class="flex flex-wrap items-center gap-2 mb-4">
<i class="text-blue-400 mr-2" data-lucide="code"></i>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Selenium</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>C#</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>.NET</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Appium</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>WinAppDriver</span
>
</div>
</div>
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-4">
DevOps and Containerization
</h3>
<p class="mb-4">
Leveraged Docker and containerization techniques to streamline
the deployment and portability of internal Python-based
applications. Focused on optimizing container image sizes for
improved performance and scalability, and integrated the
containerized applications into Azure DevOps CI/CD pipelines.
</p>
<div class="flex flex-wrap items-center gap-2 mb-4">
<i class="text-blue-400 mr-2" data-lucide="package"></i>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Docker</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Azure DevOps</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Python</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>PowerShell</span
>
</div>
</div>
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-4">
GxP-Compliant SDLC Processes
</h3>
<p class="mb-4">
Designed and implemented end-to-end GxP-compliant software
development life cycle (SDLC) processes, leveraging Jira's
advanced features and integrations to streamline project
management, traceability, and compliance reporting. This
included automating workflows, leveraging Jira Automation Rules
and Webhooks, and integrating the toolchain with Azure DevOps,
Bitbucket, GitHub, and Atlassian Compass.
</p>
<div class="flex flex-wrap items-center gap-2 mb-4">
<i class="text-blue-400 mr-2" data-lucide="issue-opened"></i>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Jira</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Azure DevOps</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Bitbucket</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>GitHub</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Atlassian Compass</span
>
</div>
</div>
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-4">
Data Processing and Automation
</h3>
<p class="mb-4">
Developed a range of data processing and automation scripts
using tools like PowerShell and Selenium. This enabled efficient
data extraction, transformation, and ingestion into databases,
as well as web scraping at scale. The scripts also integrated
with external APIs and cloud storage solutions for comprehensive
data management.
</p>
<div class="flex flex-wrap items-center gap-2 mb-4">
<i class="text-blue-400 mr-2" data-lucide="database"></i>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>PowerShell</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Selenium</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Python</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>SQL</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Azure Blob Storage</span
>
</div>
</div>
</div>
</section>
<section
x-show="activeTab === 'skills'"
x-transition:enter="transition ease-out duration-300"
x-transition:enter-start="opacity-0 transform scale-90"
x-transition:enter-end="opacity-100 transform scale-100"
>
<h2 class="text-2xl font-bold text-blue-400 mb-4">Skills</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="bg-gray-800 p-4 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">
Programming Languages and Databases
</h3>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Python</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Julia</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>C#</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>SQL</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>PostgreSQL</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Mongo DB</span
>
</div>
</div>
<div class="bg-gray-800 p-4 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">
Frameworks & Tools
</h3>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Flask</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>PyTorch</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>FAST API</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Streamlit</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Langchain</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>LangGraph</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>CrewAI</span
>
</div>
</div>
<div class="bg-gray-800 p-4 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">
Automation Testing
</h3>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Selenium</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Playwright</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>xUnit</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>SpecFlow</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>WindowsDriver</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Appium</span
>
</div>
</div>
<div class="bg-gray-800 p-4 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">
DevOps and Infrastucture
</h3>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Docker</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Powershell Scripting</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Azure Container Apps</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Azure DevOps</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Azure Administration</span
>
</div>
</div>
<div class="bg-gray-800 p-4 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">
Project Management and Compliance
</h3>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Jira Boards and Sprint Management</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>GxP Compliance</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Azure Container Apps</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Technical Documentation of Codebases and Processes</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>SOP Drafting</span
>
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm"
>Agile methodologies</span
>
</div>
</div>
</div>
</section>
<section
x-show="activeTab === 'academics'"
x-transition:enter="transition ease-out duration-300"
x-transition:enter-start="opacity-0 transform scale-90"
x-transition:enter-end="opacity-100 transform scale-100"
>
<h2 class="text-2xl font-bold text-blue-400 mb-4">Academics</h2>
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">
Bachelor of Science in Applied Statistics & Analytics
</h3>
<p class="text-gray-300 mb-2">NMIMS University, Mumbai, India</p>
<div class="flex justify-between items-center mb-4">
<p class="text-blue-400 font-semibold">Duration: 2017 - 2021</p>
<p class="text-blue-400 font-semibold">CGPA: 2.95/4.00</p>
</div>
<ul class="list-disc list-inside text-gray-300">
<li>
Completed an intensive 151-credit program (3-year curriculum)
</li>
<li>
Credit equivalencies: Approx. 302 ECTS credits; comparable to
120-130 credits in the American system
</li>
<li>
Core focus: Statistics, Data Analysis, Programming, and Applied
Mathematics
</li>
<li>
Developed proficiency in R, Python, and C programming languages
</li>
<li>
Engaged in multiple research projects, applying statistical
concepts to real-world scenarios
</li>
<li>
Key courses: Data Science, Financial Risk Modeling, Time Series
Analysis, Multivariate Statistics
</li>
</ul>
<h4 class="text-lg font-semibold text-blue-300 mt-4 mb-2">
Key Skills Developed:
</h4>
<ul class="list-disc list-inside text-gray-300">
<li>
Statistical Analysis: Hypothesis testing, regression analysis,
experimental design
</li>
<li>
Data Science: Machine learning algorithms, predictive modeling,
data visualization
</li>
<li>
Programming: R, Python, C, SQL for data manipulation and
analysis
</li>
<li>
Financial Analysis: Risk assessment, actuarial science,
financial modeling
</li>
<li>
Research Methods: Data collection, analysis, and interpretation
of complex datasets
</li>
</ul>
<h4 class="text-lg font-semibold text-blue-300 mt-4 mb-2">
Program Highlights:
</h4>
<ul class="list-disc list-inside text-gray-300">
<li>
Accelerated learning pace: Completed comprehensive curriculum in
3 years
</li>
<li>
Practical Application: Balanced theoretical knowledge with
hands-on projects
</li>
<li>
Interdisciplinary Approach: Integrated statistics with
economics, finance, and computer science
</li>
<li>
International Equivalency: Program rigor comparable to
international standards
</li>
</ul>
</div>
</section>
<section
x-show="activeTab === 'experience'"
x-transition:enter="transition ease-out duration-300"
x-transition:enter-start="opacity-0 transform scale-90"
x-transition:enter-end="opacity-100 transform scale-100"
>
<h2 class="text-2xl font-bold text-blue-400 mb-4">
Professional Experience
</h2>
<div class="bg-gray-800 p-6 rounded-lg mb-6">
<h3 class="text-xl font-semibold text-blue-300 mb-2">
Senior Developer
</h3>
<p class="text-gray-400 mb-2">
xLM Continuous Validation LLC, Jacksonville, FL — July 2021 -
Present
</p>
<ul class="list-disc list-inside">
<li>
Led development team of AI Agent for GxP-focused web application
validation, managing functional and technical aspects
</li>
<li>
Developed end to end automation suites for validation of DMS,
LMS, and ERP systems, implemented various CI/CD pieplines for
the same.
</li>
<li>
Conducted client demonstrations and authored company newsletters
to showcase technical advancements also maintained the internal
documentation for various internal APIs.
</li>
<li>
Managed Azure Artifact feeds, maintained internal releases for
.NET-based automation packages, and developed comprehensive test
suites and unified frameworks to support testing for both web
and desktop applications.
</li>
<li>
Worked with Azure Storage Blobs APIs for data processing and
routine backups, and integrated Selenium with Windows Driver Kit
to enhance desktop automation within the testing framework.
</li>
<li>
Developed PowerShell scripts for automating data processing and
integration with external REST APIs, alongside creating
large-scale data scraping solutions using Selenium and Spyder
Crawler.
</li>
<li>
Designed and managed a GxP-compliant SDLC process centered on
Jira, integrating various tools such as Azure DevOps, Bitbucket,
GitHub, and Atlassian Compass. Extensively utilized Jira
Automation rules, webhooks, and APIs to streamline project
management, track progress, and integrate deployment links, time
logs, and automated vulnerability reports.
</li>
<li>
Optimized and containerized internal applications, including
reducing Docker image sizes and improving deployment workflows
for Python-based apps, enhancing performance, consistency, and
scalability.
</li>
<li>
Developed and maintained the team's testing infrastructure,
including setting up Selenium Grid for scalable automated
testing, and implemented end-to-end CI/CD pipelines using Azure
DevOps, streamlining deployment processes for internal
applications.
</li>
<li>
Developed end to end implementation of version control system
across the company, wrote an SOP for the same. Wrote several
SOPs for various internal processes around the SDLC and overall
development processes.
</li>
</ul>
</div>
</section>
<section
x-show="activeTab === 'projects'"
x-transition:enter="transition ease-out duration-300"
x-transition:enter-start="opacity-0 transform scale-90"
x-transition:enter-end="opacity-100 transform scale-100"
>
<h2 class="text-2xl font-bold text-blue-400 mb-4">Projects</h2>
<div class="g rid grid-cols-1 md:grid-cols-2 gap-6">
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">
AI-Powered Web Navigation Agent
</h3>
<ul class="list-disc list-inside">
<li>
Managed end-to-end product development from concept to
implementation, including agent coding
</li>
<li>
Created system architecture and led a cross-functional team
through agile sprints
</li>
<li>
Integrated LLM technologies to improve web application testing
efficiency
</li>
</ul>
</div>
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">
GxP-Compliant Agile Development Service
</h3>
<ul class="list-disc list-inside">
<li>
Developed a comprehensive service on Atlassian Jira for
GxP-based Agile sprint development
</li>
<li>
Ensured compliance with regulatory requirements while
maintaining Agile principles
</li>
</ul>
</div>
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">
Sentiment-Based Trading System
</h3>
<ul class="list-disc list-inside">
<li>
Built an intraday trading system based on news sentiment
analysis and the technical indicators
</li>
<li>
Adapted BERT model for financial sentiment classification,
finetune the modeled on a financial news data set, created a
dataset of scraped headlines for backetesting, achieving 2.6%
average daily return
</li>
</ul>
</div>
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">
Wikipedia Content Extractor
</h3>
<ul class="list-disc list-inside">
<li>
Wrote a Python script to extract and organize Wikipedia
content
</li>
<li>Created JSON output with URLs and associated content</li>
<li>
GitHub:
<a
href="https://github.com/shyampatadia/Wikipedia_Extractor"
target="_blank"
class="text-blue-400 hover:underline"
>Wikipedia Content Extractor</a
>
</li>
</ul>
</div>
<!-- Add more projects here -->
</div>
</section>
<section
x-show="activeTab === 'contact'"
x-transition:enter="transition ease-out duration-300"
x-transition:enter-start="opacity-0 transform scale-90"
x-transition:enter-end="opacity-100 transform scale-100"
>
<h2 class="text-2xl font-bold text-blue-400 mb-4">
Contact Information
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="bg-gray-800 p-4 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">Location</h3>
<p>Rajkot, Gujarat, India</p>
</div>
<div class="bg-gray-800 p-4 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">Phone</h3>
<p>
<a href="tel:+919987817964" class="hover:text-blue-400"
>+919987817964</a
>
</p>
</div>
<div class="bg-gray-800 p-4 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">Email</h3>
<p>
<a
href="mailto:[email protected]"
class="hover:text-blue-400"
>
</p>
</div>
<div class="bg-gray-800 p-4 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-2">Connect</h3>
<div class="flex space-x-4">
<a
href="https://linkedin.com/in/shyampatadia/"
target="_blank"
class="text-blue-400 hover:text-blue-300"
aria-label="LinkedIn"
>
<i class="fab fa-linkedin fa-lg"></i>
</a>
<a
href="https://github.com/shyampatadia"
target="_blank"
class="text-blue-400 hover:text-blue-300"
aria-label="GitHub"
>
<i class="fab fa-github fa-lg"></i>
</a>
<a
href="https://x.com/shyam300420"
target="_blank"
class="text-blue-400 hover:text-blue-300"
aria-label="Twitter"
>
<i class="fab fa-twitter fa-lg"></i>
</a>
</div>
</div>
</div>
</section>
<section
x-show="activeTab === 'certifications'"
x-transition:enter="transition ease-out duration-300"
x-transition:enter-start="opacity-0 transform scale-90"
x-transition:enter-end="opacity-100 transform scale-100"
>
<h2 class="text-2xl font-bold text-blue-400 mb-6">Certifications</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-4">
Azure DevOps - AZ-900
</h3>
<p class="text-gray-400 text-sm mb-4">
Gained foundational knowledge of Azure services, cloud concepts,
and core Azure DevOps principles, which enhanced my ability to
manage CI/CD pipelines and cloud resources effectively.
</p>
<a
href="https://learn.microsoft.com/api/credentials/share/en-us/shyampatadia-8140/29B59629A9ED3204?sharingId=E0BA6AFC4738A529"
target="_blank"
class="text-blue-400 hover:underline"
>View Certification</a
>
</div>
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-4">
Certified Scrum Developer
</h3>
<p class="text-gray-400 text-sm mb-4">
Acquired practical skills in Agile methodologies, Scrum
practices, and teamwork, enabling me to contribute effectively
to agile development teams and deliver high-quality software
iteratively.
</p>
<a
href="https://www.linkedin.com/in/shyampatadia/details/certifications/1727168532659/single-media-viewer/?type=DOCUMENT&profileId=ACoAABwgP5MBGig335e2bdKco_sWHOZKwbBuM9g"
target="_blank"
class="text-blue-400 hover:underline"
>View Certification</a
>
</div>
<div class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-300 mb-4">
Software Development Processes and Methodologies
</h3>
<p class="text-gray-400 text-sm mb-4">
Enhanced understanding of various software development
lifecycles, best practices, and methodologies, enabling me to
optimize project workflows and improve code quality through
structured processes.
</p>
<a
href="https://coursera.org/verify/LYMPLSJXAM5P"
target="_blank"
class="text-blue-400 hover:underline"
>View Certification</a
>
</div>
</div>
</section>
</main>
</div>
<script>
lucide.createIcons();
</script>
</body>
</html>