-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
545 lines (475 loc) · 13.6 KB
/
index.html
File metadata and controls
545 lines (475 loc) · 13.6 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
535
536
537
538
539
540
541
542
543
544
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<title>个人主页</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="个人主页" />
<style>
:root {
--bg: #f5f5f7;
--bg-card: #ffffff;
--text-main: #111827;
--text-muted: #6b7280;
--accent: #2563eb;
--accent-soft: #dbeafe;
--border: #e5e7eb;
--shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
--radius-xl: 18px;
--radius-full: 999px;
--font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
"Segoe UI", sans-serif;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: var(--font-main);
background: radial-gradient(circle at top left, #eef2ff, #f9fafb);
color: var(--text-main);
line-height: 1.6;
padding: 24px;
}
.page {
max-width: 1560px;
margin: 0 auto;
}
.card {
background: var(--bg-card);
border-radius: 24px;
box-shadow: var(--shadow-soft);
padding: 28px;
border: 1px solid rgba(148, 163, 184, 0.22);
backdrop-filter: blur(12px);
}
header {
display: flex;
gap: 24px;
align-items: center;
border-bottom: 1px solid var(--border);
padding-bottom: 20px;
margin-bottom: 20px;
}
.avatar-wrapper {
position: relative;
width: 112px;
aspect-ratio: 3 / 4;
flex-shrink: 0;
}
.avatar {
height: 100%;
width: 100%;
border-radius: 16px;
object-fit: cover;
border: 3px solid var(--accent-soft);
box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
background: #e5e7eb;
}
.status-dot {
position: absolute;
right: 6px;
bottom: 8px;
width: 16px;
height: 16px;
border-radius: 999px;
background-color: #22c55e;
box-shadow: 0 0 0 3px #f9fafb;
}
.header-main {
flex: 1;
min-width: 0;
}
.name {
font-size: 30px;
font-weight: 750;
letter-spacing: 0.03em;
margin-bottom: 4px;
}
.title {
font-size: 16px;
color: var(--text-muted);
margin-bottom: 12px;
}
.tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 10px;
}
.tag {
padding: 4px 10px;
border-radius: 999px;
background: var(--accent-soft);
color: #1d4ed8;
font-size: 12px;
font-weight: 500;
}
.contact {
display: flex;
flex-wrap: wrap;
gap: 10px;
font-size: 13px;
color: var(--text-muted);
}
.contact-item {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 3px 9px;
border-radius: 999px;
border: 1px solid var(--border);
background: #f9fafb;
}
.contact-item strong {
font-size: 12px;
color: #4b5563;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Layout */
.layout {
display: grid;
grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
gap: 24px;
}
.section {
margin-bottom: 20px;
}
.skills-list {
list-style: none;
padding-left: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.skills-list li {
position: relative;
padding-left: 16px;
font-size: 13px;
color: #374151;
line-height: 1.65;
}
.skill-dot {
position: absolute;
left: 0;
top: 0.6em;
width: 6px;
height: 6px;
border-radius: 999px;
background: var(--accent);
}
.section-title {
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.16em;
color: #9ca3af;
margin-bottom: 12px;
}
.pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 4px 9px;
border-radius: 999px;
background: #f3f4f6;
font-size: 12px;
color: #4b5563;
margin-bottom: 8px;
}
.pill-dot {
width: 6px;
height: 6px;
border-radius: 999px;
background: var(--accent);
}
.about {
font-size: 14px;
color: #374151;
}
.skills-grid {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.skill-badge {
font-size: 12px;
padding: 4px 10px;
border-radius: 999px;
background: #f3f4f6;
border: 1px solid #e5e7eb;
}
.skill-badge span {
opacity: 0.7;
font-size: 11px;
}
.item {
margin-bottom: 14px;
padding-bottom: 10px;
border-bottom: 1px dashed #e5e7eb;
}
.item:last-child {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0;
}
.item-header {
display: flex;
justify-content: space-between;
gap: 12px;
align-items: baseline;
margin-bottom: 6px;
flex-wrap: wrap;
}
.item-title {
font-weight: 600;
font-size: 14px;
}
.item-meta {
font-size: 12px;
color: var(--text-muted);
}
.item-sub {
font-size: 13px;
color: #4b5563;
margin-bottom: 4px;
}
.item-desc {
font-size: 13px;
color: #4b5563;
}
.item-desc ul {
margin-left: 18px;
margin-top: 4px;
}
.item-desc li {
margin-bottom: 3px;
}
.links-list {
font-size: 13px;
display: flex;
flex-direction: column;
gap: 6px;
}
.links-list a {
display: inline-flex;
align-items: center;
gap: 6px;
}
.dot {
width: 6px;
height: 6px;
border-radius: 999px;
background: var(--accent);
}
footer {
margin-top: 18px;
text-align: right;
font-size: 11px;
color: #9ca3af;
}
footer span {
padding: 4px 8px;
border-radius: 999px;
background: #f3f4f6;
}
/* Responsive */
@media (max-width: 768px) {
body {
padding: 16px;
}
.card {
padding: 18px;
border-radius: 18px;
}
header {
flex-direction: column;
align-items: flex-start;
}
.avatar-wrapper {
width: 90px;
height: 90px;
}
.name {
font-size: 24px;
}
.layout {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="page">
<div class="card">
<!-- 顶部 -->
<header>
<div class="avatar-wrapper">
<img src="me.png" alt="个人头像" class="avatar" />
<div class="status-dot" title="Open to opportunities"></div>
</div>
<div class="header-main">
<div class="name">于珈尉</div>
<div class="title">北京 / 北航本硕 / 后端开发</div>
<!-- <div class="tags">
<span class="tag">C++ / Go</span>
<span class="tag">Linux</span>
</div> -->
<div class="contact">
<div class="contact-item">
<strong>Email</strong> jay.waves@outlook.com
</div>
<div class="contact-item">
<strong>WeChat</strong> jay-waves
</div>
<div class="contact-item">
<strong>GitHub</strong>
<a href="https://github.com/jay-waves" target="_blank">
jay-waves
</a>
</div>
</div>
</div>
</header>
<main class="layout">
<!-- 左侧:个人简介 -->
<section>
<div class="section">
<div class="section-title">ABOUT</div>
<p class="about">
期望从事网络及后端开发。 <br> 多次担任项目负责人,责任心强,进度推进积极,对代码质量有追求。
</p>
</div>
<div class="section">
<div class="section-title">SKILLS</div>
<ul class="skills-list">
<li>
<span class="skill-dot"></span>
CET6 522 , IELTS 6.5(6)
</li>
<li>
<span class="skill-dot"></span>
专业基础扎实,本科 操作系统(95),数据库(96),数据结构与算法(99),算法分析(91)
</li>
<li>
<span class="skill-dot"></span>
掌握 C++20,Python 语言及工程化构建。熟悉 C、Go、Shell、TypeScript
</li>
<li>
<span class="skill-dot"></span>
熟练使用 Git、CMake、Docker 等开发工具,有丰富的 Linux 开发与部署经验。
</li>
<li>
<span class="skill-dot"></span>
熟悉面向对象设计模式、多线程与多进程编程、网络编程设计思想。
</li>
<li>
<span class="skill-dot"></span>
熟悉常见代码质量保障方法。注重单元测试、集成测试、代码覆盖率分析,部署过 Github CI。
</li>
<li>
<span class="skill-dot"></span>
熟悉 MySQL、Redis、RabbitMQ 等常见网络中间件,对网络部署与系统设计有一定经验。
</li>
<li></li>
</ul>
<div class="section">
<div class="section-title">LINKS</div>
<div class="links-list">
<!-- 主要开源项目, LinkedIn 工作经历, 个人 CVE 列表 -->
<a href="https://github.com/jay-waves/til" target="_blank">
<span class="dot"></span> 个人博客 https://github.com/jay-waves/til
</a>
<a href="http://oss.jay-waves.cn/cv250304.pdf" target="_blank">
<span class="dot"></span> 完整简历 http://oss.jay-waves.cn/cv250304.pdf
</a>
</div>
</div>
</section>
<!-- 右侧:项目经历 / 教育 -->
<section>
<div class="section">
<div class="section-title">EXPERIENCE</div>
<div class="item">
<div class="item-header">
<div class="item-title">实习 · C++工程师 · 轩宇信息技术(502所子公司)</div>
<div class="item-meta">北京,04/2025 – 01/2026</div>
</div>
<div class="item-sub">项目需求:主导负责 SPARC 架构航天器嵌入式软件的缺陷分析工具</div>
<div class="item-sub">技术选型:C++23、QEMU、Capstone、CMake+VS2025+VCpkg</div>
<div class="item-desc">
</div>
</div>
<div class="item">
<div class="item-header">
<div class="item-title">本科研究项目 · 北航系统软件安全实验室</div>
<div class="item-meta">北京,06/2023 – 05/2024</div>
</div>
<div class="item-sub">项目需求:设计针对 Nav2 及相关自动驾驶 ROS2 开源库的漏洞挖掘方法</div>
<div class="item-sub">技术选型:C++17、Python、ROS2、Colcon+LLVM、Docker</div>
<div class="item-desc">
</div>
</div>
<div class="item">
<div class="item-header">
<div class="item-title">实习 · 渗透测试工程师 · 安恒信息技术</div>
<div class="item-meta">北京,06/2024 – 09/2024</div>
</div>
<div class="item-sub">参与 2025 公安部 HW 行动蓝队防守,实地部署调试网关设备。</div>
<div class="item-desc">
</div>
</div>
<div class="section">
<div class="section-title">PUBLICATION</div>
<div class="item">
<div class="item-header">
<div class="item-title">ROCF</div>
<div class="item-meta">
<a href="https://doi.org/10.1109/TIFS.2025.3592562" target="_blank">
TIFS.2025.3592562
</a>
</div>
</div>
<div class="item-sub">针对机器人操作系统 (ROS2) 的模糊测试框架, 见刊于 TIFS2025 (CCF-A). 本人为第四作者, 学生二作.</div>
<div class="item-desc">
</div>
</div>
</div>
<div class="section">
<div class="section-title">EDUCATION</div>
<div class="item">
<div class="item-header">
<div class="item-title">硕士 · 北京航空航天大学</div>
<div class="item-meta">2025.09 - 至今</div>
</div>
<div class="item-desc">
网络空间安全学院,网络与信息安全专业。从事系统安全研究。
</div>
</div>
<div class="item">
<div class="item-header">
<div class="item-title">工学学士 · 北京航空航天大学</div>
<div class="item-meta">2021.09 - 2025.06</div>
</div>
<div class="item-desc">
网络空间安全学院,信息安全专业。GPA 3.76/4.00,平均分 90。
</div>
</div>
</div>
</section>
</main>
<footer>
<span>最后更新: 2026-03-04</span>
</footer>
</div>
</div>
</body>
</html>