-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
445 lines (423 loc) · 19.1 KB
/
index.html
File metadata and controls
445 lines (423 loc) · 19.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Allah Bakash C S — Forward Deployed Engineer | Cloud Data & AI</title>
<meta name="description" content="Forward Deployed Engineer with 9+ years deploying production data & AI systems. Portfolio featuring enterprise AI agent project, system design, and interview prep.">
<style>
:root {
--bg: #0f172a;
--bg-card: #1e293b;
--bg-hover: #334155;
--text: #e2e8f0;
--text-muted: #94a3b8;
--accent: #38bdf8;
--accent2: #818cf8;
--green: #4ade80;
--yellow: #fbbf24;
--red: #f87171;
--border: #334155;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
/* Nav */
nav {
position: fixed; top: 0; width: 100%; z-index: 100;
background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
padding: 0.75rem 0;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
nav .logo { font-weight: 700; font-size: 1.1rem; }
nav .links { display: flex; gap: 1.5rem; }
nav .links a { color: var(--text-muted); font-size: 0.9rem; }
nav .links a:hover { color: var(--accent); text-decoration: none; }
.container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
/* Hero */
.hero {
padding: 8rem 0 4rem;
text-align: center;
}
.hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.hero .title {
font-size: 1.2rem; color: var(--accent);
font-weight: 600; margin-bottom: 1rem;
}
.hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto 2rem; }
.hero .cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
display: inline-block; padding: 0.6rem 1.5rem; border-radius: 8px;
font-weight: 600; font-size: 0.9rem; transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: #7dd3fc; text-decoration: none; }
.btn-outline {
border: 1px solid var(--border); color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); text-decoration: none; }
/* Sections */
section { padding: 4rem 0; }
section h2 {
font-size: 1.8rem; font-weight: 700; margin-bottom: 2rem;
display: flex; align-items: center; gap: 0.75rem;
}
section h2 .emoji { font-size: 1.5rem; }
/* Stats */
.stats {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
margin-bottom: 2rem;
}
.stat {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 12px; padding: 1.5rem; text-align: center;
}
.stat .number { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat .label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
/* Project card */
.project-card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem;
}
.project-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.project-card .desc { color: var(--text-muted); margin-bottom: 1rem; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.feature {
background: var(--bg); border-radius: 8px; padding: 0.75rem 1rem;
border: 1px solid var(--border);
}
.feature .name { font-weight: 600; font-size: 0.9rem; }
.feature .detail { font-size: 0.8rem; color: var(--text-muted); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
background: var(--bg); border: 1px solid var(--border);
padding: 0.25rem 0.75rem; border-radius: 20px;
font-size: 0.8rem; color: var(--text-muted);
}
/* Experience */
.timeline { position: relative; }
.timeline-item {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem;
border-left: 3px solid var(--accent);
}
.timeline-item .header { display: flex; justify-content: space-between; align-items: start; flex-wrap: wrap; gap: 0.5rem; }
.timeline-item h3 { font-size: 1.1rem; }
.timeline-item .role { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.timeline-item .period { color: var(--text-muted); font-size: 0.85rem; }
.timeline-item ul { margin-top: 0.75rem; padding-left: 1.2rem; }
.timeline-item li { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.4rem; }
/* Skills */
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.skill-group {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 12px; padding: 1.25rem;
}
.skill-group h4 { color: var(--accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.skill-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.skill {
background: var(--bg); padding: 0.2rem 0.6rem; border-radius: 6px;
font-size: 0.8rem; color: var(--text-muted); border: 1px solid var(--border);
}
/* Education */
.edu-card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 12px; padding: 1.25rem; margin-bottom: 0.75rem;
}
.edu-card h4 { font-size: 1rem; }
.edu-card .school { color: var(--accent); font-size: 0.9rem; }
.edu-card .year { color: var(--text-muted); font-size: 0.85rem; }
/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-item {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 12px; padding: 1.5rem; text-align: center;
transition: border-color 0.2s;
}
.contact-item:hover { border-color: var(--accent); }
.contact-item .icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-item .label { font-size: 0.8rem; color: var(--text-muted); }
.contact-item .value { font-weight: 600; font-size: 0.95rem; }
/* Footer */
footer {
border-top: 1px solid var(--border);
padding: 2rem 0; text-align: center;
color: var(--text-muted); font-size: 0.85rem;
}
/* Responsive */
@media (max-width: 768px) {
.hero h1 { font-size: 1.8rem; }
.stats { grid-template-columns: repeat(2, 1fr); }
.features { grid-template-columns: 1fr; }
.skills-grid { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; }
nav .links { gap: 0.75rem; }
}
</style>
</head>
<body>
<nav>
<div class="container">
<div class="logo">Allah Bakash C S</div>
<div class="links">
<a href="#about">About</a>
<a href="#project">Project</a>
<a href="#experience">Experience</a>
<a href="#skills">Skills</a>
<a href="#contact">Contact</a>
</div>
</div>
</nav>
<!-- Hero -->
<section class="hero" id="about">
<div class="container">
<h1>Allah Bakash C S</h1>
<div class="title">Forward Deployed Engineer | Cloud Data & AI</div>
<p>I build and deploy production-grade data and AI systems inside enterprise environments. 9+ years embedding with customer teams — owning the full lifecycle from discovery to production.</p>
<div class="cta">
<a href="https://github.com/CSALLAHBAKASH/enterprise-data-agent" class="btn btn-primary">View Portfolio Project</a>
<a href="https://github.com/CSALLAHBAKASH" class="btn btn-outline">GitHub Profile</a>
<a href="https://linkedin.com/in/csallahbakash" class="btn btn-outline">LinkedIn</a>
</div>
</div>
</section>
<!-- Stats -->
<section>
<div class="container">
<div class="stats">
<div class="stat">
<div class="number">9+</div>
<div class="label">Years Experience</div>
</div>
<div class="stat">
<div class="number">4</div>
<div class="label">Industries</div>
</div>
<div class="stat">
<div class="number">4</div>
<div class="label">AI Agents Built</div>
</div>
<div class="stat">
<div class="number">TB+</div>
<div class="label">Data Processed</div>
</div>
</div>
</div>
</section>
<!-- Featured Project -->
<section id="project">
<div class="container">
<h2><span class="emoji">🔍</span> Featured Project</h2>
<div class="project-card">
<h3>Enterprise Data Pipeline AI Agent</h3>
<p class="desc">AI-powered multi-agent system that connects to any PostgreSQL database and provides schema discovery, natural language querying, Airflow DAG generation, and data quality monitoring — exactly the tool an FDE would build on Day 1 at a customer site.</p>
<div class="features">
<div class="feature">
<div class="name">📊 Schema Discovery</div>
<div class="detail">Auto-introspects tables, columns, relationships + AI-powered summary for stakeholder meetings</div>
</div>
<div class="feature">
<div class="name">💬 Natural Language SQL</div>
<div class="detail">Ask questions in plain English → generates SQL → executes safely → returns answers with insights</div>
</div>
<div class="feature">
<div class="name">🔧 Pipeline Generator</div>
<div class="detail">Describe a pipeline in English → generates production Airflow DAG with error handling and retries</div>
</div>
<div class="feature">
<div class="name">✅ Data Quality Monitor</div>
<div class="detail">Continuous checks for nulls, duplicates, drift with severity-rated reports</div>
</div>
</div>
<div class="tech-tags">
<span class="tag">Python</span>
<span class="tag">LangGraph</span>
<span class="tag">FastAPI</span>
<span class="tag">Anthropic Claude</span>
<span class="tag">PostgreSQL</span>
<span class="tag">Streamlit</span>
<span class="tag">Docker</span>
<span class="tag">Prometheus</span>
<span class="tag">Grafana</span>
</div>
<br>
<a href="https://github.com/CSALLAHBAKASH/enterprise-data-agent" class="btn btn-primary">View on GitHub</a>
</div>
</div>
</section>
<!-- Experience -->
<section id="experience">
<div class="container">
<h2><span class="emoji">💼</span> Experience</h2>
<div class="timeline">
<div class="timeline-item">
<div class="header">
<div>
<h3>American Express</h3>
<div class="role">Software Engineer III — Forward Deployed Data Engineer</div>
</div>
<div class="period">Mar 2025 – Present</div>
</div>
<ul>
<li>Owned end-to-end data platform deployment: Oracle Cloud → GCP migration for financial products</li>
<li>Built secure data pipeline with GPG encryption and HashiCorp Vault for banking compliance</li>
<li>Production stack: GCS → Dataproc/PySpark → BigQuery, processing TBs of financial data</li>
<li>Established observability: monitoring, logging, and alerting for SLA compliance</li>
<li>CI/CD with GitHub Actions, documentation portal with Docusaurus</li>
</ul>
</div>
<div class="timeline-item">
<div class="header">
<div>
<h3>TELUS Digital (Canada)</h3>
<div class="role">Module Lead — Forward Deployed Data Engineer</div>
</div>
<div class="period">Feb 2022 – Mar 2025</div>
</div>
<ul>
<li>Built real-time streaming analytics via GCP PubSub + Dataflow to track customer churn during Black Friday</li>
<li>Owned multiple production pipelines as technical lead and individual contributor</li>
<li>Built EL, ETL, ELT pipelines using Cloud Composer (Airflow) serving multiple business units</li>
<li>Executed data migrations: Oracle/MSSQL/Hadoop → GCP</li>
</ul>
</div>
<div class="timeline-item">
<div class="header">
<div>
<h3>Capgemini (Unilever)</h3>
<div class="role">Data Pipeline Consultant</div>
</div>
<div class="period">Apr 2021 – Feb 2022</div>
</div>
<ul>
<li>Embedded with client team to build end-to-end Airflow DAG pipelines</li>
<li>Owned production monitoring and pipeline failure debugging</li>
</ul>
</div>
<div class="timeline-item">
<div class="header">
<div>
<h3>HCL Technologies (Meggit, UK)</h3>
<div class="role">Software Engineer</div>
</div>
<div class="period">Jul 2016 – May 2020</div>
</div>
<ul>
<li>Automated aircraft structural analysis calculations using Python and Excel VBA</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Skills -->
<section id="skills">
<div class="container">
<h2><span class="emoji">🛠️</span> Skills</h2>
<div class="skills-grid">
<div class="skill-group">
<h4>AI & Agents</h4>
<div class="skill-list">
<span class="skill">LangGraph</span>
<span class="skill">LangChain</span>
<span class="skill">n8n</span>
<span class="skill">MCP Server</span>
<span class="skill">FastAPI</span>
<span class="skill">RAG</span>
<span class="skill">Prompt Engineering</span>
</div>
</div>
<div class="skill-group">
<h4>Data Engineering</h4>
<div class="skill-list">
<span class="skill">Apache Airflow</span>
<span class="skill">Apache Beam</span>
<span class="skill">PySpark</span>
<span class="skill">Dataflow</span>
<span class="skill">BigQuery</span>
<span class="skill">dbt</span>
<span class="skill">Kafka</span>
<span class="skill">Flink</span>
</div>
</div>
<div class="skill-group">
<h4>Cloud & Infrastructure</h4>
<div class="skill-list">
<span class="skill">GCP (expert)</span>
<span class="skill">AWS</span>
<span class="skill">Azure</span>
<span class="skill">Docker</span>
<span class="skill">Kubernetes</span>
<span class="skill">Terraform</span>
<span class="skill">GitHub Actions</span>
</div>
</div>
<div class="skill-group">
<h4>Programming & Databases</h4>
<div class="skill-list">
<span class="skill">Python</span>
<span class="skill">TypeScript</span>
<span class="skill">SQL</span>
<span class="skill">Bash</span>
<span class="skill">PostgreSQL</span>
<span class="skill">MySQL</span>
<span class="skill">Oracle</span>
<span class="skill">BigQuery</span>
</div>
</div>
</div>
</div>
</section>
<!-- Education -->
<section id="education">
<div class="container">
<h2><span class="emoji">🎓</span> Education</h2>
<div class="edu-card">
<h4>PG Diploma in Data Science</h4>
<div class="school">IIIT Bangalore</div>
<div class="year">2020 – 2021</div>
</div>
<div class="edu-card">
<h4>M.Tech in Machine Design</h4>
<div class="school">VTU Belgaum</div>
<div class="year">2013 – 2015</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact">
<div class="container">
<h2><span class="emoji">📬</span> Get In Touch</h2>
<p style="color: var(--text-muted); margin-bottom: 1.5rem;">Open to Forward Deployed Engineer roles — especially at AI labs, consulting firms, and enterprise platforms.</p>
<div class="contact-grid">
<a href="mailto:csallahbakash@gmail.com" class="contact-item">
<div class="icon">✉️</div>
<div class="label">Email</div>
<div class="value">csallahbakash@gmail.com</div>
</a>
<a href="https://linkedin.com/in/csallahbakash" class="contact-item">
<div class="icon">💼</div>
<div class="label">LinkedIn</div>
<div class="value">@csallahbakash</div>
</a>
<a href="https://github.com/CSALLAHBAKASH" class="contact-item">
<div class="icon">💻</div>
<div class="label">GitHub</div>
<div class="value">@CSALLAHBAKASH</div>
</a>
</div>
</div>
</section>
<footer>
<div class="container">
<p>Allah Bakash C S · Forward Deployed Engineer · Bangalore, India</p>
</div>
</footer>
</body>
</html>