-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathawards.html
More file actions
58 lines (53 loc) · 2.26 KB
/
awards.html
File metadata and controls
58 lines (53 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Awards — HongLin He</title>
<link rel="stylesheet" href="/assets/style.css">
<script src="/assets/i18n.js"></script>
</head>
<body>
<nav class="site-nav">
<a href="/" class="nav-brand">HongLin He</a>
<div class="nav-links">
<a href="/papers.html" data-i18n="nav_papers">Papers</a>
<a href="/projects.html" data-i18n="nav_projects">Projects</a>
<a href="/awards.html" class="active" data-i18n="nav_awards">Awards</a>
<a href="/cv.html" data-i18n="nav_cv">CV</a>
</div>
<div class="nav-controls">
<select id="lang-select" onchange="switchLang(this.value)">
<option value="en">English</option>
<option value="zh-CN">中文简体</option>
<option value="zh-TW">中文繁體</option>
<option value="ja">日本語</option>
<option value="ko">한국어</option>
<option value="fr">Français</option>
<option value="de">Deutsch</option>
<option value="es">Español</option>
</select>
<button class="theme-toggle" onclick="toggleTheme()" title="Toggle dark mode">🌙</button>
</div>
</nav>
<main class="container">
<h1 data-i18n="awards_title">Awards & Recognition</h1>
<h2 data-i18n="awards_academic">Academic</h2>
<ul class="award-list">
<li data-i18n="award_research">Independent Research — Designed and implemented UCEF framework from scratch, bridging hyperbolic geometry, quantum IR theory, and practical LLM context extension</li>
</ul>
<h2 data-i18n="awards_technical">Technical</h2>
<ul class="award-list">
<li data-i18n="award_opensource">Open Source Contributions — Multiple public repositories with complete documentation and testing</li>
<li data-i18n="award_fullstack">Full-Stack Capability — Embedded Rust → Desktop Apps → Web Services → AI Research</li>
</ul>
<h2 data-i18n="awards_certs">Certifications</h2>
<ul class="award-list">
<li data-i18n="award_infosec">Information Security Engineer (信息安全工程师) — National Computer Technology and Software Qualification, in preparation</li>
</ul>
</main>
<footer class="site-footer">
<p>© 2026 HongLin He</p>
</footer>
</body>
</html>