forked from jhfnetboy/me
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathme.html
More file actions
121 lines (117 loc) · 4.78 KB
/
me.html
File metadata and controls
121 lines (117 loc) · 4.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Huifeng (Jason) Jiao - Researcher</title>
<style>
body {
font-family: sans-serif;
margin: 20px;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #2c3e50;
color: white;
padding: 20px;
text-align: center;
border-radius: 8px 8px 0 0;
}
nav {
background-color: #3498db;
padding: 10px;
text-align: center;
border-radius: 0 0 8px 8px;
margin-bottom: 20px;
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
margin: 0 10px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
nav a:hover {
background-color: #2980b9;
}
.container {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
h1, h2, h3 {
color: #2c3e50;
}
ul {
list-style: none;
padding: 0;
}
ul li {
margin-bottom: 5px;
}
.contact-info li {
display: inline;
margin-right: 15px;
}
.important {
font-weight: bold;
color: #e67e22; /* A touch of color */
}
footer {
text-align: center;
color: #777;
font-size: 0.9em;
}
.avatar {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin: 20px auto;
display: block;
}
</style>
</head>
<body>
<header>
<h1><strong style="font-size: 2em;">Huifeng (Jason) Jiao</strong></h1>
<p>PhD Candidate in Digital Innovation | Open Source Contributor | Ethereum Builder</p>
</header>
<nav>
<a href="index.html" class="active">Home</a>
<a href="research.html">Research</a>
<a href="projects.html">Projects & Experience</a>
</nav>
<div class="container">
<h2>About Me</h2>
<img src="jhfnetboy.jpeg" alt="Jason Jiao" class="avatar">
<p>
Huifeng (Jason) Jiao is a <strong class="important">PhD candidate in Digital Innovation at Chiang Mai University</strong> [1, 2], with a research focus on <strong class="important">blockchain accounts and security</strong>, aiming to empower individuals through technology [3]. His doctoral research explores areas such as Gas payment optimization, self-custodial accounts, and social recovery under Ethereum account abstraction [4, 5].
</p>
<p>
Driven by a passion for individual freedom and the potential of decentralized technologies [6], Jason is also an active <strong class="important">open source contributor</strong> [7] and a <strong class="important">Ethereum builder</strong>, currently he is reading his PhD and served as Cofounder/Tech lead at Soul Wallet [7, 8]. He is the OG of a Web3 tech community (DApp Learning community) [9] and has been involved in the Ethereum community, participating in Devcons and hackathons [10].
</p>
<p>
Prior to his current endeavors, Jason held significant technical leadership roles, including M3/T8 expert at JD.COM and P9 Tech expert at SchoolPal, where he managed large teams and oversaw multi-BU operations [7]. He also has experience in building an online e-commerce platform with substantial GMV and refactoring SAAS systems [9].
</p>
</div>
<div class="container">
<h2>Contact Information</h2>
<ul class="contact-info">
<li><strong>Email:</strong> Available on LinkedIn profile</li>
<li><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/huifeng-jiao" target="_blank">linkedin.com/in/huifeng-jiao(deprecated)</a></li>
<li><strong>GitHub:</strong> <a href="https://github.com/jhfnetboy" target="_blank">github.com/jhfnetboy</a> [7]</li>
<li><strong>Research List:</strong> <a href="https://hackmd.io/@jhfnetboy/BycDc_L6i" target="_blank">hackmd.io/@jhfnetboy/BycDc_L6i</a> [2, 9]</li>
<li><strong>Linktree:</strong> <a href="https://linktr.ee/jhfnetboy" target="_blank">linktr.ee/jhfnetboy</a></li>
<li><strong>Twitter:</strong> <a href="https://twitter.com/jhfnetboy" target="_blank">twitter.com/jhfnetboy</a></li>
</ul>
</div>
<footer>
<p>© 2024 Huifeng (Jason) Jiao</p>
</footer>
</body>
</html>