-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
508 lines (440 loc) · 16.4 KB
/
Copy pathresume.html
File metadata and controls
508 lines (440 loc) · 16.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tasfin Mahmud — Resume | CS Researcher & Full-Stack Developer</title>
<meta name="description" content="Resume of Tasfin Mahmud — Computer Science researcher at BRAC University. Specializing in Graph Neural Networks, Causal Inference, and Reinforcement Learning. Full-stack developer and open-source contributor." />
<meta name="keywords" content="Tasfin Mahmud, resume, CV, computer science, BRAC University, GNN, graph neural networks, causal inference, reinforcement learning, full stack developer, open source, GSoC 2027" />
<meta name="author" content="Tasfin Mahmud" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://tasfinmahmud.github.io/resume.html" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://tasfinmahmud.github.io/resume.html" />
<meta property="og:title" content="Tasfin Mahmud — Resume" />
<meta property="og:description" content="CS researcher at BRAC University. GNNs, Causal Inference, RL. Full-stack developer & open-source contributor." />
<meta property="og:image" content="https://tasfinmahmud.github.io/profile.jpg" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@tasfinmahmud1" />
<meta name="twitter:creator" content="@tasfinmahmud1" />
<meta name="twitter:title" content="Tasfin Mahmud — Resume" />
<meta name="twitter:description" content="CS researcher at BRAC University. GNNs, Causal Inference, RL." />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Tasfin Mahmud",
"url": "https://tasfinmahmud.github.io",
"jobTitle": "Computer Science Researcher & Full-Stack Developer",
"affiliation": { "@type": "EducationalOrganization", "name": "BRAC University" },
"sameAs": [
"https://github.com/TasfinMahmud",
"https://linkedin.com/in/tasfin-mahmud-737a56329",
"https://x.com/tasfinmahmud1"
]
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', sans-serif;
color: #1a1a2e;
background: #eef0f4;
line-height: 1.45;
-webkit-font-smoothing: antialiased;
}
a { color: #4a5568; text-decoration: none; }
a:hover { color: #7C3AED; }
/* ============ DOWNLOAD BAR (screen only) ============ */
.toolbar {
position: sticky;
top: 0;
z-index: 100;
background: #1a1a2e;
display: flex;
justify-content: center;
align-items: center;
gap: 16px;
padding: 10px 24px;
}
.toolbar span { color: #94A3B8; font-size: 0.82rem; }
.toolbar .btn-dl {
padding: 7px 18px;
background: linear-gradient(135deg, #7C3AED, #06B6D4);
color: #fff;
border: none;
border-radius: 6px;
font-weight: 600;
font-size: 0.82rem;
cursor: pointer;
font-family: inherit;
}
.toolbar .btn-back {
color: #94A3B8;
font-size: 0.82rem;
border: 1px solid #2d2d44;
padding: 7px 16px;
border-radius: 6px;
}
.toolbar .btn-back:hover { border-color: #7C3AED; color: #C084FC; }
/* ============ PAGE CONTAINER ============ */
.page {
width: 8.5in;
min-height: 11in;
margin: 24px auto;
background: #fff;
box-shadow: 0 4px 24px rgba(0,0,0,0.12);
padding: 0;
overflow: hidden;
}
/* ============ HEADER ============ */
.header {
padding: 28px 40px 20px;
border-bottom: 3px solid #7C3AED;
}
.header-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.name {
font-size: 1.85rem;
font-weight: 800;
color: #1a1a2e;
letter-spacing: -0.5px;
line-height: 1.1;
}
.title-line {
font-size: 0.88rem;
font-weight: 600;
color: #7C3AED;
margin-top: 3px;
}
.contact-col {
text-align: right;
font-size: 0.78rem;
color: #4a5568;
line-height: 1.65;
}
.contact-col a { color: #4a5568; }
.contact-col a:hover { color: #7C3AED; }
/* ============ BODY ============ */
.body {
padding: 16px 40px 24px;
display: grid;
grid-template-columns: 1fr;
gap: 0;
}
/* ============ SECTION ============ */
.sec {
margin-bottom: 14px;
}
.sec-title {
font-size: 0.7rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 2px;
color: #7C3AED;
border-bottom: 1.5px solid #e2e8f0;
padding-bottom: 4px;
margin-bottom: 8px;
}
/* ============ ENTRY (project / experience) ============ */
.entry { margin-bottom: 10px; }
.entry:last-child { margin-bottom: 0; }
.entry-head {
display: flex;
justify-content: space-between;
align-items: baseline;
}
.entry-title {
font-size: 0.88rem;
font-weight: 700;
color: #1a1a2e;
}
.entry-sub {
font-weight: 600;
color: #7C3AED;
font-size: 0.82rem;
}
.entry-date {
font-size: 0.76rem;
color: #718096;
font-weight: 500;
white-space: nowrap;
}
.entry-org {
font-size: 0.82rem;
color: #4a5568;
font-weight: 500;
}
ul.bullets {
list-style: none;
margin-top: 3px;
}
ul.bullets li {
font-size: 0.82rem;
color: #374151;
padding-left: 14px;
position: relative;
margin-bottom: 1.5px;
line-height: 1.45;
}
ul.bullets li::before {
content: '•';
position: absolute;
left: 2px;
color: #7C3AED;
font-weight: 900;
font-size: 0.9rem;
line-height: 1.45;
}
.tags {
display: inline-flex;
flex-wrap: wrap;
gap: 4px;
margin-top: 3px;
}
.tag {
font-family: 'JetBrains Mono', monospace;
font-size: 0.62rem;
font-weight: 600;
padding: 1px 6px;
border: 1px solid #e2e8f0;
border-radius: 3px;
color: #4a5568;
background: #f8f9fc;
}
/* ============ SKILLS GRID ============ */
.skills-table {
width: 100%;
}
.skills-table td {
font-size: 0.82rem;
padding: 2px 0;
vertical-align: top;
}
.skills-table .cat {
font-weight: 700;
color: #1a1a2e;
width: 100px;
padding-right: 8px;
}
.skills-table .vals {
color: #374151;
}
/* ============ EDUCATION ============ */
.edu-head {
display: flex;
justify-content: space-between;
align-items: baseline;
}
.edu-school {
font-size: 0.88rem;
font-weight: 700;
}
.edu-degree {
font-size: 0.82rem;
color: #4a5568;
font-weight: 500;
}
.edu-courses {
font-size: 0.78rem;
color: #718096;
margin-top: 2px;
line-height: 1.5;
}
/* ============ ACTIVITIES ============ */
.act-item {
font-size: 0.82rem;
margin-bottom: 2px;
color: #374151;
}
.act-item strong {
color: #1a1a2e;
}
/* ============ PRINT STYLES ============ */
@media print {
html, body {
background: #fff;
margin: 0;
padding: 0;
}
.toolbar { display: none !important; }
.page {
width: 100%;
min-height: auto;
margin: 0;
box-shadow: none;
padding: 0;
}
.header {
padding: 24px 36px 18px;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
.body {
padding: 14px 36px 20px;
}
.sec-title {
color: #7C3AED !important;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
ul.bullets li::before {
color: #7C3AED !important;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
.title-line {
color: #7C3AED !important;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
.entry-sub {
color: #7C3AED !important;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
@page {
margin: 0;
size: letter;
}
}
</style>
</head>
<body>
<!-- Toolbar (hidden in print) -->
<div class="toolbar">
<a href="/" class="btn-back">← Portfolio</a>
<span>Tasfin Mahmud — Resume</span>
<button class="btn-dl" onclick="window.print()">⬇ Save as PDF</button>
</div>
<!-- Resume Page -->
<div class="page">
<!-- HEADER -->
<div class="header">
<div class="header-top">
<div>
<div class="name">Tasfin Mahmud</div>
<div class="title-line">GNN & Causal ML Researcher · Full-Stack Developer · GSoC '27 Aspirant</div>
</div>
<div class="contact-col">
<a href="mailto:tasfinmahmud1@gmail.com">tasfinmahmud1@gmail.com</a><br>
<a href="https://tasfinmahmud.github.io">tasfinmahmud.github.io</a><br>
<a href="https://github.com/TasfinMahmud">github.com/TasfinMahmud</a><br>
<a href="https://linkedin.com/in/tasfin-mahmud-737a56329">linkedin.com/in/tasfin-mahmud</a><br>
Dhaka, Bangladesh
</div>
</div>
</div>
<!-- BODY -->
<div class="body">
<!-- EDUCATION -->
<div class="sec">
<div class="sec-title">Education</div>
<div class="edu-head">
<div>
<div class="edu-school">BRAC University, Dhaka</div>
<div class="edu-degree">Bachelor of Science in Computer Science · Minor in Mathematics</div>
</div>
<div class="entry-date">Sep 2022 — May 2027</div>
</div>
<div class="edu-courses"><strong>Coursework:</strong> Data Structures & Algorithms, Machine Learning, Stochastic Processes, Operations Research, OOP, Database Systems, Discrete Math, Linear Algebra</div>
</div>
<!-- TECHNICAL SKILLS -->
<div class="sec">
<div class="sec-title">Technical Skills</div>
<table class="skills-table">
<tr><td class="cat">Languages</td><td class="vals">JavaScript (ES6+), TypeScript, Python, Java, C/C++, SQL, HTML5, CSS3</td></tr>
<tr><td class="cat">Frontend</td><td class="vals">React, Next.js, Framer Motion, Tailwind CSS, Bootstrap, Responsive Design</td></tr>
<tr><td class="cat">Backend</td><td class="vals">Node.js, Express.js, Flask, REST API Design, WebSocket</td></tr>
<tr><td class="cat">Database</td><td class="vals">MongoDB, Firebase (Firestore/Auth), MySQL, PostgreSQL</td></tr>
<tr><td class="cat">AI / ML</td><td class="vals">NLP, Sentiment Analysis, Google Gemini API, scikit-learn, TensorFlow (basics)</td></tr>
<tr><td class="cat">Tools</td><td class="vals">Git, GitHub Actions, Docker, Linux, VS Code, Figma, Postman, Vite</td></tr>
</table>
</div>
<!-- PROJECTS -->
<div class="sec">
<div class="sec-title">Projects</div>
<div class="entry">
<div class="entry-head">
<div class="entry-title">FinTrack Dashboard <span class="entry-sub">— AI-Powered Financial Analytics</span></div>
<span class="entry-date">2025 · <a href="https://tasfinmahmud.github.io/fintrack-dashboard/">Live</a></span>
</div>
<ul class="bullets">
<li>Built real-time financial dashboard with portfolio analytics, spending categorization, and AI-driven budget insights</li>
<li>Implemented 5 interactive Chart.js visualizations (line, doughnut, bar, radar, polar) with animated transitions</li>
<li>Engineered fully responsive glassmorphism UI achieving 95+ Lighthouse accessibility score</li>
</ul>
<div class="tags"><span class="tag">JavaScript</span><span class="tag">Chart.js</span><span class="tag">CSS3</span><span class="tag">Responsive</span></div>
</div>
<div class="entry">
<div class="entry-head">
<div class="entry-title">AI Sentiment Analyzer <span class="entry-sub">— NLP Emotion Detection</span></div>
<span class="entry-date">2025 · <a href="https://tasfinmahmud.github.io/ai-sentiment-analyzer/">Live</a></span>
</div>
<ul class="bullets">
<li>Developed NLP engine for real-time sentiment analysis, classifying text across 6 emotion categories with confidence scoring</li>
<li>Built analytics dashboard with sentence-level breakdown, keyword extraction, and exportable reports</li>
</ul>
<div class="tags"><span class="tag">JavaScript</span><span class="tag">NLP</span><span class="tag">Chart.js</span><span class="tag">AI/ML</span></div>
</div>
<div class="entry">
<div class="entry-head">
<div class="entry-title">ShopVibe E-Commerce <span class="entry-sub">— Full-Stack Online Store</span></div>
<span class="entry-date">2025 · <a href="https://tasfinmahmud.github.io/ecommerce-platform/">Live</a></span>
</div>
<ul class="bullets">
<li>Architected e-commerce platform with product catalog, real-time search, cart management, and multi-step checkout</li>
<li>Implemented persistent cart with LocalStorage, quantity controls, and optimistic UI updates</li>
</ul>
<div class="tags"><span class="tag">JavaScript</span><span class="tag">CSS3</span><span class="tag">Responsive</span><span class="tag">LocalStorage</span></div>
</div>
<div class="entry">
<div class="entry-head">
<div class="entry-title">VibeBot <span class="entry-sub">— AI Discord Bot with Gemini</span></div>
<span class="entry-date">2025 · <a href="https://github.com/TasfinMahmud/vibebot">Source</a></span>
</div>
<ul class="bullets">
<li>Engineered 24/7 Discord bot with Google Gemini API for context-aware Bengali responses across 4+ servers</li>
<li>Implemented auto-reconnect, rate limiting, error recovery, and server-specific configuration management</li>
</ul>
<div class="tags"><span class="tag">Node.js</span><span class="tag">Discord.js</span><span class="tag">Gemini API</span></div>
</div>
<div class="entry">
<div class="entry-head">
<div class="entry-title">Portfolio Website <span class="entry-sub">— React + Framer Motion</span></div>
<span class="entry-date">2025 · <a href="https://tasfinmahmud.github.io">Live</a></span>
</div>
<ul class="bullets">
<li>Built modern React portfolio with scroll animations, interactive particles, AI chatbot widget, and working contact form</li>
</ul>
<div class="tags"><span class="tag">React</span><span class="tag">Framer Motion</span><span class="tag">Vite</span><span class="tag">Formspree</span></div>
</div>
</div>
<!-- RESEARCH INTERESTS -->
<div class="sec">
<div class="sec-title">Research Interests</div>
<ul class="bullets">
<li><strong>Graph Neural Networks:</strong> GNN architectures (LightGCN, GAT, NGCF, GraphSAGE) for recommendation systems; benchmarking on Open Bandit Dataset</li>
<li><strong>Causal Inference & RL:</strong> Causal reasoning methods and reinforcement learning for robust, explainable AI decision-making</li>
<li><strong>Open Source:</strong> Contributing to OSS ecosystems (Rocket.Chat, Joplin, FOSSASIA); preparing for Google Summer of Code 2027</li>
</ul>
</div>
<!-- ACTIVITIES -->
<div class="sec">
<div class="sec-title">Activities & Achievements</div>
<div class="act-item"><strong>GSoC 2027 Candidate</strong> — Building production-ready OSS projects and portfolio for selection</div>
<div class="act-item"><strong>Open Source Contributor</strong> — 6+ public repos with live deployments on GitHub Pages</div>
<div class="act-item"><strong>Technical Author</strong> — Writing comprehensive LaTeX study guides for university CS courses</div>
</div>
</div>
</div>
</body>
</html>