-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
95 lines (92 loc) · 3.7 KB
/
profile.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Epool Profile</title>
<link rel="stylesheet" href="https://cdn.bootcdn.net/ajax/libs/font-awesome/5.11.2/css/all.css">
<link rel="stylesheet" href="profile.css">
</head>
<body>
<div class="container">
<div class="info-content">
<!-- 1.基本信息 -->
<div class="basic-info">
<div class="content">
<p id="name"> Wanke Pan </p>
<p id="number">+86 15284849768</p>
<p id="email">panwanke@163.com</p>
</p>
</div>
<aside>
<img class="me" src="./images/head.jpg" alt="">
</aside>
</div>
<!-- 2.教育背景 -->
<div class="education">
<h2>EDUCATION</h2>
<p> <i class="far fa-calendar"></i>2020.10~present Shanghai Normal University Basic Psychology
Graduate Student</p>
<p>Research Orientation: misinformation; Truth effect; familiarity; fluency; cognitive computational model;
Drift Diffusion Model</p>
<p> <i class="far fa-calendar"></i>2016.09~2020.06 Chengdu Normal University Basic Psychology
B.A. </p>
<p id="thesis_title">Thesis: The effect of gender roles on creativity and the moderating effect of resilience in
frustration context</p>
</div>
<!-- 3.工作经历 -->
<div class="work-info">
<h2>AWARDS&EXPERIENCE</h2>
<p> <i class="far fa-calendar"></i>2021.07~2020.08 The First Computational Psychiatry Hack Runner up
Team(2000¥ in total)</p>
<p>As the team leader, responsible for model fitting, video editing and final presentation</p>
<p> <i class="far fa-calendar"></i>2021.07~present DDM Community Building and Maintenance</p>
<p>As one of initiators, writed several popular cognitive model related blogs, made a few reports,
organized a community group of 155 students and researchers</p>
<p> <i class="far fa-calendar"></i>2021.11 Innovation Paper Award for Graduate students in Yangtze River
Delta Region</p>
<p>Paper Title: More familiar, more plausible? Distinguishing the effect of familiarity in rumor perception
based on a drift-diffusion
model
</p>
<p> <i class="far fa-calendar"></i>2022.06 Paper under Review (Journal of Experimental Psychology:
General)</p>
<p>Pan, W., & Hu, T. (2022, May 28). More familiar, more credible? Distinguishing two types of familiarity on
the truth
effect using the drift-diffusion model. https://doi.org/10.31234/osf.io/suy2q
</p>
</div>
<!-- 4.专业技能 -->
<div class="skill-info">
<h2>SKILLS</h2>
<p>Programming: Python, R, JavaScript, Matlab</p>
<p>Computational: Bayesian inference, HDDM, GLMM</p>
<p>Tools: JsPsych, Psychopy, HDDM in Python, Stan in R, Latex</p>
<p>Interests: Music production, Parkour, Go player, Web development</p>
</div>
<!-- 5.社交图标 -->
<footer>
<ul>
<li>
<a href="https://twitter.com/EpoolPan">
<i class="fab fa-twitter"></i>
</a>
</li>
<!-- 微信 -->
<li>
<a href="./images/weixinQR.jpg">
<i class="fab fa-weixin"></i>
</a>
</li>
<!-- 公司网址 -->
<li>
<a href="https://github.com/Asynchro-Epool">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</footer>
</div>
</div>
</body>
</html>