-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhypernova-developer.html
More file actions
257 lines (225 loc) · 7.86 KB
/
hypernova-developer.html
File metadata and controls
257 lines (225 loc) · 7.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hypernova-developer | Portfolio</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
font-family: Arial, Helvetica, sans-serif;
}
body {
background-color: #02040a;
color: #ffffff;
overflow-x: hidden;
}
header {
background-color: #010205;
padding: 15px 5%;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
border-bottom: 1px solid rgba(125, 95, 255, 0.3);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.brand .team-name {
font-weight: bold;
color: #7d5fff;
font-size: 1.1rem;
}
.nav-links {
display: flex;
list-style: none;
gap: 15px;
}
.nav-links a {
color: #888;
text-decoration: none;
font-size: 0.75rem;
text-transform: uppercase;
transition: 0.3s;
}
.nav-links a:hover {
color: #7d5fff;
}
.full-screen {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding: 100px 10% 50px;
}
.content-box {
width: 100%;
max-width: 700px;
}
h1 { font-size: 3rem; margin-bottom: 20px; }
h2 { color: #7d5fff; margin-bottom: 25px; font-size: 2.2rem; }
p { color: #a0a0a0; line-height: 1.7; margin-bottom: 15px; }
.skills-container {
margin-top: 30px;
text-align: left;
}
.skill-wrapper {
margin-bottom: 20px;
}
.skill-wrapper span {
display: block;
margin-bottom: 8px;
font-size: 0.9rem;
color: #ccc;
}
.skill-bar {
width: 100%;
height: 10px;
background: #1a1a1a;
border-radius: 5px;
overflow: hidden;
}
.skill-per {
height: 100%;
background: linear-gradient(90deg, #7d5fff, #a29bfe);
border-radius: 5px;
}
.cpp { width: 95%; }
.python { width: 80%; }
.web { width: 85%; }
.design { width: 75%; }
.link-btn {
display: inline-block;
padding: 12px 25px;
border: 1px solid #7d5fff;
color: #7d5fff;
text-decoration: none;
font-weight: bold;
margin-top: 20px;
transition: all 0.4s ease;
}
.link-btn:hover {
background: #7d5fff;
color: white;
box-shadow: 0 0 20px rgba(125, 95, 255, 0.5);
}
.cursor-dot {
position: fixed;
width: 8px;
height: 8px;
background-color: rgba(125, 95, 255, 0.7);
border-radius: 50%;
pointer-events: none;
z-index: 9999;
box-shadow: 0 0 10px rgba(125, 95, 255, 0.5);
transition: transform 0.2s ease-out, opacity 0.8s ease-out;
}
</style>
</head>
<body>
<header>
<nav>
<div class="brand">
<span class="team-name">>_ hypernova-developer</span>
</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#tech">Focus</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home" class="full-screen">
<div class="content-box">
<h1>hypernova-developer</h1>
<p>An anonymous entity crafting code in the void. Driven by logic, powered by creativity.</p>
</div>
</section>
<section id="about" class="full-screen">
<div class="content-box">
<h2>Who Am I?</h2>
<p>I am an independent developer operating under the alias <strong>hypernova-developer</strong>.</p>
<p>I specialize in building scalable systems and experimental technology. I am also a dedicated advocate for open-source development.</p>
</div>
</section>
<section id="skills" class="full-screen">
<div class="content-box">
<h2>Technical Skills</h2>
<div class="skills-container">
<div class="skill-wrapper">
<span>C / C++ / C#</span>
<div class="skill-bar"><div class="skill-per cpp"></div></div>
</div>
<div class="skill-wrapper">
<span>Python & Machine Learning</span>
<div class="skill-bar"><div class="skill-per python"></div></div>
</div>
<div class="skill-wrapper">
<span>Web (HTML/CSS/JS)</span>
<div class="skill-bar"><div class="skill-per web"></div></div>
</div>
<div class="skill-wrapper">
<span>Fusion 360 & Canva</span>
<div class="skill-bar"><div class="skill-per design"></div></div>
</div>
</div>
</div>
</section>
<section id="tech" class="full-screen">
<div class="content-box">
<h2>Technical Focus</h2>
<p>Modern Web Architecture • Hardware Prototyping • Algorithm Optimization • Open Source Development</p>
</div>
</section>
<section id="projects" class="full-screen">
<div class="content-box">
<h2>Works</h2>
<p>• Car Park Management System (C++)</p>
<p>• Student Grade Analysis Program (Python)</p>
<p>• SyntaX Library for C++</p>
<p>• Gamificated Learning: Medicine Content (Soon)</p>
<a href="https://github.com/hypernova-developer?tab=overview&from=2026-01-01&to=2026-01-18" target="_blank" rel="noopener" class="link-btn">View Activity</a>
</div>
</section>
<section id="contact" class="full-screen">
<div class="content-box">
<h2>Reach Out</h2>
<div class="social-links">
<a href="https://github.com/hypernova-developer" target="_blank" rel="noopener" class="link-btn">GitHub Profile</a>
</div>
</div>
</section>
</main>
<script>
document.addEventListener('mousemove', function(e) {
createTrail(e.clientX, e.clientY);
});
function createTrail(x, y) {
const trail = document.createElement('div');
trail.className = 'cursor-dot';
trail.style.left = (x - 4) + 'px';
trail.style.top = (y - 4) + 'px';
document.body.appendChild(trail);
setTimeout(() => {
trail.style.transform = 'scale(3)';
trail.style.opacity = '0';
setTimeout(() => {
trail.remove();
}, 800);
}, 100);
}
console.log("Terminal initialized. hypernova-developer online.");
</script>
</body>
</html>