-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
461 lines (413 loc) · 13.8 KB
/
Copy pathindex.html
File metadata and controls
461 lines (413 loc) · 13.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>devdot4 — DevOps Engineer</title>
<meta name="description" content="DevOps Engineer available for work. Infrastructure, CI/CD, Kubernetes, cloud platforms." />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0c0c0c;
--bg2: #111;
--border: #1e1e1e;
--green: #00ff88;
--green-dim: #00cc6a;
--cyan: #00d4ff;
--gray: #555;
--text: #c8c8c8;
--text-dim: #666;
--red: #ff4757;
--yellow: #ffd32a;
--font: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
}
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--font);
font-size: 14px;
line-height: 1.6;
min-height: 100vh;
}
::selection { background: var(--green); color: #000; }
/* ── SCANLINE OVERLAY ── */
body::before {
content: '';
position: fixed;
inset: 0;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(0,0,0,0.03) 2px,
rgba(0,0,0,0.03) 4px
);
pointer-events: none;
z-index: 1000;
}
/* ── LAYOUT ── */
.container {
max-width: 760px;
margin: 0 auto;
padding: 0 24px;
}
section { padding: 60px 0; }
section + section { border-top: 1px solid var(--border); }
/* ── TERMINAL WINDOW CHROME ── */
.term-chrome {
background: #161616;
border: 1px solid var(--border);
border-radius: 8px;
overflow: hidden;
}
.term-titlebar {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
background: #1a1a1a;
border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow{ background: #febc2e; }
.dot-green { background: #28c840; }
.term-title {
flex: 1;
text-align: center;
color: var(--text-dim);
font-size: 12px;
}
.term-body { padding: 24px; }
/* ── PROMPT LINE ── */
.prompt-line { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.prompt-user { color: var(--green); }
.prompt-at { color: var(--text-dim); }
.prompt-host { color: var(--cyan); }
.prompt-path { color: var(--text-dim); }
.prompt-sym { color: var(--green); }
.prompt-cmd { color: var(--text); }
.output-line { padding-left: 0; margin-bottom: 4px; color: var(--text); }
.output-line.key { color: var(--text-dim); }
.output-line.val { color: var(--green); padding-left: 16px; }
.output-line.dim { color: var(--text-dim); }
/* ── HERO ── */
#hero { padding-top: 80px; padding-bottom: 80px; }
.name-line {
font-size: clamp(28px, 5vw, 42px);
color: var(--green);
letter-spacing: -0.5px;
margin-bottom: 6px;
}
.tagline {
font-size: 16px;
color: var(--text-dim);
margin-bottom: 32px;
}
.status-badge {
display: inline-flex;
align-items: center;
gap: 8px;
border: 1px solid var(--green);
color: var(--green);
padding: 6px 14px;
border-radius: 4px;
font-size: 12px;
}
.status-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--green);
animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
/* ── TYPED CURSOR ── */
.cursor {
display: inline-block;
width: 8px;
height: 1em;
background: var(--green);
vertical-align: text-bottom;
animation: cursor-blink 1s step-end infinite;
margin-left: 2px;
}
@keyframes cursor-blink { 0%,100%{opacity:1} 50%{opacity:0} }
/* ── SKILLS ── */
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 12px;
margin-top: 24px;
}
.skill-group { }
.skill-label {
color: var(--cyan);
font-size: 11px;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 8px;
}
.skill-list { list-style: none; }
.skill-list li { color: var(--text); padding: 2px 0; }
.skill-list li::before { content: '▸ '; color: var(--green); }
/* ── SECTION HEADERS ── */
.section-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 24px;
}
.section-header h2 {
font-size: 13px;
color: var(--text-dim);
letter-spacing: 2px;
text-transform: uppercase;
font-weight: 400;
}
.section-header::after {
content: '';
flex: 1;
height: 1px;
background: var(--border);
}
.section-comment { color: var(--gray); font-size: 13px; }
/* ── SERVICES ── */
.service-list { list-style: none; margin-top: 16px; }
.service-list li {
display: flex;
gap: 12px;
padding: 12px 0;
border-bottom: 1px solid var(--border);
align-items: flex-start;
}
.service-list li:last-child { border-bottom: none; }
.svc-icon { color: var(--green); width: 20px; flex-shrink: 0; }
.svc-name { color: var(--text); }
.svc-desc { color: var(--text-dim); font-size: 13px; margin-top: 2px; }
/* ── CONTACT ── */
.contact-links { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.contact-link {
display: flex;
align-items: center;
gap: 12px;
color: var(--text);
text-decoration: none;
padding: 12px 16px;
border: 1px solid var(--border);
border-radius: 4px;
transition: border-color 0.15s, color 0.15s;
}
.contact-link:hover {
border-color: var(--green);
color: var(--green);
}
.contact-link .link-label { color: var(--text-dim); font-size: 12px; width: 60px; flex-shrink: 0; }
.contact-link .link-val { flex: 1; }
.contact-link .link-arrow { color: var(--text-dim); margin-left: auto; }
/* ── FOOTER ── */
footer {
border-top: 1px solid var(--border);
padding: 32px 0;
text-align: center;
color: var(--text-dim);
font-size: 12px;
}
footer span { color: var(--green); }
/* ── RESPONSIVE ── */
@media (max-width: 480px) {
.skills-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<!-- ── HERO ── -->
<section id="hero">
<div class="container">
<div class="term-chrome">
<div class="term-titlebar">
<div class="dot dot-red"></div>
<div class="dot dot-yellow"></div>
<div class="dot dot-green"></div>
<div class="term-title">bash — 80×24</div>
</div>
<div class="term-body">
<div class="prompt-line">
<span class="prompt-user">devdot4</span>
<span class="prompt-at">@</span>
<span class="prompt-host">4dot.dev</span>
<span class="prompt-path">~</span>
<span class="prompt-sym">$</span>
<span class="prompt-cmd" id="typed-cmd"></span><span class="cursor" id="cursor"></span>
</div>
<div id="whoami-output" style="display:none; margin-top: 16px;">
<div class="output-line dim"># ──────────────────────────────────────</div>
<div class="output-line">
<span class="key">name</span><span style="color:var(--text-dim)">: </span><span class="val">devdot4</span>
</div>
<div class="output-line">
<span class="key">role</span><span style="color:var(--text-dim)">: </span><span class="val">DevOps Engineer</span>
</div>
<div class="output-line">
<span class="key">focus</span><span style="color:var(--text-dim)">: </span><span class="val">Infrastructure · CI/CD · Cloud · Automation</span>
</div>
<div class="output-line">
<span class="key">status</span><span style="color:var(--text-dim)">: </span><span style="color:var(--green)">● available for work</span>
</div>
<div class="output-line dim"># ──────────────────────────────────────</div>
</div>
</div>
</div>
</div>
</section>
<!-- ── SKILLS ── -->
<section id="skills">
<div class="container">
<div class="section-header">
<h2>Skills</h2>
</div>
<div class="section-comment"># what I work with</div>
<div class="skills-grid">
<div class="skill-group">
<div class="skill-label">Cloud & Infra</div>
<ul class="skill-list">
<li>AWS / GCP / Azure</li>
<li>Terraform / Pulumi</li>
<li>Kubernetes (EKS, GKE)</li>
<li>Linux / networking</li>
</ul>
</div>
<div class="skill-group">
<div class="skill-label">CI/CD & Automation</div>
<ul class="skill-list">
<li>GitHub Actions</li>
<li>GitLab CI</li>
<li>ArgoCD / Flux</li>
<li>Ansible</li>
</ul>
</div>
<div class="skill-group">
<div class="skill-label">Observability</div>
<ul class="skill-list">
<li>Prometheus / Grafana</li>
<li>OpenTelemetry</li>
<li>Datadog / PagerDuty</li>
<li>ELK Stack</li>
</ul>
</div>
<div class="skill-group">
<div class="skill-label">Containers & Dev</div>
<ul class="skill-list">
<li>Docker / Helm</li>
<li>Bash / Python / Go</li>
<li>Vault / Secrets management</li>
<li>Service mesh (Istio)</li>
</ul>
</div>
</div>
</div>
</section>
<!-- ── SERVICES ── -->
<section id="services">
<div class="container">
<div class="section-header">
<h2>Services</h2>
</div>
<div class="section-comment"># what I can do for you</div>
<ul class="service-list">
<li>
<div class="svc-icon">⬡</div>
<div>
<div class="svc-name">Infrastructure as Code</div>
<div class="svc-desc">Design, build, and manage cloud infra with Terraform or Pulumi — reproducible, auditable, drift-free.</div>
</div>
</li>
<li>
<div class="svc-icon">⬡</div>
<div>
<div class="svc-name">CI/CD Pipeline Design</div>
<div class="svc-desc">Fast, reliable pipelines from commit to production — GitHub Actions, GitLab CI, ArgoCD.</div>
</div>
</li>
<li>
<div class="svc-icon">⬡</div>
<div>
<div class="svc-name">Kubernetes Platform Engineering</div>
<div class="svc-desc">Cluster setup, multi-tenancy, autoscaling, security hardening, and day-2 operations.</div>
</div>
</li>
<li>
<div class="svc-icon">⬡</div>
<div>
<div class="svc-name">Observability & Reliability</div>
<div class="svc-desc">Metrics, logs, traces, and alerting that actually tell you what's wrong before users do.</div>
</div>
</li>
<li>
<div class="svc-icon">⬡</div>
<div>
<div class="svc-name">DevOps Consulting</div>
<div class="svc-desc">Audits, architecture reviews, and team enablement — shipping faster with less toil.</div>
</div>
</li>
</ul>
</div>
</section>
<!-- ── CONTACT ── -->
<section id="contact">
<div class="container">
<div class="section-header">
<h2>Contact</h2>
</div>
<div class="section-comment"># let's work together</div>
<div class="contact-links">
<a class="contact-link" href="mailto:devdot4@proton.me">
<span class="link-label">email</span>
<span class="link-val">devdot4@proton.me</span>
<span class="link-arrow">→</span>
</a>
<a class="contact-link" href="https://github.com/devdot4" target="_blank" rel="noopener">
<span class="link-label">github</span>
<span class="link-val">github.com/devdot4</span>
<span class="link-arrow">→</span>
</a>
<a class="contact-link" href="https://linkedin.com/in/devdot4" target="_blank" rel="noopener">
<span class="link-label">linkedin</span>
<span class="link-val">linkedin.com/in/devdot4</span>
<span class="link-arrow">→</span>
</a>
</div>
</div>
</section>
<footer>
<div class="container">
<span>devdot4</span> · 4dot.dev · DevOps Engineer
</div>
</footer>
<script>
// Typing animation
const cmd = '$ whoami';
const el = document.getElementById('typed-cmd');
const cursor = document.getElementById('cursor');
const output = document.getElementById('whoami-output');
let i = 0;
// Remove the $ from the prompt since it's already in the HTML
const text = 'whoami';
function type() {
if (i <= text.length) {
el.textContent = text.slice(0, i);
i++;
setTimeout(type, i === 1 ? 400 : 80 + Math.random() * 40);
} else {
// Done typing — hide cursor, show output
setTimeout(() => {
cursor.style.display = 'none';
output.style.display = 'block';
}, 300);
}
}
setTimeout(type, 600);
</script>
</body>
</html>