-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
412 lines (368 loc) · 22.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Portfolio</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body class="overflow-x-hidden">
<canvas id="canvas"></canvas>
<nav class="fixed w-full z-50 glass">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<a href="#home" class="text-xl font-mono">OR</a>
<button id="menu-toggle" class="md:hidden">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16m-16 6h16" />
</svg>
</button>
<div class="hidden md:flex space-x-8">
<a href="#about" class="hover:text-[#FF6B6B] transition-colors">/about</a>
<a href="#work" class="hover:text-[#FF6B6B] transition-colors">/work</a>
<a href="#contact" class="hover:text-[#FF6B6B] transition-colors">/contact</a>
<a href="resume.pdf" class="hover:text-[#FF6B6B] transition-colors">/resume</a>
</div>
</div>
<div id="mobile-menu" class="mobile-menu bg-white w-full absolute top-full left-0 py-4 shadow-lg">
<div class="container mx-auto px-4 flex flex-col space-y-4">
<a href="#about" class="hover:text-[#FF6B6B] transition-colors">/about</a>
<a href="#work" class="hover:text-[#FF6B6B] transition-colors">/work</a>
<a href="#contact" class="hover:text-[#FF6B6B] transition-colors">/contact</a>
<a href="resume.pdf" class="hover:text-[#FF6B6B] transition-colors">/resume</a>
</div>
</div>
</nav>
<section id="home" class="scroll-section flex items-center justify-center relative">
<div class="container mx-auto px-4 text-center relative z-10 hero-content">
<h1 class="text-4xl md:text-6xl font-bold mb-6 typewriter" id="typewriter"></h1>
<p class="text-gray-600 mb-8 max-w-2xl mx-auto text-lg">
Software Developer & Machine Learning Engineer
</p>
</div>
</section>
<!-- About -->
<section id="about" class="scroll-section bg-gray-50">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-3xl font-bold mb-6">About Me</h2>
<p class="text-gray-600 mb-8">
I'm a Mathematics student who fell in love with coding along the way. When I'm not diving
into calculus at University of Chittagong, you'll find me building stuff with Python and
Next.js, or geeking out over machine learning algorithms.
</p>
<p class="text-gray-600 mb-8">
My journey in tech started with a deep curiosity for AI and has evolved into a career where I
combine technical expertise with creative problem-solving. I specialize in developing machine
learning models and creating intuitive user interfaces.
</p>
<div class="flex flex-wrap gap-3">
<span class="skill-badge bg-white px-4 py-2 rounded-full text-sm shadow-sm">Python</span>
<span class="skill-badge bg-white px-4 py-2 rounded-full text-sm shadow-sm">Machine
Learning</span>
<span class="skill-badge bg-white px-4 py-2 rounded-full text-sm shadow-sm">Next.js</span>
<span class="skill-badge bg-white px-4 py-2 rounded-full text-sm shadow-sm">React</span>
</div>
</div>
<div class="relative">
<img src="img/me2.jpg" alt="Profile" class="rounded-lg shadow-lg">
</div>
</div>
</div>
</section>
<!-- Work -->
<section id="work" class="scroll-section">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-12 text-center">Featured Work</h2>
<div class="grid md:grid-cols-2 gap-8">
<div class="project-card bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-bold mb-4">Diarrhea Prediction Model</h3>
<p class="text-gray-600 mb-4">Machine learning model analyzing environmental factors using Random
Forest and SVR</p>
<div class="flex flex-wrap gap-2">
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full">Python</span>
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full">scikit-learn</span>
</div>
</div>
<div class="project-card bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-bold mb-4">IMDB Sentiment Analysis</h3>
<p class="text-gray-600 mb-4">NLP-based sentiment analyzer with interactive Streamlit interface</p>
<div class="flex flex-wrap gap-2">
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full">Python</span>
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full">NLTK</span>
</div>
</div>
<div class="project-card bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-bold mb-4">httPY</h3>
<p class="text-gray-600 mb-4">A simple HTTP server implemented in Python that handles basic HTTP
requests and responds according to specified endpoints.</p>
<div class="flex flex-wrap gap-2">
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full">Python</span>
</div>
</div>
<div class="project-card bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-bold mb-4">HelpBot</h3>
<p class="text-gray-600 mb-4">HelpBot is a cutting-edge AI customer support chatbot built using
Next.js and Material-UI (MUI), providing a user-friendly and engaging experience for customers
seeking assistance.</p>
<div class="flex flex-wrap gap-2">
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full">Next.js</span>
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full">MUI</span>
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full">JavaScript</span>
</div>
</div>
</div>
</div>
</section>
<section id="skills" class="scroll-section bg-white">
<div class="container mx-auto px-4 py-20">
<h2 class="text-3xl font-bold mb-12 text-center">Technical Skills</h2>
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Languages -->
<div class="bg-gray-50 p-6 rounded-xl shadow-lg">
<h3 class="text-xl font-bold mb-4 text-[#FF6B6B]">Languages</h3>
<div class="flex flex-wrap gap-3">
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">Python</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">JavaScript</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">TypeScript</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">SQL</span>
</div>
</div>
<!-- Frameworks -->
<div class="bg-gray-50 p-6 rounded-xl shadow-lg">
<h3 class="text-xl font-bold mb-4 text-[#FF6B6B]">Frameworks</h3>
<div class="flex flex-wrap gap-3">
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">React</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">Next.js</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">TensorFlow</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">PyTorch</span>
</div>
</div>
<!-- Tools -->
<div class="bg-gray-50 p-6 rounded-xl shadow-lg">
<h3 class="text-xl font-bold mb-4 text-[#FF6B6B]">Tools & Tech</h3>
<div class="flex flex-wrap gap-3">
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">Git</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">Docker</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">AWS</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">Linux</span>
</div>
</div>
<!-- Machine Learning -->
<div class="bg-gray-50 p-6 rounded-xl shadow-lg">
<h3 class="text-xl font-bold mb-4 text-[#FF6B6B]">Machine Learning</h3>
<div class="flex flex-wrap gap-3">
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">Deep
Learning</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">NLP</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">Computer
Vision</span>
</div>
</div>
<!-- Web Development -->
<div class="bg-gray-50 p-6 rounded-xl shadow-lg">
<h3 class="text-xl font-bold mb-4 text-[#FF6B6B]">Web Development</h3>
<div class="flex flex-wrap gap-3">
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">HTML/CSS</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">TailwindCSS</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">Node.js</span>
</div>
</div>
<!-- Databases -->
<div class="bg-gray-50 p-6 rounded-xl shadow-lg">
<h3 class="text-xl font-bold mb-4 text-[#FF6B6B]">Databases</h3>
<div class="flex flex-wrap gap-3">
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">PostgreSQL</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">MongoDB</span>
<span
class="bg-white px-4 py-2 rounded-full text-sm shadow-sm hover:transform hover:scale-105 transition-transform duration-200">Redis</span>
</div>
</div>
</div>
</div>
</section>
<!-- Certifications -->
<section id="cert" class="scroll-section">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-12 text-center">My Certifications</h2>
<div class="grid md:grid-cols-2 gap-8">
<div class="project-card bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-bold mb-4">Programming in C++: A Hands-on Introduction</h3>
<p class="text-gray-600 mb-4">Codio (2024)</p>
</div>
<div class="project-card bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-bold mb-4">Python for Data Science, AI & Development</h3>
<p class="text-gray-600 mb-4">IBM (2024)</p>
</div>
<div class="project-card bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-bold mb-4">Web Application Technologies and Django</h3>
<p class="text-gray-600 mb-4">University of Michigan (2024)</p>
</div>
<div class="project-card bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-bold mb-4">Introduction to Programming with MATLAB</h3>
<p class="text-gray-600 mb-4">anderbilt University (2024)</p>
</div>
<div class="project-card bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-bold mb-4">Developing AI Applications with Python and Flask</h3>
<p class="text-gray-600 mb-4">IBM (2024)</p>
</div>
<div class="project-card bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-bold mb-4">Introduction to Cloud Computing</h3>
<p class="text-gray-600 mb-4">IBM (2024)</p>
</div>
</div>
</div>
</section>
<section id="contact" class="scroll-section bg-gray-50 flex items-center justify-center min-h-screen">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-8">Let's Connect</h2>
<div class="max-w-xl mx-auto bg-white p-10 rounded-xl shadow-xl">
<p class="text-gray-700 text-lg mb-8">Open to new opportunities and collaborations</p>
<div class="flex flex-col items-center gap-6">
<a href="mailto:[email protected]"
class="group inline-flex items-center gap-2 bg-black text-white px-8 py-4 rounded-lg hover:bg-[#ff5252] transition-all transform hover:-translate-y-1">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
</svg>
<span class="font-medium">[email protected]</span>
</a>
<div class="flex gap-6 mt-4">
<a href="https://github.com/yourusername"
class="text-gray-600 hover:text-[#FF6B6B] transition-colors">
<svg class="w-8 h-8" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
</svg>
</a>
<a href="https://linkedin.com/in/yourusername"
class="text-gray-600 hover:text-[#FF6B6B] transition-colors">
<svg class="w-8 h-8" fill="currentColor" viewBox="0 0 24 24">
<path
d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z" />
</svg>
</a>
<a href="https://twitter.com/yourusername"
class="text-gray-600 hover:text-[#FF6B6B] transition-colors">
<svg class="w-8 h-8" fill="currentColor" viewBox="0 0 24 24">
<path
d="M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z" />
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<script>
const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
let w, h, particles;
const particleCount = 25;
const particleColor = '#FF6B6B';
let mx = 0;
let my = 0;
let toggle = 0;
function init() {
w = canvas.width = window.innerWidth;
h = canvas.height = window.innerHeight;
particles = Array(particleCount).fill().map(() => ({
x: Math.random() * w,
y: Math.random() * h,
vx: Math.random() * 2 - 1,
vy: Math.random() * 2 - 1,
size: Math.random() * 2 + 2
}));
}
function animate() {
ctx.fillStyle = 'rgba(255,255,255,0.1)';
ctx.fillRect(0, 0, w, h);
particles.forEach((p, i) => {
// Calculate new position first
let newX = p.x + p.vx + (mx - w / 2) * 0.01;
let newY = p.y + p.vy + (my - h / 2) * 0.01;
// Check boundaries before updating position
if (newX < 0 || newX > w) {
p.vx *= -1;
newX = p.x; // Keep old position
}
if (newY < 0 || newY > h) {
p.vy *= -1;
newY = p.y; // Keep old position
}
// Update position
p.x = newX;
p.y = newY;
ctx.beginPath();
ctx.arc(p.x, p.y, p.size, 0, Math.PI * 2);
ctx.fillStyle = particleColor;
ctx.fill();
particles.slice(i + 1).forEach(p2 => {
let dx = p2.x - p.x;
let dy = p2.y - p.y;
let dist = Math.sqrt(dx * dx + dy * dy);
if (dist < 150) {
ctx.beginPath();
ctx.moveTo(p.x, p.y);
ctx.lineTo(p2.x, p2.y);
ctx.strokeStyle = `rgba(255,107,107,${0.2 * (1 - dist / 150)})`;
ctx.stroke();
}
});
});
requestAnimationFrame(animate);
}
init();
animate();
window.addEventListener('resize', init);
window.addEventListener('mousemove', e => {
mx = e.clientX;
my = e.clientY;
});
// Typewriter
const text = "Hi, I'm Obidur Rahman";
let i = 0;
const typewriter = document.getElementById('typewriter');
function type() {
if (i < text.length) {
typewriter.textContent += text.charAt(i++);
setTimeout(type, 100);
}
}
type();
// Mobile menu
const menuToggle = document.getElementById('menu-toggle');
const mobileMenu = document.getElementById('mobile-menu');
menuToggle.addEventListener('click', () => {
mobileMenu.classList.toggle('active');
});
document.addEventListener('click', e => {
if (!menuToggle.contains(e.target) && !mobileMenu.contains(e.target)) {
mobileMenu.classList.remove('active');
}
});
</script>
</body>
</html>