-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
534 lines (468 loc) · 22.4 KB
/
Copy pathindex.html
File metadata and controls
534 lines (468 loc) · 22.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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
<!DOCTYPE html>
<html lang="de" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Samuel Heynen - Portfolio. Entwickler, Linux-Enthusiast und Schüler. Projekte in Python, Java und Web-Development.">
<title>Samuel Heynen | Portfolio</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* --- CORE VIBE & FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;600&display=swap');
:root {
--bg-color: #0b0c10;
--text-color: #c5c6c7;
--accent-cyan: #66fcf1;
--accent-dark-cyan: #45a29e;
--neon-pink: #ff00ff;
--card-bg: rgba(11, 12, 16, 0.85);
--terminal-bg: #050505;
}
body {
margin: 0;
background-color: var(--bg-color);
color: var(--text-color);
font-family: 'Fira Code', monospace;
overflow-x: hidden;
}
/* --- BACKGROUND --- */
#canvas-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
/* --- UTILS --- */
.text-cyan { color: var(--accent-cyan); }
.text-pink { color: var(--neon-pink); }
/* Glitch Text */
.glitch-text:hover {
text-shadow: 2px 0 var(--neon-pink), -2px 0 var(--accent-cyan);
transition: text-shadow 0.1s;
}
/* Typing Cursor */
.typing-cursor::after {
content: '_';
animation: blink 1s step-end infinite;
color: var(--accent-cyan);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
/* --- COMPONENTS --- */
/* Glass Cards (Projects) */
.glass-card {
background: var(--card-bg);
border: 1px solid rgba(102, 252, 241, 0.1);
backdrop-filter: blur(5px);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.glass-card:hover {
transform: translateY(-5px);
border-color: var(--accent-cyan);
box-shadow: 0 0 15px rgba(102, 252, 241, 0.15);
}
/* Private/Locked Card */
.glass-card.private {
opacity: 0.7;
border-style: dashed;
border-color: #333;
}
.glass-card.private:hover {
transform: none;
box-shadow: none;
border-color: #444;
cursor: not-allowed;
}
.glass-card.private::after {
content: 'LOCK_ACCESS';
position: absolute;
top: 10px;
right: 10px;
font-size: 0.7rem;
color: #555;
border: 1px solid #555;
padding: 2px 6px;
transform: rotate(15deg);
}
/* Buttons */
.btn-cyber {
background: transparent;
border: 1px solid var(--accent-cyan);
color: var(--accent-cyan);
transition: all 0.3s;
box-shadow: 0 0 5px rgba(102, 252, 241, 0.2);
text-transform: uppercase;
letter-spacing: 1px;
display: inline-flex;
align-items: center;
gap: 0.5rem;
text-decoration: none;
}
.btn-cyber:hover {
background: var(--accent-cyan);
color: var(--bg-color);
box-shadow: 0 0 20px var(--accent-cyan);
}
.btn-cyber-ghost {
border: 1px solid #45a29e;
color: #45a29e;
}
.btn-cyber-ghost:hover {
background: rgba(69, 162, 158, 0.1);
color: var(--accent-cyan);
border-color: var(--accent-cyan);
}
.btn-disabled {
border: 1px solid #333;
color: #555;
cursor: not-allowed;
background: rgba(0,0,0,0.3);
}
/* Tags */
.tag {
font-size: 0.7rem;
padding: 2px 8px;
border-radius: 2px;
background: rgba(102, 252, 241, 0.05);
border: 1px solid rgba(102, 252, 241, 0.2);
color: var(--accent-dark-cyan);
}
/* Navbar */
nav {
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(102, 252, 241, 0.1);
}
/* Scroll Offset for Anchor Links (damit der Header nichts verdeckt) */
section {
scroll-margin-top: 80px;
}
</style>
</head>
<body class="flex flex-col min-h-screen">
<!-- Canvas Background -->
<canvas id="canvas-bg"></canvas>
<!-- Navigation -->
<nav class="fixed w-full z-50 px-6 py-4 flex justify-between items-center bg-opacity-90 bg-[#0b0c10]">
<a href="#home" class="text-xl font-bold tracking-tighter glitch-text cursor-pointer hover:no-underline text-white">
<span class="text-cyan"><</span>SHeynen.me<span class="text-cyan">/></span>
</a>
<div class="hidden md:flex space-x-8 text-sm">
<a href="#home" class="hover:text-cyan transition-colors text-gray-400 font-mono text-sm hover:no-underline">./home</a>
<a href="#projects" class="hover:text-cyan transition-colors text-gray-400 font-mono text-sm hover:no-underline">./projects</a>
<a href="#contact" class="hover:text-cyan transition-colors text-gray-400 font-mono text-sm hover:no-underline">./contact</a>
</div>
<a href="#contact" class="md:hidden text-cyan bg-transparent border-none cursor-pointer text-xl">
<i class="fa-solid fa-terminal"></i>
</a>
</nav>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center justify-center px-6 pt-20 relative z-10">
<div class="max-w-4xl w-full">
<p class="text-cyan mb-2 text-md font-light tracking-widest">PORTFOLIO INITIALIZED...</p>
<h1 class="text-5xl md:text-7xl font-bold mb-4 text-white tracking-tight glitch-text">
Samuel Heynen
</h1>
<h2 class="text-2xl md:text-3xl text-gray-400 mb-8">
<span class="text-pink">></span> <span id="typewriter"></span><span class="typing-cursor"></span>
</h2>
<p class="text-gray-400 max-w-xl text-lg mb-10 leading-relaxed border-l-2 border-cyan pl-4 bg-white/5 py-2 pr-2">
Hi! Ich bin Schüler & Entwickler. Ich baue Software, verwalte Server und löse Probleme mit Code (meistens auf Linux, denn <span class="text-pink" title="Microschrott">Windoof</span> kommt mir nicht ins Haus).
</p>
<div class="flex flex-wrap gap-4">
<a href="#projects" class="btn-cyber px-8 py-3 rounded text-sm font-bold cursor-pointer">
<i class="fa-solid fa-code-branch"></i> Projekte laden
</a>
<a href="https://github.com/NotSusmuel" target="_blank" class="btn-cyber btn-cyber-ghost px-8 py-3 rounded text-sm font-bold">
<i class="fa-brands fa-github"></i> GitHub
</a>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="min-h-screen py-20 px-6 relative z-10 flex flex-col justify-center">
<div class="max-w-6xl mx-auto w-full">
<div class="flex items-center mb-12">
<span class="text-cyan text-2xl mr-4">></span>
<h2 class="text-3xl font-bold text-white">Meine Projekte</h2>
<div class="h-px bg-gray-700 flex-grow ml-6"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1: Minecraft -->
<div class="glass-card rounded-lg p-6 flex flex-col justify-between h-full">
<div>
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold text-white">Minecraft Server</h3>
<i class="fa-solid fa-cube text-cyan opacity-50"></i>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="tag">Rock 4C+</span>
<span class="tag">Linux</span>
<span class="tag">Java/Bedrock</span>
</div>
<p class="text-sm text-gray-400 mb-6">
Ein privater Crossplay-Server, gehostet auf einem SBC (Rock 4C+).
Optimiert mit DietPi für maximale Performance.
</p>
</div>
<a href="https://heynen.dev" target="_blank" class="btn-cyber px-4 py-2 rounded text-xs text-center block hover:no-underline w-full">
<i class="fa-solid fa-gamepad mr-2"></i> heynen.dev besuchen
</a>
</div>
<!-- Project 2: Railnation Autobot -->
<div class="glass-card rounded-lg p-6 flex flex-col justify-between h-full">
<div>
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold text-white">Railnation Bot</h3>
<i class="fa-solid fa-robot text-cyan opacity-50"></i>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="tag">Python</span>
<span class="tag">Automation</span>
<span class="tag">GUI</span>
</div>
<p class="text-sm text-gray-400 mb-6">
Bot zum automatischen Werbung schauen. Mit modernem Dark-UI, Keyboard-Shortcuts (F5/F6) und Echtzeit-Logging.
</p>
</div>
<a href="https://github.com/NotSusmuel/railnation-autobot" target="_blank" class="btn-cyber px-4 py-2 rounded text-xs text-center block hover:no-underline w-full">
<i class="fa-brands fa-github mr-2"></i> View Source
</a>
</div>
<!-- Project 3: PyWriter -->
<div class="glass-card rounded-lg p-6 flex flex-col justify-between h-full">
<div>
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold text-white">PyWriter</h3>
<i class="fa-solid fa-pen-nib text-cyan opacity-50"></i>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="tag">Python</span>
<span class="tag">Fork</span>
<span class="tag">Tool</span>
</div>
<p class="text-sm text-gray-400 mb-6">
Fork von Flo781's Pywriter. Wieder funktionstüchtig gemacht und um nützliche Features erweitert.
</p>
</div>
<a href="https://github.com/NotSusmuel/PyWriter" target="_blank" class="btn-cyber px-4 py-2 rounded text-xs text-center block hover:no-underline w-full">
<i class="fa-brands fa-github mr-2"></i> View Source
</a>
</div>
<!-- Project 4: Gambling Sim -->
<div class="glass-card rounded-lg p-6 flex flex-col justify-between h-full">
<div>
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold text-white">Gambling Sim</h3>
<i class="fa-solid fa-dice text-cyan opacity-50"></i>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="tag">Python</span>
<span class="tag">Turtle</span>
</div>
<p class="text-sm text-gray-400 mb-6">
Eine grafische Simulation geschrieben in Python mit dem Turtle-Modul.
Visualisiert Wahrscheinlichkeiten auf spielerische Weise.
</p>
</div>
<a href="https://github.com/NotSusmuel/GamblingSimulator" target="_blank" class="btn-cyber px-4 py-2 rounded text-xs text-center block hover:no-underline w-full">
<i class="fa-brands fa-github mr-2"></i> View Source
</a>
</div>
<!-- Project 5: Fisy (Private) -->
<div class="glass-card private rounded-lg p-6 flex flex-col justify-between h-full">
<div>
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold text-gray-400">Fisy <span class="text-xs font-normal border border-gray-600 px-1 rounded ml-2">Legacy</span></h3>
<i class="fa-solid fa-lock text-gray-600"></i>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="tag border-gray-600 text-gray-500">Web Dev</span>
<span class="tag border-gray-600 text-gray-500">Tool</span>
</div>
<p class="text-sm text-gray-500 mb-6">
Früher "SuperGUI". Eine moderne Alternative zum Schul-Stundenplansystem.
Bessere Übersicht und UX.
</p>
</div>
<button class="btn-disabled px-4 py-2 rounded text-xs text-center block w-full uppercase tracking-wider">
<i class="fa-solid fa-ban mr-2"></i> Zugriff verweigert
</button>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="min-h-screen flex items-center justify-center px-6 relative z-10">
<div class="max-w-4xl w-full">
<div class="flex items-center mb-12">
<span class="text-cyan text-2xl mr-4">></span>
<h2 class="text-3xl font-bold text-white">Kontakt aufnehmen</h2>
<div class="h-px bg-gray-700 flex-grow ml-6"></div>
</div>
<div class="glass-card rounded-lg p-8 md:p-12 text-center">
<p class="text-gray-400 mb-10 text-lg leading-relaxed max-w-2xl mx-auto">
Hast du eine Frage zu meinen Projekten oder möchtest du einfach nur "Hallo" sagen?
Meine Inbox ist immer offen. (Außer für Windoof-Nutzer, da könnte es länger dauern... Spaß!)
</p>
<div class="flex flex-wrap justify-center gap-6">
<a href="mailto:heynen.t.samuel@gmail.com" class="group flex items-center gap-3 px-8 py-4 bg-white/5 rounded hover:bg-white/10 transition-all border border-transparent hover:border-cyan hover:no-underline">
<i class="fa-regular fa-envelope text-cyan text-xl group-hover:scale-110 transition-transform"></i>
<span class="text-lg text-gray-300 group-hover:text-white">Email schreiben</span>
</a>
<a href="https://github.com/NotSusmuel" target="_blank" class="group flex items-center gap-3 px-8 py-4 bg-white/5 rounded hover:bg-white/10 transition-all border border-transparent hover:border-cyan hover:no-underline">
<i class="fa-brands fa-github text-cyan text-xl group-hover:scale-110 transition-transform"></i>
<span class="text-lg text-gray-300 group-hover:text-white">GitHub</span>
</a>
<button onclick="copyDiscord()" id="discord-btn" class="group flex items-center gap-3 px-8 py-4 bg-white/5 rounded hover:bg-white/10 transition-all border border-transparent hover:border-[#5865F2] cursor-pointer">
<i class="fa-brands fa-discord text-[#5865F2] text-xl group-hover:scale-110 transition-transform"></i>
<span class="text-lg text-gray-300 group-hover:text-white">@Claimingnine</span>
</button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-6 text-center relative z-10 bg-[#050608] border-t border-gray-800 text-xs text-gray-600">
<p>© 2025 Samuel Heynen | SYSTEM STATUS: ONLINE</p>
</footer>
<!-- Scripts -->
<script>
// --- 1. Typewriter Effect ---
const textToType = "Schüler & Entwickler";
const typeWriterElement = document.getElementById('typewriter');
let i = 0;
function typeWriter() {
if (i < textToType.length) {
typeWriterElement.innerHTML += textToType.charAt(i);
i++;
setTimeout(typeWriter, 120);
}
}
setTimeout(typeWriter, 800);
// --- 2. Particle Network Background ---
const canvas = document.getElementById('canvas-bg');
const ctx = canvas.getContext('2d');
let width, height;
let particles = [];
// Configuration
const particleCount = 50;
const connectionDistance = 140;
const mouseDistance = 200;
let mouse = { x: null, y: null };
function resize() {
width = canvas.width = window.innerWidth;
height = canvas.height = window.innerHeight;
}
window.addEventListener('resize', resize);
resize();
window.addEventListener('mousemove', (e) => {
mouse.x = e.x;
mouse.y = e.y;
});
window.addEventListener('mouseout', () => {
mouse.x = null;
mouse.y = null;
});
class Particle {
constructor() {
this.x = Math.random() * width;
this.y = Math.random() * height;
this.vx = (Math.random() - 0.5) * 1;
this.vy = (Math.random() - 0.5) * 1;
this.size = Math.random() * 2 + 1;
this.color = '#66fcf1';
}
update() {
this.x += this.vx;
this.y += this.vy;
if (this.x < 0 || this.x > width) this.vx *= -1;
if (this.y < 0 || this.y > height) this.vy *= -1;
if (mouse.x != null) {
let dx = mouse.x - this.x;
let dy = mouse.y - this.y;
let distance = Math.sqrt(dx * dx + dy * dy);
if (distance < mouseDistance) {
const forceDirectionX = dx / distance;
const forceDirectionY = dy / distance;
const force = (mouseDistance - distance) / mouseDistance;
const directionX = forceDirectionX * force * 2;
const directionY = forceDirectionY * force * 2;
this.x -= directionX;
this.y -= directionY;
}
}
}
draw() {
ctx.beginPath();
ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
ctx.fillStyle = this.color;
ctx.fill();
}
}
function initParticles() {
particles = [];
for (let i = 0; i < particleCount; i++) {
particles.push(new Particle());
}
}
function animate() {
requestAnimationFrame(animate);
ctx.clearRect(0, 0, width, height);
particles.forEach(particle => {
particle.update();
particle.draw();
});
connectParticles();
}
function connectParticles() {
let opacityValue = 1;
for (let a = 0; a < particles.length; a++) {
for (let b = a; b < particles.length; b++) {
let distance = ((particles[a].x - particles[b].x) * (particles[a].x - particles[b].x))
+ ((particles[a].y - particles[b].y) * (particles[a].y - particles[b].y));
if (distance < (connectionDistance * connectionDistance)) {
opacityValue = 1 - (distance / (20000));
ctx.strokeStyle = 'rgba(102, 252, 241,' + opacityValue * 0.15 + ')';
ctx.lineWidth = 1;
ctx.beginPath();
ctx.moveTo(particles[a].x, particles[a].y);
ctx.lineTo(particles[b].x, particles[b].y);
ctx.stroke();
}
}
}
}
initParticles();
animate();
// --- 3. Discord Copy Function ---
function copyDiscord() {
const discordName = "@Claimingnine";
const btn = document.getElementById('discord-btn');
const icon = btn.querySelector('i');
const span = btn.querySelector('span');
const originalText = span.innerText;
const originalIconClass = icon.className;
navigator.clipboard.writeText(discordName).then(() => {
// Success State
icon.className = "fa-solid fa-check text-green-400";
span.innerText = "Kopiert!";
btn.classList.add("border-green-400");
setTimeout(() => {
// Reset
icon.className = originalIconClass;
span.innerText = originalText;
btn.classList.remove("border-green-400");
}, 2000);
}).catch(err => {
console.error('Failed to copy: ', err);
});
}
</script>
</body>
</html>