-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile_AngelikiCharalampaki.html
executable file
·152 lines (120 loc) · 4.96 KB
/
profile_AngelikiCharalampaki.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<title>MetaMotor - Lab </title>
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="assets/css/main.css" rel="stylesheet">
<script type='text/javascript' src='allArticles.js'></script>
<script type='text/javascript' src='allPosters.js'></script>
<script type='text/javascript' src='assets/js/list.min.js'></script>
<link href="assets/css/list.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="components/header.js" type="text/javascript" defer></script>
<script src="components/footer.js" type="text/javascript" defer></script>
<body>
<header-component></header-component>
<!-- +++++ Projects Section +++++ -->
<div class="container pt">
<div class="row mt">
<div class="col-lg-6 col-lg-offset-3 centered">
<h3>ANGELIKI CHARALAMPAKI</h3>
<hr>
</div>
</div>
<p><b>Project</b></p>
<p><b>Sense of Agency within a metacognitive framework</b><br></p>
<p>
In our everyday life we move to interact with the environment surrounding us.
Most of the time we don't question who controls the movements we intentionally perform unless, of course, there is something wrong.<br><br>
For example, let’s assume you are reading this paragraph on your computer by scrolling upand down the computer screen using your computer mouse.
Your intention is to read the text and you do not need to think much about your movements. Everything goes smoothly and uninterrupted up to the point your
mouse malfunctions and you can no more interact with your computer. You move but your movement no longer translates to a cursor movement onthe screen.
This is when you experience what is commonly referred to as losing your sense of agency. This is also one of the ways sense of agency can be experimentally
challenged in healthy participants. As in many neurological (e.g. Apraxia, Anosognosia, and Cerebral Palsy) and psychiatric conditions
(e.g. Schizophrenia) people report a diminished sense of agency over their movements and consequences of these movements in the
surrounding environment. <br><br>
But what is it that we mean when we say sense of agency? Do we focus on our movements, or on the consequences of those movements in the
environment? Further, are they both the same? <br><br>
Through my PhD project I would like to answer these questions using a metacognitive framework to ensure that our experimental measures are free from confounds and systematic biases.
</p>
<p><br><b>Journal Articles</b></p>
<div id="papers">
<input class="search" placeholder="Search" />
<ul class="list"></ul>
</div>
<p><br><b>Posters</b></p>
<div id="posters">
<input class="search" placeholder="Search" />
<ul class="list"></ul>
</div>
</div><!-- /container -->
<!-- +++++ Footer Section +++++ -->
<footer-component></footer-component>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/bootstrap.min.js"></script>
</body>
</head>
<script>
var options = {
valueNames: [
'title',
'year',
'authors',
'journal',
{ data: ['id'] },
{ attr: 'href', name: 'link_journal' },
{ attr: 'href', name: 'link_pdf' },
],
item: `<li>
<p class="title"> </p>
<p class="authors"> </p>
<p class="year"> </p>
<p class="journal"> </p>
<a class="link_journal" href> Article link </a><br>
<a class="link_pdf" href> PDF </a>
</li>`
};
var optionsPosters = {
valueNames: [
'title',
'year',
'authors',
'journal',
{ data: ['id'] },
{ attr: 'href', name: 'link_journal' },
{ attr: 'href', name: 'link-pdf' },
{ attr: 'href', name: 'link-supplement' },
{ attr: 'href', name: 'link-preregistration' }
],
item: `<li>
<p class="title"> </p>
<p class="authors"> </p>
<p class="year"> </p>
<p class="journal"> </p>
<a class="link_journal" href> PDF </a>
</li>`
};
var paperList = new List('papers', options);
for (let p = 0; p < allArticles.length; p++) {
if (allArticles[p].authors.includes("Charalampaki")) {
paperList.add(allArticles[p]);
}
}
var posterList = new List('posters', optionsPosters);
for (let p = 0; p < allPosters.length; p++) {
if (allPosters[p].authors.includes("Charalampaki")) {
posterList.add(allPosters[p]);
}
}
</script>
</html>