-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
116 lines (102 loc) · 5.35 KB
/
experience.html
File metadata and controls
116 lines (102 loc) · 5.35 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
<!-- Experience Page HTML here -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Experience — Sumer Pasha</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%230ea5a4'/%3E%3C/svg%3E">
</head>
<body class="text-gray-200">
<!-- Header -->
<header class="site-header py-4">
<div class="container flex items-center justify-between">
<a href="index.html" class="flex items-center gap-3">
<div>
<div class="text-white font-extrabold text-xl whitespace-nowrap">Sumer Pasha</div>
<div class="tagline text-lg font-bold text-gray-200">
<div>Data Analyst</div>
<div>Python Automation Engineer</div>
<div>Machine Learning Engineer</div>
</div>
</div>
</a>
<div class="container flex items-center justify-between">
<a href="#" class="font-semibold text-white"></a>
<nav class="hidden md:flex items-center space-x-4">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="projects.html">Projects</a>
<a class="nav-link" href="skills.html">Skills</a>
<a class="nav-link" href="experience.html">Experience</a>
<a class="nav-link" href="certifications.html">Certifications</a>
<a class="nav-link" href="blogs.html">Blogs</a>
<a class="nav-link" href="contact.html">Contact</a>
</nav>
<button id="mobile-toggle" class="md:hidden bg-transparent p-2 rounded text-gray-200">☰</button>
</div>
</div>
<div id="mobile-menu" class="hidden md:hidden container mt-2">
<a class="block py-2" href="index.html">Home</a>
<a class="block py-2" href="projects.html">Projects</a>
<a class="block py-2" href="skills.html">Skills</a>
<a class="block py-2" href="experience.html">Experience</a>
<a class="block py-2" href="certifications.html">Certifications</a>
<a class="block py-2" href="blogs.html">Blogs</a>
<a class="block py-2" href="contact.html">Contact</a>
</div>
</header>
<!-- Main -->
<main class="container mt-8">
<h1 class="text-2xl font-semibold text-white">Experience</h1>
<section class="mt-6 space-y-6">
<!-- Current Role -->
<div class="card timeline-item">
<h3 class="font-semibold text-white">
Data Analyst
</h3>
<p class="text-gray-400">Hindustan Coca Cola Beverages (HCCB)</p>
<p class="text-gray-400">10/2025 – Present</p>
<ul class="text-gray-300 mt-3 list-disc ml-6 space-y-1">
<li>Performed in-depth analysis of complex datasets to extract actionable business insights, enabling data-driven decisions across cross-functional teams.</li>
<li>Developed and maintained scalable Python-based data pipelines and ETL processes, ensuring high data quality, integrity, and accuracy.</li>
<li>Designed interactive dashboards and visualizations to track KPIs and trends, improving visibility into business performance and operational metrics.</li>
<li>Built and deployed machine learning models and automated workflows using Python, streamlining processes and supporting key business objectives.</li>
</ul>
</div>
<div class="card timeline-item">
<h3 class="font-semibold text-white">
Data Analyst & Python Automation Engineer
</h3>
<p class="text-gray-400">Analogica Software Dev Pvt Ltd</p>
<p class="text-gray-400">03/2023 – 10/2025</p>
<ul class="text-gray-300 mt-3 list-disc ml-6 space-y-1">
<li>Developed Python scripts for automating data collection and cleaning, saving 15+ hours/week.</li>
<li>Built SQL ETL pipelines that improved processing time by ~30%.</li>
<li>Designed Power BI dashboards to track KPIs, increasing decision-making velocity by ~25%.</li>
<li>Conducted exploratory data analysis (EDA) to uncover actionable insights that informed business strategy and improved operational efficiency by 19%.</li>
<li>Automated mass email campaigns and invoicing using Python, reducing manual workload by 40%.</li>
</ul>
</div>
<!-- Internship -->
<div class="card timeline-item">
<h3 class="font-semibold text-white">
Python Automation Engineer (Internship)
</h3>
<p class="text-gray-400">Analogica Software Dev Pvt Ltd</p>
<p class="text-gray-400">06/2022 – 03/2023</p>
<ul class="text-gray-300 mt-3 list-disc ml-6 space-y-1">
<li>Built automation workflows and integrations using Python and automation tools.</li>
<li>Collaborated on data ingestion and standardization for analytics use-cases.</li>
</ul>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">© 2025 Sumer Pasha</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>