-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
324 lines (292 loc) · 12.1 KB
/
index.html
File metadata and controls
324 lines (292 loc) · 12.1 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Researcher CV</title>
<style>
body {
font-family: "DM Sans", sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
color: #333;
}
header {
display: flex;
flex-direction: row;
justify-content: space-between; /* Pushes content to the sides */
align-items: center;
font-family: "DM Serif Display", serif;
font-style: normal;
background: none;
color: black;
padding: 1rem 0;
text-align: center;
/* border-bottom: 1px solid black;*/
}
div.general {
flex-grow: 4;
padding-left: 100px;
}
header img {
flex-shrink: 1;
width: 100px;
height: 100px;
border-radius: 50%; /* Makes the image circular */
/*border: 3px solid #D9F2D0;*/
margin: 10px;
}
header h1 {
font-weight: 600;
margin: 0;
font-size: 3rem;
}
header p {
font-family: "DM Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-size: 1.2rem;
font-style: normal;
margin-top: 0;
padding: 10px 10px;
}
nav {
background: none;
color: white;
padding: 0.5rem 0;
text-align: center;
box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, .11);
}
nav a {
color: grey;
text-decoration: none;
margin: 0 1rem;
font-size: 1rem;
}
nav a:hover {
text-decoration: underline;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 2rem 0;
}
section {
margin-bottom: 2rem;
}
section h2 {
border-bottom: 2px solid black;
padding-bottom: 0.5rem;
}
ul {
list-style: disc inside none;
/* list-style-type: circle; Options: circle, square, disc, etc. */
/*margin-left: 20px;*/
}
ul > li {
margin-bottom: 0.5rem;
}
i {
padding: 10px;
align-content: center;
}
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr; /* Two columns of equal width */
gap: 20px; /* Space between the columns */
padding: 0px;
}
.grid-item {
/* padding: 20px;*/
/* border: 1px solid #ddd;*/
text-align: left;
border-radius: 5px;
}
p.paragraph {
text-align: justify;
}
footer {
text-align: center;
background: #333;
color: white;
padding: 1rem 0;
}
table {
width: 100%; /* Adjust to fit the container */
border-collapse: collapse; /* Ensures no gaps between cells */
}
td {
padding: 10px;
text-align: left; /* Align text to the left */
vertical-align: top;
}
.col-1 {
white-space: nowrap; /* Prevents text from wrapping *//
}
/* align header differently */
@media only screen and (max-device-width: 700px) {
div.general {
padding-left: 0px;
}
header {
display: flex;
flex-direction: column;
justify-content: space-between; /* Pushes content to the sides */
align-items: center;
}
.grid-container {
grid-template-columns: 1fr; /* Single column */
}
.col-1 {
white-space: normal; /* Prevents text from wrapping */
min-width: 100px;
}
nav a {
color: grey;
text-decoration: none;
margin: 0 0.5rem;
font-size: 1rem;
}
footer {
padding: 2px 20px;
}
}
</style>
</head>
<body>
<header>
<div class="general">
<h1>Charlotte Bunnenberg</h1>
<p>Researcher in eco-evolutionary modelling</p>
</div>
<img alt="profile picture" src="profile_pic_square.jpg">
</header>
<nav>
<a href="#profile">Profile</a>
<a href="#research">Research</a>
<a href="#education">Education</a>
<a href="#contact">Contact</a>
</nav>
<div class="container">
<section id="profile">
<h2>Profile</h2>
<p class="paragraph">Hello World! My name is Charlotte Bunnenberg, and I am a researcher specializing in eco-evolutionary modelling.
<br>
My journey began with a passion for the intersection of computer science and biology, leading me to pursue
a bachelor's degree in Computer Science and Biology at the University of Osnabrück, Germany.
I further honed my expertise by earning a master’s degree in Informatics for the Natural Sciences at Bielefeld University.
<br> <br>
Currently, I am a PhD student in
<a href="https://gretabocedi.com/" target="_blank">
Greta Bocedi’s Research Group</a> at the University of Aberdeen, contributing to the international project
<a href="https://bio.au.dk/en/research/research-centres/centre-for-ecological-genetics" target="_blank">
"The missing link: unraveling the role of genetic variation of beneficial arthropods in agro-ecosystems"</a>,
funded by the Novo Nordisk Foundation.
<br>
My research focuses on the impact of dynamic landscape processes on genetic diversity.
I am particularly interested in applying mathematical and computational frameworks, such as graph theory,
to improve landscape connectivity analysis and enhance our understanding of biodiversity conservation.
</p>
</section>
<section id="research">
<h2>Research interests</h2>
<ul>
<li>Landscape ecology (connectivity)</li>
<li>Network Science</li>
<li>Method development</li>
<li>Science communication</li>
<li>Data science</li>
<li>Theoretical population genetics</li>
</ul>
</section>
<section id="Presentations">
<h2>Presentations</h2>
<h3>Talks</h3>
<ul>
<li> Bunnenberg, C. & Bocedi, G. (2025, September 2-5). Combining graph theory and eco-evolutionary simulations to analyse functional connectivity through time and space. IALE 2025 European Landscape Ecology Congress.</li>
<li>Bunnenberg, C. & Bocedi, G. (2025, May 19-23). Effects of recurrent anthropogenic disturbance on the distribution and dynamics of genetic diversity. Young Modellers in Ecology (YoMos) Workshop 2025.</li>
<li>Bunnenberg, C. & Bocedi, G. (2024, May 13 - 17). Enhance landscape connectivity analysis by integrating graph theory and process modelling. Young Modellers in Ecology (YoMos) Workshop 2024.</li>
<li>Bunnenberg, C., Hobolth, A. & Baake, E. (2023, April 26 - 27). Coalescent with Recombination. Phase-type distributions with a view to population genetics Symposium. Technical University of Denmark.</li>
</ul>
<h3>Posters</h3>
<ul>
<li>Bunnenberg, C. & Bocedi, G. (2025, May 9). Combining graph theory and eco-evolutionary simulations to analyse functional connectivity through time and space. Scottish Complex Network Society (SCoNeS) Inaugural Meeting.</li>
<li>Bunnenberg C. & Bocedi, G. (2024, December 10 - 13). Effects of recurrent disturbance on the distribution of genetic diversity and population persistence. British Ecological Society Annual Meeting 2024.</li>
</ul>
<h3>Science communication</h3>
<ul>
<li>
Co-organiser of<a href="https://www.yomos.org/" target="_blank"> YoMos Workshop May 2026. Sylt, Germany. </a>
</li>
<li>
Co-organiser of<a href="https://www.yomos.org/" target="_blank"> YoMos Workshop May 2025. Ilmenau, Germany. </a>
</li>
</ul>
</section>
<section id="education">
<h2>Education</h2>
<table>
<tr>
<td class="col-1">2024 – to date</td>
<td>Ph.D. in Ecology, School of Biological Sciences, University of Aberdeen, Scotland</td>
</tr>
<tr>
<td class="col-1">2022 – 2023</td>
<td>Study Abroad (Bioinformatics Masters of Science), Aarhus University, Denmark</td>
</tr>
<tr>
<td class="col-1">2020 – 2023</td>
<td>Masters of Science in Informatics in the Natural Sciences , University of Bielefeld, Germany</td>
</tr>
<tr>
<td class="col-1">2018 – 2020</td>
<td>Bachelors of Science in Computer Science and Biology (Dual Major), University of Osnabrück, Germany</td>
</tr>
</table>
<h3>Further Experience</h3>
<table>
<tr>
<td class="col-1">Mar 2022 – Jun 2022</tdclass="col-1">
<td>Internship at Fraunhofer EU Office, Brussels, Belgium</td>
</tr>
<tr>
<td class="col-1">Oct 2022 – Oct 2023</td>
<td>Supplementary programme “Europa Intensiv“, University of Bielefeld, Germany</td>
</tr>
<tr>
<td class="col-1">Apr 2020 – Jun 2020</td>
<td>
Industrial internship at the Computational Biology of Aging Research Group, Leibniz Institute on Aging – Fritz Lipmann Institute, Jena, Germany
</td>
</tr>
</table>
</section>
<section id="contact">
<h2>Contact</h2>
<table>
<tr>
<td ><i class="fas fa-solid fa-envelope fa-lg"></i></tdclass="col-1">
<td>c.bunnenberg.24@abdn.ac.uk</td>
</tr>
<tr>
<td ><i class="fas fa-brands fa-bluesky fa-lg"></i></tdclass="col-1">
<td>@cbunnenberg.bsky.social</td>
</tr>
<tr>
<td ><i class="fa-solid fa-location-dot fa-lg"></i></td>
<td>School of Biological Sciences, University of Aberdeen, Aberdeen AB24 2TZ, United Kingdom</td>
</tr>
</table>
</section>
</div>
<footer>
<p>© 2024 Charlotte Bunnenberg. All rights reserved.</p>
</footer>
</body>
</html>