-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteaching.html
More file actions
144 lines (136 loc) · 4.44 KB
/
teaching.html
File metadata and controls
144 lines (136 loc) · 4.44 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Murray S. Bennett - Teaching Experience</title>
<link rel="stylesheet" href="style.css" />
<style>
details {
border: 1px solid #ddd;
border-radius: 4px;
margin-bottom: 15px;
padding: 10px;
}
details summary {
font-size: 1.5em;
font-weight: bold;
cursor: pointer;
outline: none;
padding: 5px 0;
}
h3 {
margin-top: 20px;
font-size: 1.2em;
}
.teaching-entry {
margin-bottom: 1.5em;
padding: 1em;
background-color: #f9f9f9;
border-left: 4px solid #333;
}
.teaching-entry p {
margin: 0;
padding: 0;
}
</style>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="demos.html">Experiment Demos</a></li>
<li><a href="teaching.html" class="current-page">Teaching</a></li>
<li><a href="cv.html">CV</a></li>
</ul>
</nav>
</header>
<main>
<div style="text-align: center">
<h1>Teaching Experience</h1>
<p>A summary of my teaching roles and contributions.</p>
<hr />
</div>
<details open>
<summary>Course Instructor</summary>
<div class="teaching-entry">
<p style="margin-bottom: 0.5em">
<strong>Introduction to Psychology</strong>
<br /><em>University of Texas at San Antonio (Fall 2024)</em>
</p>
<p>
Introduction to the study of and scientific approaches to attention,
sensation, perception, emotion, motivation, learning, memory,
problem solving, personality, mental and behavioural development,
abnormal behaviour, and social behaviour in group settings.
</p>
<!-- <p><strong>Rating:</strong> 4.6/5</p> -->
</div>
</details>
<details>
<summary>Lab Demonstrator and Grader</summary>
<div class="teaching-entry">
<p>
<strong>Psychology Graded Honours Thesis</strong><br />
<em>University of Newcastle (2021)</em>
</p>
<p>Graded honours theses for students in the School of Psychology</p>
</div>
<div class="teaching-entry">
<p style="margin-bottom: 0.5em">
<strong>Advanced Research Methods & Design</strong><br />
<em>University of Newcastle (2021)</em>
</p>
<p>
Honours level course covering a advanced statistical techniques and
research methodology relevant to the projects undertaken by students
at this level, such as analytic strategy, design planning, data
handling, and Bayesian analysis.
</p>
</div>
<div class="teaching-entry">
<p style="margin-bottom: 0.5em">
<strong>Cognitive Psychology</strong><br />
<em>University of Newcastle (2019-2020)</em>
</p>
<p>
Examination of psychological processes such as attention, memory,
word recognition, reasoning and problem solving. Laboratory
exercises are used to demonstrate these basic psychological
processes.
</p>
</div>
</details>
</main>
<footer>
<hr />
<p>
<a href="mailto:bennett.1755@osu.edu"
><i class="fas fa-envelope"></i> Email</a
>
|
<a href="https://orcid.org/0000-0001-7309-4915" target="_blank"
><i class="fab fa-orcid"></i> ORCID</a
>
|
<a href="https://github.com/MurraySBennett" target="_blank"
><i class="fab fa-github"></i> GitHub</a
>
</p>
<p>© <span id="current-year"></span> Murray S. Bennett</p>
</footer>
<script>
document.getElementById("current-year").textContent =
new Date().getFullYear();
</script>
</body>
</html>