-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (101 loc) · 3.17 KB
/
index.html
File metadata and controls
106 lines (101 loc) · 3.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LiXinWu</title>
<style>
body {
font-family: 'Inter', 'Helvetica Neue', sans-serif;
background-color: #1a2a3a;
color: #f0f0f0;
line-height: 1.8;
margin: 0;
padding: 40px;
}
.container {
max-width: 900px;
margin: 0 auto;
background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
padding: 40px;
border-radius: 16px;
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
h1, h2, h3 {
color: #ffffff;
font-weight: 600;
}
a {
color: #5ab1ff;
text-decoration: none;
transition: color 0.3s;
}
a:hover {
color: #7fc1ff;
}
.section {
margin-bottom: 40px;
}
.experience, .training {
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 1px solid #3a3a3a;
}
.experience:last-child, .training:last-child {
border-bottom: none;
}
.skills {
display: flex;
flex-wrap: wrap;
gap: 16px;
}
.skill {
background-color: #3a3a3a;
color: #ffffff;
padding: 10px 20px;
border-radius: 8px;
transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.skill:hover {
background-color: #4a4a4a;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<div class="container">
<h1>武利鑫 LiXin WU</h1>
<div class="section">
<h2>About Me</h2>
<p>I am a young data scientist, I have experience building predictive probabilistic models in R and predictive maintenance models in IBM Cloud. I am interested in solving a variety of problems with data, particularly those involving new modelling techniques and algorithms. I am currently working with neuroimaging data and neural networks, expanding my skill set toward machine learning algorithms.</p>
</div>
<div class="section">
<h2>Skills</h2>
<div class="skills">
<span class="skill">R</span>
<span class="skill">Python</span>
<span class="skill">Machine Learning</span>
<span class="skill">Data Analysis</span>
</div>
</div>
<div class="section">
<h2>Education</h2>
<p><strong>本科阶段</strong> - 湖北经济学院 (2013.9 - 2017.7) 市场营销专业</p>
<p><strong>研究生阶段</strong> - 青海民族大学 (2024.9 - 2027.7) 金融专业</p>
</div>
<div class="section">
<h3>工作经历</h3>
<p><strong>民生银行深圳分行</strong> - 财富顾问 (2017.3 - 2019.1)</p>
<p><strong>大同证券孝义营业部</strong> - 理财经理,证券投资顾问 (2019.6 - 2024.8)</p>
</div>
<div class="section">
<h4>职业培训</h4>
<p><strong>数据挖掘工程师</strong> -CDA(2016.5 - 2017.1)</p>
<p><strong>ETF策略师</strong> - 深圳证券交易所 (2023.3 - 2023.7)</p>
<p><strong>FDA衍生品分析师</strong> - 期货协会 (2023.6 - 2023.12)</p>
</div>
</div>
</body>
</html>