-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
273 lines (253 loc) · 14.8 KB
/
index.html
File metadata and controls
273 lines (253 loc) · 14.8 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sk Ali Dara | Full-Stack Developer </title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<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=Inter:wght@400;500;700&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #334155; overflow-x: hidden; }
.mono { font-family: 'JetBrains Mono', monospace; }
.chart-container { position: relative; width: 100%; max-width: 500px; margin: auto; height: 350px; }
/* Marquee Animation Logic */
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.animate-marquee {
display: flex;
width: max-content;
animation: marquee 50s linear infinite; /* Adjusted speed for readability */
}
.marquee-container:hover .animate-marquee {
animation-play-state: paused;
}
/* Gradient Fade for Marquee */
.marquee-mask {
mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.timeline-dot::before {
content: '';
position: absolute;
left: -9px;
top: 5px;
width: 16px;
height: 16px;
background-color: #2563eb;
border-radius: 50%;
border: 4px solid #f8fafc;
}
@media print {
.no-print { display: none !important; }
.marquee-mask { mask-image: none; -webkit-mask-image: none; }
.animate-marquee { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
.project-card { margin-bottom: 1rem; }
}
</style>
</head>
<body class="antialiased">
<header id="header" class="bg-white/90 backdrop-blur-md sticky top-0 z-50 shadow-sm no-print">
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="text-2xl font-bold text-slate-800">Sk Ali Dara</div>
<div class="hidden md:flex space-x-8 items-center font-medium text-slate-600">
<a href="#projects" class="hover:text-blue-600 transition-colors">Projects</a>
<a href="#experience" class="hover:text-blue-600 transition-colors">History</a>
<a href="#skills" class="hover:text-blue-600 transition-colors">Skills</a>
</div>
</nav>
</header>
<main class="py-12">
<section id="hero" class="container mx-auto px-6 text-center mb-24">
<span class="px-4 py-1.5 bg-blue-100 text-blue-700 rounded-full text-sm font-bold uppercase tracking-wider">The Engineering Pivot</span>
<h1 class="text-4xl md:text-6xl font-bold text-slate-900 mt-6 mb-6">Full-Stack Engineer <br><span class="text-blue-600">& Data Strategist</span></h1>
<p class="text-lg md:text-xl text-slate-600 max-w-3xl mx-auto mb-8 leading-relaxed">
Self-taught Software Engineer <strong> pivoting from Power Trading(Finance), Business Development, Sales and Marketing</strong>.
to build low-latency systems, scalable web backends, and data-driven business growth.
</p>
<div class="flex flex-col sm:flex-row justify-center items-center gap-4 mb-8">
<div id="contact-links" class="flex space-x-6 text-slate-500 font-medium"></div>
<button onclick="window.print()" class="no-print flex items-center px-6 py-2.5 bg-slate-900 text-white rounded-full hover:bg-slate-800 transition-all shadow-md font-medium">
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"></path></svg>
Download as PDF
</button>
</div>
</section>
<section id="projects" class="mb-24 overflow-hidden">
<h2 class="text-3xl font-bold text-center text-slate-800 mb-12">Technical Portfolio</h2>
<div class="marquee-container marquee-mask relative">
<div id="github-projects" class="animate-marquee gap-8 py-4">
</div>
</div>
</section>
<section id="skills" class="container mx-auto px-6 mb-24 bg-slate-50 py-12 rounded-3xl border border-slate-100">
<h2 class="text-3xl font-bold text-center text-slate-800 mb-8">Technical Proficiency</h2>
<div class="chart-container">
<canvas id="skillsChart"></canvas>
</div>
</section>
<section id="experience" class="container mx-auto px-6 mb-24">
<h2 class="text-3xl font-bold text-center text-slate-800 mb-12">Professional Journey</h2>
<div class="max-w-4xl mx-auto">
<div id="experience-timeline" class="relative border-l-2 border-slate-200 ml-4 md:ml-6 space-y-12 pb-8"></div>
</div>
</section>
</main>
<footer class="bg-white border-t border-slate-200 py-12 no-print">
<div class="container mx-auto px-6 text-center">
<p class="text-slate-400 font-medium mono mb-2">Designed & Developed by</p>
<p class="text-xl font-bold text-slate-800 tracking-tight">@skalidara</p>
<div class="mt-6 flex justify-center space-x-4">
<div class="h-1 w-12 bg-blue-600 rounded-full"></div>
</div>
</div>
</footer>
<script>
const resumeData = {
contact: {
email: "skalidara@gmail.com",
linkedin: "https://www.linkedin.com/in/ali-dara-sk/",
portfolio: "https://github.com/danishdynamic"
},
projects: [
{
title: "Kubernetes Ecosystem Contributor | Spidernet-io (Spiderpool)",
desc: "Enhanced driver security by transitioning to node-local authorization verbs (associated-node:update), enforcing the principle of least privilege across the cluster.",
tech: ['Go', 'Kubernetes API', 'RBAC', 'YAML', 'K8s Dynamic Resource Allocation (DRA)'],
link: "https://github.com/danishdynamic"
},
{
title: "Open Source Contributor | Open Climate Fix",
desc: "Contributed to the Quartz Solar Forecast project, supporting open-source initiatives to improve renewable energy predictability.",
tech: ['Python', 'Data Processing'],
link: "https://github.com/danishdynamic"
},
{
title: "Real-time Voting System (High-Throughput Architecture)",
desc: "Architected a distributed voting system capable of handling high-concurrency event streams using a Microservices approach.",
tech: ['Python', 'Flask',' Apache Kafka', 'Redis', 'Docker', 'GitHub Actions'],
link: "https://github.com/danishdynamic"
},
{
title: "MERN Stack Platform",
desc: "Developed a scalable web application (CRUD) using the MERN stack (MongoDB, Express, React, Node.js)",
tech: ['MongoDB', 'Express.js', 'React', 'Node.js', 'Render deployment'],
link: "https://github.com/danishdynamic"
}
],
experience: [
{
title: "Full-Stack Development & SEO",
company: "Freelancer pivoting towards teachinical roles",
location: "Remote",
dates: "Dec 2023 – Present",
details: [
"Architecting robust backends using Python & javascript (Django/FastAPI/Nodejs) and contributing to open source repos like OpenClimateFix & Spiderpool (Kubernetes).",
"Optimizing technical SEO infrastructure, leading to significant increases in organic conversion.",
"Building automated data scraping and extraction tools for business intelligence."
]
},
{
title: "BDR Level II & Technical Growth",
company: "Databox",
location: "Ljubljana / Boston (Remote)",
dates: "Apr 2022 – Nov 2023",
details: [
"Leveraged market research and active listening to identify technical pain points for enterprise clients.",
"Utilized data analysis in Excel to track user behavior and improve PLG (Product-Led Growth) strategies.",
"Promoted to Level II within 9 months based on performance and analytical contributions to the sales cycle."
]
},
{
title: "Investment Analyst",
company: "Expert Dojo",
location: "California, US (Remote)",
dates: "Jul 2021 – Mar 2022",
details: [
"Conducted technical due diligence and valuation analysis for pre-seed and seed-stage startups.",
"Synthesized complex market data into actionable investment reports for fund management."
]
},
{
title: "Trader (Electricity Markets)",
company: "COMCOM D.o.o",
location: "Ljubljana, Slovenia",
dates: "Feb 2019 – Jun 2021",
details: [
"Executed high-frequency trades in the UK energy market based on real-time data analysis.",
"Developed custom analytical tools to process market volatility and optimize trade entry/exit."
]
}
]
};
document.addEventListener('DOMContentLoaded', () => {
const projectContainer = document.getElementById('github-projects');
const createCardHTML = (p) => `
<div class="project-card bg-white p-6 rounded-2xl shadow-sm border border-slate-200 flex flex-col w-[320px] md:w-[420px] shrink-0 hover:border-blue-400 transition-all duration-300">
<div class="flex justify-between items-start mb-4">
<h3 class="font-bold text-lg text-slate-800">${p.title}</h3>
<a href="${p.link}" target="_blank" class="text-blue-500 hover:text-blue-700">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path></svg>
</a>
</div>
<p class="text-slate-500 text-sm mb-6 flex-grow leading-relaxed">${p.desc}</p>
<div class="flex flex-wrap gap-2 mt-auto">
${p.tech.map(t => `<span class="mono text-[10px] bg-slate-100 px-2 py-1 rounded text-slate-600 font-bold uppercase">${t}</span>`).join('')}
</div>
</div>`;
// Quadruple the list if the project count is low to ensure the marquee spans the screen
const repeatCount = resumeData.projects.length < 5 ? 4 : 2;
let combinedHTML = '';
for(let i=0; i < repeatCount; i++) {
combinedHTML += resumeData.projects.map(p => createCardHTML(p)).join('');
}
projectContainer.innerHTML = combinedHTML;
const expTimeline = document.getElementById('experience-timeline');
resumeData.experience.forEach(exp => {
expTimeline.innerHTML += `
<div class="relative pl-8 timeline-dot">
<div class="flex flex-col md:flex-row md:justify-between mb-2">
<h3 class="text-xl font-bold text-slate-800">${exp.title}</h3>
<span class="text-blue-600 font-bold mono text-sm">${exp.dates}</span>
</div>
<p class="text-slate-500 font-medium mb-4">${exp.company} | ${exp.location}</p>
<ul class="list-disc list-outside ml-4 text-slate-500 space-y-2 text-sm md:text-base">
${exp.details.map(d => `<li>${d}</li>`).join('')}
</ul>
</div>`;
});
document.getElementById('contact-links').innerHTML = `
<a href="mailto:${resumeData.contact.email}" class="hover:text-blue-600">Email</a>
<span class="text-slate-300">•</span>
<a href="${resumeData.contact.linkedin}" target="_blank" class="hover:text-blue-600">LinkedIn</a>
<span class="text-slate-300">•</span>
<a href="${resumeData.contact.portfolio}" target="_blank" class="hover:text-blue-600">GitHub</a>
`;
const ctx = document.getElementById('skillsChart').getContext('2d');
new Chart(ctx, {
type: 'radar',
data: {
labels: ['Backend (Python/Django)', 'Frontend (React/TS)', 'Low-Level (C)', 'Data Analysis', 'SEO/Growth', 'System Design'],
datasets: [{
label: 'Proficiency Level %',
data: [85, 68, 62, 72, 70, 75],
backgroundColor: 'rgba(37, 99, 235, 0.1)',
borderColor: 'rgba(37, 99, 235, 1)',
borderWidth: 2,
pointBackgroundColor: 'rgba(37, 99, 235, 1)',
}]
},
options: {
scales: { r: { suggestedMin: 0, suggestedMax: 100, ticks: { display: false } } },
plugins: { legend: { display: false } },
maintainAspectRatio: false
}
});
});
</script>
</body>
</html>