-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (87 loc) · 3.35 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>jsPsych</h1>
<h2>Made</h2>
<ul>
<li>Tutorials</li>
<ul>
<li><a href="./tutorial.html" target="_blank">Hello, world</a></li>
<li><a href="./demo.html" target="_blank">Simple Experiment Tutorial</a></li>
<li><a href="./demo_1.html" target="_blank">Revised Version of Tutorial</a></li>
<li><a href="./input.html" target="_blank">Test Code for Input</a></li>
</ul>
<li>Tasks</li>
<ul>
<li>Common EF</li>
<ul>
<li><a href="./gonogo.html" target="_blank">Test Code for Go/No-Go Test.</a></li>
<li><a href="./flanker.html" target="_blank">Test Code for Flanker</a></li>
<li><a href="./STOP-IT/experiment.html" target="_blank">Test Code for STOP-IT</a></li>
<li><a href="./stroop.html" target="_blank">Stroop test</a></li>
</ul>
<li>Updating</li>
<ul>
<li><a href="./Nback/offline/index.html" target="_blank">Test Code for N-back</a></li>
<li><a href="./letter-memory.html" target="_blank">Test Code for Letter Memory</a></li>
<li><a href="./keep-track/index.html" target="_blank">Test Code for Keep-track</a></li>
</ul>
<li>Shifting</li>
<ul>
<li><a href="./letter-number.html" target="_blank">Test Code for Number-letter</a></li>
<li><a href="./local-global.html" target="_blank">Test Code for Local-global</a></li>
<li><a href="./color-shape.html" target="_blank">Test Code for Color-Shape</a></li>
</ul>
</ul>
</ul>
<h2>References</h2>
<ul>
<li>Tests</li>
<ul>
<li><a href="https://cognitiveresearchjournal.springeropen.com/articles/10.1186/s41235-022-00383-9" target="_blank">The contribution of latent factors of executive functioning to mind wandering: an experience sampling study</a></li>
</ul>
<li>Flanker</li>
<ul>
<li><a href="https://zenn.dev/snishiyama/books/jspsych-tutorial/viewer/flanker_trial-sequence" target="_blank">Article</a> available</li>
</ul>
<li>Stop-signal</li>
<ul>
<li><a href="https://github.com/kywch/STOP-IT/tree/master/jsPsych_version" target="_blank">GitHub repo</a> available</li>
</ul>
<li>n back</li>
<ul>
<li><a href="https://github.com/vekteo/Nback_jsPsych">GitHub repo</a> available</li>
</ul>
<li>Keep-track</li>
<ul>
<li><a href="https://github.com/expfactory-experiments/keep-track">GitHub repo</a> available</li>
</ul>
</ul>
<h3>ToDo</h3>
<ol>
<li>High</li>
<ol>
<li>Give instructions first, and give some time for participants to practice</li>
<li>Feedback in practice</li>
<li>Decide Interval timings -> Make it easy to adjust</li>
<li>Create language file and make it easily to change lang</li>
</ol>
<li>Medium</li>
<ol>
<li>Create a <a href="./README.md">manual</a></li>
<li>Accuracy calculation</li>
<li>Make it available for smartphone or tablet</li>
<li>Think and make a system to retrieve and store data</li>
</ol>
<li>Low</li>
<ol>
<li>Nothing for now...</li>
</ol>
</ol>
</body>
</html>