-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
401 lines (385 loc) · 24 KB
/
Copy pathindex.html
File metadata and controls
401 lines (385 loc) · 24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Arijit Kumar Roy — Data & AI Engineer</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script>
(function() {
var saved = localStorage.getItem('theme');
if (saved === 'dark') return;
document.documentElement.setAttribute('data-theme', 'light');
})();
</script>
</head>
<body>
<!-- ─── Boot Screen ─── -->
<div id="boot-screen" class="boot-screen">
<div class="boot-logo">arijit<span class="boot-accent">roy</span> OS</div>
<div class="boot-progress"><div class="boot-progress-fill" id="boot-progress-fill"></div></div>
<div class="boot-status" id="boot-status">loading kernel...</div>
</div>
<!-- ─── Desktop ─── -->
<div id="desktop" class="desktop" style="display:none">
<div class="mobile-status-bar">
<span class="msb-time" id="msb-time"></span>
<div class="msb-right">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M5 12.55a11 11 0 0 1 14.08 0"/><path d="M1.42 9a16 16 0 0 1 21.16 0"/><path d="M8.53 16.11a6 6 0 0 1 6.95 0"/><circle cx="12" cy="20" r="1"/></svg>
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="1" y="6" width="18" height="12" rx="2"/><line x1="23" y1="13" x2="23" y2="11"/></svg>
</div>
</div>
<div class="desktop-icons" id="desktop-icons">
<button class="desktop-icon" data-app="about" aria-label="Open About">
<span class="desktop-icon-img">ℹ</span>
<span class="desktop-icon-label">About</span>
</button>
<button class="desktop-icon" data-app="terminal" aria-label="Open Terminal">
<span class="desktop-icon-img">>_</span>
<span class="desktop-icon-label">Terminal</span>
</button>
<button class="desktop-icon" data-app="experience" aria-label="Open Experience">
<span class="desktop-icon-img">📄</span>
<span class="desktop-icon-label">Experience</span>
</button>
<button class="desktop-icon" data-app="projects" aria-label="Open Projects">
<span class="desktop-icon-img">📁</span>
<span class="desktop-icon-label">Projects</span>
</button>
<button class="desktop-icon" data-app="skills" aria-label="Open Skills">
<span class="desktop-icon-img">⚙</span>
<span class="desktop-icon-label">Skills</span>
</button>
<button class="desktop-icon" data-app="blog" aria-label="Open Blog">
<span class="desktop-icon-img">📝</span>
<span class="desktop-icon-label">Blog</span>
</button>
</div>
<!-- Conky-style widget -->
<div class="conky" id="conky">
<div class="conky-time" id="conky-time"></div>
<div class="conky-date" id="conky-date"></div>
<div class="conky-stats">
uptime: 7y 2m<br>
projects: 6<br>
commits: 1.2k<br>
stack: python, golang, sql
</div>
</div>
<!-- Desktop theme slider -->
<button id="desktop-toggle" onclick="toggleTheme()" aria-label="Toggle theme">
<span class="dt-track">
<svg class="dt-icon dt-sun" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="5"/><line x1="12" y1="1" x2="12" y2="3"/><line x1="12" y1="21" x2="12" y2="23"/><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/><line x1="1" y1="12" x2="3" y2="12"/><line x1="21" y1="12" x2="23" y2="12"/><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/></svg>
<span class="dt-thumb"></span>
<svg class="dt-icon dt-moon" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></svg>
</span>
</button>
<div class="window-layer" id="window-layer"></div>
<nav class="taskbar" id="taskbar" role="navigation" aria-label="Taskbar">
<div class="taskbar-start">
<button class="taskbar-menu-btn" id="taskbar-menu-btn" aria-label="Menu">
<span class="taskbar-logo">arijit<span class="taskbar-logo-accent">roy</span></span>
</button>
</div>
<div class="taskbar-apps" id="taskbar-apps" role="tablist"></div>
<div class="taskbar-tray">
<button class="theme-toggle-btn" id="theme-toggle" onclick="toggleTheme()" aria-label="Toggle theme">
<svg class="theme-icon" id="theme-icon-sun" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="5"/><line x1="12" y1="1" x2="12" y2="3"/><line x1="12" y1="21" x2="12" y2="23"/><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/><line x1="1" y1="12" x2="3" y2="12"/><line x1="21" y1="12" x2="23" y2="12"/><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/></svg>
<svg class="theme-icon" id="theme-icon-moon" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></svg>
</button>
<span class="taskbar-clock" id="taskbar-clock"></span>
</div>
</nav>
<div class="mobile-desktop-note">Best experienced on desktop — try the full OS</div>
<div class="mobile-gesture-bar" id="gesture-bar" onclick="if(typeof WindowManager!=='undefined'){var ws=[];document.querySelectorAll('.window').forEach(function(w){if(w.dataset.app)ws.push(w.dataset.app)});ws.forEach(function(id){WindowManager.close(id)})}">
<div class="gesture-pill"></div>
</div>
</div>
<!-- ═══ App Templates ═══ -->
<template id="tpl-about">
<div class="hero">
<div class="terminal-line fade-up">
<span class="prompt">~$</span> init portfolio — Jan 2026
<span class="cursor"></span>
</div>
<h1 class="hero-headline fade-up delay-1">
Building<br><em>enterprise-scale</em><br>Data & AI systems.
</h1>
<p class="hero-sub fade-up delay-2">
Data & AI Engineer with 7+ years shipping production platforms on AWS, Azure & GCP.
Snowflake · Databricks · LLMs · Agentic AI · Real-time streaming — end to end.
</p>
<div class="hero-actions fade-up delay-3">
<a href="#" class="btn btn-primary" onclick="WindowManager.open('experience')">view work</a>
<a href="https://topmate.io/arijitroy003" target="_blank" class="btn btn-outline">get in touch</a>
</div>
<div class="meta-row fade-up delay-4">
<div class="meta-item">
<span class="meta-label">location</span>
<span class="meta-value">bangalore, india</span>
</div>
<div class="meta-item">
<span class="meta-label">github</span>
<span class="meta-value"><a href="https://github.com/arijitroy003" target="_blank">arijitroy003</a></span>
</div>
<div class="meta-item">
<span class="meta-label">linkedin</span>
<span class="meta-value"><a href="https://linkedin.com/in/sudo-kill" target="_blank">sudo-kill</a></span>
</div>
</div>
</div>
</template>
<template id="tpl-terminal">
<div class="chat-section">
<div class="chat-header">
<span class="chat-header-icon">›</span>
<span class="chat-header-title" id="chat-header-title">Talk to my AI Assistant (!Warning: I'm not very smart)</span>
<button class="llm-toggle" id="llm-toggle" onclick="toggleLLM()">enable LLM hallucinations</button>
</div>
<div class="llm-progress" id="llm-progress">
<div class="llm-progress-fill" id="llm-progress-fill"></div>
</div>
<div class="chat-messages" id="chat-messages">
<div class="chat-message bot">Hey! I'm Arijit's AI assistant. Ask me anything about my experience, skills, projects, or background.</div>
</div>
<div class="chat-quick-replies" id="chat-quick-replies">
<button class="chat-quick-btn" onclick="sendQuickReply('experience')">experience</button>
<button class="chat-quick-btn" onclick="sendQuickReply('skills')">skills</button>
<button class="chat-quick-btn" onclick="sendQuickReply('projects')">projects</button>
<button class="chat-quick-btn" onclick="sendQuickReply('contact')">contact</button>
</div>
<div class="chat-input-row">
<input type="text" class="chat-input" id="chat-input" placeholder="Type your question..." onkeypress="handleChatKeypress(event)">
<button class="chat-send" onclick="sendMessage()">send</button>
</div>
</div>
</template>
<template id="tpl-experience">
<div class="exp-header">
<div class="page-title-row">
<h2 class="page-title">experience</h2>
<span class="page-tag">4 roles</span>
</div>
<p class="page-subtitle">Enterprise platforms, GenAI products, and high-scale data engineering across fintech, e-commerce & SaaS.</p>
</div>
<div class="exp-grid">
<div class="exp-card fade-up">
<div class="exp-card-top">
<span class="exp-company">Red Hat</span>
<span class="exp-date">Apr 2024 — Present</span>
</div>
<div class="exp-role">Senior Software Engineer — Data & AI</div>
<div class="exp-location">Bengaluru, India · Platform Engineering</div>
<ul class="exp-bullets">
<li>Built self-service GitOps data mesh platform (Snowflake, dbt, Fivetran, Airflow, K8s) — migrated from legacy Redshift/Starburst, achieving $100k+ annual cost reduction.</li>
<li>Implemented release automation & CI tools saving 1000+ lead-engineer hours annually; deployed 100+ ASCA & PIA compliant data products with cost/usage monitoring.</li>
<li>Championed data governance with Atlan; drove full 0→1→10 product lifecycle from technical enablement through production adoption.</li>
<li>Collaborated on MCP servers for Data Analytics Agents, Agentic AI frameworks, and AI observability tooling with Langfuse.</li>
</ul>
<div class="exp-tags">
<span class="tag">GitOps</span><span class="tag">Snowflake</span><span class="tag">dbt-Core</span><span class="tag">AWS</span><span class="tag">Golang</span><span class="tag">Kubernetes</span><span class="tag">Python</span><span class="tag">Fivetran</span><span class="tag">Airflow</span><span class="tag">Atlan</span><span class="tag">GitLab CI/CD</span>
</div>
</div>
<div class="exp-card fade-up delay-1">
<div class="exp-card-top">
<span class="exp-company">Beem</span>
<span class="exp-date">Nov 2023 — Mar 2024</span>
</div>
<div class="exp-role">Senior Data Engineer — Financial Services</div>
<div class="exp-location">Remote, US</div>
<ul class="exp-bullets">
<li>Built LLM-powered Data & AI platform serving 50M+ users for personal finance management with integrated data governance.</li>
<li>Contributed to investor pitches securing $16k Databricks funding with $24k in future commitments.</li>
<li>Engineered ETL workflows processing 500 GB daily clickstream & telemetry data.</li>
</ul>
<div class="exp-tags">
<span class="tag">Databricks</span><span class="tag">AWS S3</span><span class="tag">Python</span><span class="tag">MongoDB</span><span class="tag">Mixpanel</span><span class="tag">Metabase</span>
</div>
</div>
<div class="exp-card fade-up delay-2">
<div class="exp-card-top">
<span class="exp-company">Tata Digital (Tata Neu)</span>
<span class="exp-date">Aug 2021 — Oct 2023</span>
</div>
<div class="exp-role">Senior Software Engineer — E-Commerce & Retail</div>
<div class="exp-location">Bengaluru, India · Strategic Initiatives</div>
<ul class="exp-bullets">
<li>Built Conversational AI (voice + text) data warehousing platform serving 120M+ users, processing 500M events daily.</li>
<li>Developed GenAI product search & recommendation engine using Azure OpenAI, Mistral, LangChain, embeddings, and vector DBs (Chroma, Milvus).</li>
<li>Led 6-engineer team migrating to Delta Lake; owned 15+ customer-facing pipelines — reduced latency 75% & cost 80%.</li>
<li>Engineered voice-call analysis system using deep learning, speech-to-text, and custom voice ML models.</li>
<li>Built API monitoring microservices for AI chatbot across 12 Indic languages with real-time 24×7 dashboards.</li>
</ul>
<div class="exp-tags">
<span class="tag">PySpark</span><span class="tag">Databricks</span><span class="tag">Delta Lake</span><span class="tag">Azure OpenAI</span><span class="tag">LangChain</span><span class="tag">Scala</span><span class="tag">ADLS</span><span class="tag">Kusto</span>
</div>
</div>
<div class="exp-card fade-up delay-3">
<div class="exp-card-top">
<span class="exp-company">Gnosis Lab</span>
<span class="exp-date">Jun 2019 — May 2021</span>
</div>
<div class="exp-role">Founding Engineer — NASSCOM 10K Startups</div>
<div class="exp-location">Kolkata, India</div>
<ul class="exp-bullets">
<li>Built AI bot for a SaaS platform automating social media marketing on Instagram & Twitter using serverless architecture.</li>
<li>Developed full MEAN Stack application and delivered 50+ backend APIs for a Learning Management System.</li>
</ul>
<div class="exp-tags">
<span class="tag">Python</span><span class="tag">AWS Lambda</span><span class="tag">TensorFlow</span><span class="tag">Angular</span><span class="tag">MongoDB</span><span class="tag">DynamoDB</span><span class="tag">Docker</span><span class="tag">OpenCV</span>
</div>
</div>
</div>
</template>
<template id="tpl-projects">
<div class="exp-header">
<div class="page-title-row">
<h2 class="page-title">projects</h2>
<span class="page-tag">selected work</span>
</div>
<p class="page-subtitle">Production deployments, research & freelance builds.</p>
</div>
<div class="proj-grid">
<div class="proj-card fade-up">
<div class="proj-card-label">[freelance · 2021]</div>
<div class="proj-card-title">Doctor — Clinical Management Software</div>
<div class="proj-card-desc">Production-ready Android app & web portal for appointment bookings and doctor practice management. Integrated payment processing via Razorpay and analytics via BigQuery.</div>
<div class="exp-tags">
<span class="tag">React Native</span><span class="tag">Firebase</span><span class="tag">GCP</span><span class="tag">BigQuery</span><span class="tag">Razorpay</span>
</div>
</div>
<div class="proj-card fade-up delay-1">
<div class="proj-card-label">[research · 2017]</div>
<div class="proj-card-title">Offline File System Search</div>
<div class="proj-card-desc">Document indexer for offline information retrieval built under supervision of Dr. Dwaipayan Roy at the Information Retrieval Lab, Indian Statistical Institute, Kolkata.</div>
<div class="exp-tags">
<span class="tag">Python</span><span class="tag">NLP</span><span class="tag">Linux</span><span class="tag">Information Retrieval</span>
</div>
</div>
<div class="proj-card fade-up delay-2">
<div class="proj-card-label">[red hat · 2024–present]</div>
<div class="proj-card-title">GitOps Data Mesh Platform</div>
<div class="proj-card-desc">Self-service data mesh enabling 100+ compliant data products with automated governance, cost monitoring, and full CI/CD. Delivered $100k+ annual cost savings vs. legacy stack.</div>
<div class="exp-tags">
<span class="tag">Snowflake</span><span class="tag">dbt</span><span class="tag">Kubernetes</span><span class="tag">GitOps</span><span class="tag">Airflow</span>
</div>
</div>
<div class="proj-card fade-up delay-3">
<div class="proj-card-label">[tata neu · 2022–2023]</div>
<div class="proj-card-title">GenAI Product Search Engine</div>
<div class="proj-card-desc">LLM-powered product search & recommendation system using embeddings and vector databases, serving 120M+ users on the Tata Neu e-commerce platform.</div>
<div class="exp-tags">
<span class="tag">Azure OpenAI</span><span class="tag">LangChain</span><span class="tag">Milvus</span><span class="tag">Chroma</span><span class="tag">Mistral</span>
</div>
</div>
<div class="proj-card fade-up delay-4">
<div class="proj-card-label">[tata neu · 2021–2023]</div>
<div class="proj-card-title">Conversational AI Data Platform</div>
<div class="proj-card-desc">Voice & text chatbot data warehousing platform processing 500M daily events. Includes deep-learning voice analysis and real-time monitoring across 12 Indic languages.</div>
<div class="exp-tags">
<span class="tag">PySpark</span><span class="tag">Delta Lake</span><span class="tag">Deep Learning</span><span class="tag">Speech-to-Text</span>
</div>
</div>
<div class="proj-card fade-up delay-5">
<div class="proj-card-label">[beem · 2023–2024]</div>
<div class="proj-card-title">LLM-Powered Personal Finance Platform</div>
<div class="proj-card-desc">AI-driven finance management product serving 50M+ users. Built end-to-end ETL for 500 GB/day telemetry and contributed to the funding deck securing seed investment.</div>
<div class="exp-tags">
<span class="tag">Databricks</span><span class="tag">LLMs</span><span class="tag">AWS S3</span><span class="tag">MongoDB</span>
</div>
</div>
</div>
</template>
<template id="tpl-skills">
<div class="skills-network-wrapper">
<div class="corner-bracket top-left"></div>
<div class="corner-bracket top-right"></div>
<div class="corner-bracket bottom-left"></div>
<div class="corner-bracket bottom-right"></div>
<svg class="connecting-lines" id="connecting-lines"></svg>
<div class="floating-labels" id="floating-labels"></div>
<div class="skills-center">
<div class="pixel-grid" id="pixel-grid"></div>
<h2 class="skills-title">Skills</h2>
<p class="skills-subtitle">Core engineering, data infrastructure, AI/LLM, and DevOps</p>
<div class="skills-legend">
<div class="legend-item"><span class="legend-dot" style="background: var(--green);"></span>Languages</div>
<div class="legend-item"><span class="legend-dot" style="background: #60a5fa;"></span>Cloud</div>
<div class="legend-item"><span class="legend-dot" style="background: #f59e0b;"></span>Data</div>
<div class="legend-item"><span class="legend-dot" style="background: #a855f7;"></span>AI/LLM</div>
<div class="legend-item"><span class="legend-dot" style="background: #ec4899;"></span>Databases</div>
<div class="legend-item"><span class="legend-dot" style="background: #6b7280;"></span>Research</div>
</div>
</div>
</div>
<div class="skills-layout">
<div class="skills-section fade-up">
<div class="skills-section-title">Core Languages & APIs</div>
<div class="skills-tags">
<span class="skill-tag">Python</span><span class="skill-tag">Golang</span><span class="skill-tag">SQL</span><span class="skill-tag">T-SQL</span><span class="skill-tag">JavaScript</span><span class="skill-tag">TypeScript</span><span class="skill-tag">Shell</span><span class="skill-tag">Scala</span><span class="skill-tag">REST APIs</span><span class="skill-tag">Microservices</span><span class="skill-tag">Git</span>
</div>
</div>
<div class="skills-section fade-up delay-1">
<div class="skills-section-title">Cloud & Infrastructure</div>
<div class="skills-tags">
<span class="skill-tag">AWS</span><span class="skill-tag">Azure</span><span class="skill-tag">GCP</span><span class="skill-tag">Kubernetes</span><span class="skill-tag">Docker</span><span class="skill-tag">Terraform</span><span class="skill-tag">GitOps</span><span class="skill-tag">CI/CD Pipelines</span><span class="skill-tag">Container Orchestration</span><span class="skill-tag">OAuth / SAML 2.0</span>
</div>
</div>
<div class="skills-section fade-up delay-2">
<div class="skills-section-title">Data Engineering</div>
<div class="skills-tags">
<span class="skill-tag">Snowflake</span><span class="skill-tag">Databricks</span><span class="skill-tag">PySpark</span><span class="skill-tag">Delta Lake</span><span class="skill-tag">dbt</span><span class="skill-tag">Data Mesh</span><span class="skill-tag">Airflow</span><span class="skill-tag">Kafka</span><span class="skill-tag">ETL / ELT</span><span class="skill-tag">Real-time Streaming</span><span class="skill-tag">Fivetran</span><span class="skill-tag">Atlan</span><span class="skill-tag">Data Modeling</span><span class="skill-tag">DataOps</span><span class="skill-tag">Distributed Compute</span>
</div>
</div>
<div class="skills-section fade-up delay-3">
<div class="skills-section-title">AI / LLM Engineering</div>
<div class="skills-tags">
<span class="skill-tag">LangChain</span><span class="skill-tag">Vector DBs (Milvus, Chroma, Qdrant)</span><span class="skill-tag">Embeddings</span><span class="skill-tag">OpenAI</span><span class="skill-tag">Claude</span><span class="skill-tag">Mistral</span><span class="skill-tag">Azure OpenAI</span><span class="skill-tag">Agentic AI</span><span class="skill-tag">MCP Servers</span><span class="skill-tag">AI Observability</span><span class="skill-tag">MLOps</span><span class="skill-tag">TensorFlow</span><span class="skill-tag">PyTorch</span><span class="skill-tag">NLP</span>
</div>
</div>
<div class="skills-section fade-up delay-4">
<div class="skills-section-title">Databases & Storage</div>
<div class="skills-tags">
<span class="skill-tag">MongoDB</span><span class="skill-tag">DynamoDB</span><span class="skill-tag">NoSQL</span><span class="skill-tag">ADLS</span><span class="skill-tag">S3</span><span class="skill-tag">BigQuery</span><span class="skill-tag">Firebase</span><span class="skill-tag">Kusto</span>
</div>
</div>
<div class="skills-section fade-up delay-5">
<div class="skills-section-title">Research & Extras</div>
<div class="skills-tags">
<span class="skill-tag">Information Retrieval</span><span class="skill-tag">Distributed Systems</span><span class="skill-tag">Big Data</span><span class="skill-tag">Cloud Computing</span><span class="skill-tag">DSA</span><span class="skill-tag">OOP</span><span class="skill-tag">Tech Blogging</span><span class="skill-tag">Chess</span><span class="skill-tag">Linux Ricing</span>
</div>
</div>
</div>
</template>
<template id="tpl-blog">
<div class="exp-header">
<div class="page-title-row">
<h2 class="page-title">blog</h2>
<span class="page-tag">writings</span>
</div>
<p class="page-subtitle">Articles and technical deep-dives.</p>
</div>
<div class="blog-list" id="blog-list"></div>
</template>
<!-- ─── Article Modal (body-level for z-index) ─── -->
<div class="article-overlay" id="article-overlay" onclick="closeArticle(event)">
<div class="article-modal" onclick="event.stopPropagation()">
<button class="article-close" onclick="closeArticle(null, true)">×</button>
<div class="article-content" id="article-content"></div>
</div>
</div>
<!-- Screen Reader Announcer -->
<div id="sr-announcer" class="sr-only" aria-live="polite"></div>
<!-- Scripts -->
<script src="knowledge-base.js"></script>
<script src="llm-chat.js"></script>
<script src="script.js"></script>
<script src="hero-effects.js"></script>
<script src="lib/marked.min.js"></script>
<script src="blog.js"></script>
<script src="desktop.js"></script>
</body>
</html>