-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
36 lines (35 loc) · 2.03 KB
/
about.html
File metadata and controls
36 lines (35 loc) · 2.03 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
<!DOCTYPE html>
<head>
<script src="js/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<script>
$(document).ready(function() {
$('#navbar').load('navbar.html');
});
</script>
<div id="navbar"></div>
<main>
<h1>About Me</h1>
<div style="float: right;">
<img src="resources/bio.jpg" width="256" height="256">
</div>
<p>
Hello! <br><br>
I am Mark Anderson and I am a PhD student in the SIGMEDIA Group at Trinity College Dublin. <br>
I am studying under the supervision of Dr. Naomi Harte and my research is on the automatic and remote monitoring of birds through their vocalisations.<br>
My background is primarily in signal processing (originally analogue but now mostly digital) and now moving slightly more into the deep learning sphere, <br>
although I like to stick to signal processing whenever I can (deep learning is a useful tool, but not the be all end all!). <br>
I got my Bachelors from Trinity in 2018, followed by my masters degree in 2019.
</p>
<p>
Besides my research, I am interested in music (I play concertina, guitar and do a bit of music production/synth work), retro/vintage computing, <br>
electronics (also as a hobby), ham radio, photography and video games. So you may see some projects relating to those here, or on github in general. <br>
Software wise I like to mess around with various deep learning methods for synthesis, or code up useful tools for myself, or sometimes tools that aren't useful but were fun anyway! <br>
I do hope to add more hardware projects soon, I have some test equipment designs, synthesisers/eurorack modules, blinky things. Fun things like that.
</p>
</main>
</body>