-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (73 loc) · 3.68 KB
/
index.html
File metadata and controls
90 lines (73 loc) · 3.68 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
<!-- ####### THIS IS A COMMENT - Visible only in the source editor #########-->
<html>
<head>
<link rel="stylesheet" href="CSS/personal_style.CSS">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(function(){
$('#adventures').load('adventures-menu.html');
});
</script>
<script>
$(function(){
$('#thoughts').load('thoughts-menu.html');
});
</script>
<script>
function toggleContent(element) {
element.style.display = (element.dataset.toggled ^= 1) ? "block" : "none";
};
</script>
<title> Fred's Homepage </title>
<link rel="shortcut icon" type="image/png" href="Images/favicon.png">
</head>
<body>
<a href="/index.html" class="heading"><h1>Frederik Brooke Barnes</h1></a>
<h2><button onclick="toggleContent(document.getElementById('about_me_content'));"><h2>About me</h2></button></h2>
<div class="hidden" id="about_me_content">
<div class ="content-section">
<p >Hello! I'm Fred and I am a PhD student in Physics at Heriot-Watt, Edinburgh. I am investigating quantum key distribution using quantum dot single photon sources. I will work in the <a href="https://qpl.eps.hw.ac.uk/">Quantum Photonics Lab </a> supervised by Brian Geradot, and the <a href="https://www.mostlyquantum.org"> Edinburgh Mostly Quantum Lab</a>, supervised by Alessandro Fedrizzi.
</div>
</div>
<h2><button onclick="toggleContent(document.getElementById('CV_content'));"><h2>CV</h2></button></h2>
<div class="hidden" id="CV_content">
<div class ="content-section">
<p>Heriot-Watt University — PhD Physics — 2021-2025 </p>
<p>University of Manchester — MPhys Physics — 2017-2021</p>
<p>Luminal Limited — Director — 2018-2021 </p>
<p>Scudamore's Punting Company — River Tour Guide — 2016-2018 and 2021</p>
<p>Hills Road Sixth Form College — Maths, Further Maths, Physics, Chemistry, Philosophy — 2014-2016</p>
</div>
</div>
<h2><button onclick="toggleContent(document.getElementById('physics_content'));"><h2>Physics</h2></button></h2>
<div class="hidden" id="physics_content">
<div class ="content-section">
<p>Poster — <a href="Documents/PGR-poster.pdf" target="_blank">1st Year Postgraduate Research Prize: Telecom quantum key distribution with a quantum dot </a> — 2022</p>
<p>Talk — <a href="Documents/Photon22.pdf" target="_blank">Photon 2022: Quantum key distribution with a bright telecom wavelength quantum dot single-photon source</a> — 2022</p>
<p>Journal Article — <a href="https://doi.org/10.1088/1361-6420/ac7743" target="_blank">Machine learning enhanced electrical impedance tomography for 2D materials</a> — 2022</p>
<p>MPhys Project — <a href="Documents/MPhys_Report_Semester_2.pdf" target="_blank">Modelling integrated photonic quantum technologies</a> — 2021</p>
<p>MPhys Project — <a href="Documents/MPhys_Report_Semester_1.pdf" target="_blank">Machine learning enabled electrical impedance tomography</a> — 2020</p>
</div>
</div>
<h2><button onclick="toggleContent(document.getElementById('code_content'));"><h2>Code</h2></button></h2>
<div class="hidden" id="code_content">
<div class ="content-section">
<p>You can find my code on <a href="https://github.com/fbbarnes" target="_blank">GitHub</a>.</p>
</div>
</div>
<div id="adventures">
</div>
<h2><button onclick="toggleContent(document.getElementById('recipes_content'));"><h2>Recipes</h2></button></h2>
<div class="hidden" id="recipes_content">
<div class ="content-section">
<p>You can find my recipes on <a href="https://fbbarnes.github.io/recipes/" target="_blank">Wardlaw Eats</a>.</p>
</div>
</div>
<div id="thoughts">
</div>
<a href="https://fbbarnes.github.io/rss.xml">
Subscribe on RSS
</a>
</body>
</html>