-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
302 lines (265 loc) · 8.42 KB
/
about.html
File metadata and controls
302 lines (265 loc) · 8.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SQRT // ABOUT</title>
<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=VT323&family=Share+Tech+Mono&display=swap" rel="stylesheet">
<style>
:root {
--amber: #ffb000;
--amber-bright: #ffc832;
--amber-dim: #cc8800;
--amber-dark: #664400;
--amber-glow: #ffb00066;
--bg: #0a0800;
--bg-light: #1a1200;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Share Tech Mono', 'Courier New', monospace;
background-color: var(--bg);
color: var(--amber);
min-height: 100vh;
overflow-x: hidden;
}
/* CRT Effect */
.crt {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 10000;
}
.crt::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(0, 0, 0, 0.3) 2px,
rgba(0, 0, 0, 0.3) 4px
);
}
.crt::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}
/* Container */
.container {
max-width: 800px;
margin: 0 auto;
padding: 4rem 2rem;
}
/* Back link */
.back-link {
display: inline-block;
font-family: 'VT323', monospace;
font-size: 1.2rem;
color: var(--amber-dim);
text-decoration: none;
margin-bottom: 3rem;
transition: all 0.3s ease;
}
.back-link:hover {
color: var(--amber);
text-shadow: 0 0 10px var(--amber-glow);
}
/* Profile section */
.profile {
display: flex;
gap: 3rem;
align-items: flex-start;
}
@media (max-width: 600px) {
.profile {
flex-direction: column;
align-items: center;
}
}
.profile-image {
width: 200px;
height: 200px;
border: 2px solid var(--amber-dark);
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 176, 0, 0.02);
flex-shrink: 0;
}
.profile-image span {
font-family: 'VT323', monospace;
font-size: 8rem;
color: var(--amber-dark);
}
.profile-info {
flex: 1;
}
.profile-name {
font-family: 'VT323', monospace;
font-size: 2.5rem;
color: var(--amber);
text-shadow: 0 0 10px var(--amber-glow);
margin-bottom: 1rem;
}
.profile-title {
font-family: 'VT323', monospace;
font-size: 1.2rem;
color: var(--amber-dim);
margin-bottom: 2rem;
letter-spacing: 2px;
}
.profile-bio {
color: var(--amber-dim);
line-height: 1.8;
font-size: 0.95rem;
}
.profile-bio p {
margin-bottom: 1rem;
}
/* Interests */
.interests {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid var(--amber-dark);
}
.interests-header {
font-family: 'VT323', monospace;
font-size: 1.5rem;
color: var(--amber);
margin-bottom: 1rem;
}
.interests-list {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.interest-tag {
font-size: 0.85rem;
padding: 0.3rem 0.8rem;
border: 1px solid var(--amber-dark);
color: var(--amber-dim);
background: rgba(255, 176, 0, 0.02);
}
/* Footer */
.footer {
margin-top: 4rem;
padding-top: 2rem;
border-top: 1px solid var(--amber-dark);
text-align: center;
}
.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
font-family: 'VT323', monospace;
font-size: 1.1rem;
}
.footer-links a {
color: var(--amber-dim);
text-decoration: none;
transition: all 0.3s ease;
}
.footer-links a:hover {
color: var(--amber);
text-shadow: 0 0 10px var(--amber-glow);
}
/* Uptime */
.uptime {
margin-top: 1.5rem;
font-family: 'VT323', monospace;
font-size: 0.9rem;
color: var(--amber-dark);
}
.uptime span {
color: var(--amber-dim);
}
/* Flicker */
.flicker {
animation: flicker 0.15s infinite;
}
@keyframes flicker {
0% { opacity: 0.97; }
50% { opacity: 1; }
100% { opacity: 0.98; }
}
</style>
</head>
<body>
<div class="crt"></div>
<div class="container flicker">
<a href="index.html" class="back-link">← BACK TO MAIN</a>
<div class="profile">
<div class="profile-image">
<span>?</span>
</div>
<div class="profile-info">
<h1 class="profile-name">SQRT</h1>
<p class="profile-title">SECURITY RESEARCHER</p>
<div class="profile-bio">
<p>Security researcher with a focus on IP and RF exploitation. Building tools, breaking systems, and sharing knowledge.</p>
<p>Currently exploring the intersection of network security and radio frequency research. Interested in how signals move through both wired and wireless mediums.</p>
<p>Based somewhere with good coffee and bad sleep schedules.</p>
</div>
</div>
</div>
<div class="interests">
<h2 class="interests-header">> INTERESTS</h2>
<div class="interests-list">
<span class="interest-tag">Penetration Testing</span>
<span class="interest-tag">SDR</span>
<span class="interest-tag">Signal Analysis</span>
<span class="interest-tag">SIGINT</span>
<span class="interest-tag">Tool Development</span>
<span class="interest-tag">Reverse Engineering</span>
<span class="interest-tag">OSINT</span>
</div>
</div>
<div class="footer">
<div class="footer-links">
<a href="https://github.com/RF-SQRT" target="_blank">[GITHUB]</a>
<a href="#">[CONTACT]</a>
</div>
<div class="uptime">
UPTIME: <span id="uptime">000:00:00:00</span>
</div>
</div>
</div>
<script>
// IRIG-B TIME FORMAT (DDD:HH:MM:SS - day of year)
function updateUptime() {
const now = new Date();
const start = new Date(now.getFullYear(), 0, 0);
const diff = now - start;
const oneDay = 1000 * 60 * 60 * 24;
const dayOfYear = Math.floor(diff / oneDay);
const hours = now.getHours();
const minutes = now.getMinutes();
const seconds = now.getSeconds();
const pad = (n, len = 2) => String(n).padStart(len, '0');
document.getElementById('uptime').textContent =
`${pad(dayOfYear, 3)}:${pad(hours)}:${pad(minutes)}:${pad(seconds)}`;
}
updateUptime();
setInterval(updateUptime, 1000);
</script>
</body>
</html>