-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (84 loc) · 5.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Homepage</title>
<link rel="stylesheet" href="css/main.css" type="text/css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" integrity="sha384-y3tfxAZXuh4HwSYylfB+J125MxIs6mR5FOHamPBG064zB+AFeWH94NdvaCBm8qnd" crossorigin="anonymous">
<!-- Prepare a container for your calendar. -->
<!-- <script src="https://cdn.rawgit.com/IonicaBizau/github-calendar/gh-pages/dist/github-calendar.min.js"></script> -->
<script src="https://unpkg.com/github-calendar@latest/dist/github-calendar.min.js"></script>
<!-- Optionally, include the theme (if you don't want to struggle to write the CSS) -->
<!-- <link rel="stylesheet" href="https://cdn.rawgit.com/IonicaBizau/github-calendar/gh-pages/dist/github-calendar.css"/> -->
<link rel="stylesheet" href="https://unpkg.com/github-calendar@latest/dist/github-calendar-responsive.css"/>
</head>
<body>
<div class="container">
<nav>
<ul class='nav nav-pills'>
<li id='home_page' class='nav-item'><a class='nav-link' href="/index.html">Home</a></li>
<li id='astronomy_page'class='nav-item'><a class='nav-link' href="/astronomy.html">Astronomy</a></li>
<li id='photography_page'class='nav-item hidden-xs-down'><a class='nav-link' href="/photography.html">Photography</a></li>
<li id='timelapse_page'class='nav-item hidden-sm-down'><a class='nav-link' href="/timelapse.html">Time-lapse</a></li>
<li id='publications_page'class='nav-item'><a class='nav-link' href="/publications.html">Publications</a></li>
<li id='python_page'class='nav-item hidden-lg-down'><a class='nav-link' href="/python.html">Python</a></li>
<li id='webdev_page'class='nav-item hidden-lg-down'><a class='nav-link' href="/webdev.html">Web Dev</a></li>
</ul>
</nav>
</div>
<div id='main' class='container'>
<div class = 'row'>
<div class='col-md-5 col-sm-12 col-xs-12' id='photo_div'>
<img id='photo' src="img/CV_Photo.jpg">
</div>
<div class='col-md-7 col-sm-12 col-xs-12 text-center' id='landing'>
<p> I am a senior research fellow at the University of Warwick, UK.
I work in the field of transiting exoplanets and I'm currently part of the
PLAnetary Transits and Oscillations (PLATO) space mission where my focus is
on the long-term detrending of systematic noise.
PLATO is a European Space Agency medium class mission to be launched
in 2026 with the goal of discovering and characterising Earth-like
planets around Sun-like stars. I am also a part-time project manager for
the Gravitational-wave Optical Transient Observer (GOTO) project and I'm
involved in the NGTS, SuperWASP and W1m projects at Warwick.
</p>
<p> I previously worked on the Next Generation Transit Survey (NGTS) as the operations
postdoc. NGTS is a robotic observatory dedicated to transiting exoplanet science.
It is located in the southern hemisphere at ESO's Paranal Observatory, Chile.
</p>
<p> In my free time I enjoy spending time with my son, learning more about programming and
web development techniques and tinkering with a Raspberry Pi.
</p>
<p> A copy of my CV can be found
<a href="https://github.com/jmccormac01/CV/blob/master/CV_JamesMcCormac.pdf">on GitHub</a>
</p>
<p>Follow me on Twitter: <a href='https://twitter.com/jmccormac001'>@jmccormac001</a>
and GitHub <a href='https://github.com/jmccormac01'>jmccormac01</a>
</p>
</div>
</div>
<div class='row hidden-sm-down'>
<div id='githistory' class='container center-block'>
<div class="calendar">
Loading the data just for you.
</div>
</div>
</div>
</div>
<!-- jQuery first, then Bootstrap JS. -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/js/bootstrap.min.js" integrity="sha384-vZ2WRJMwsjRMW/8U7i6PWi6AlO1L79snBrmgiDpgIWJ82z8eA5lenwvxbMV1PAh7" crossorigin="anonymous"></script>
<script>
$(document).ready(function(){
$('#home_page').addClass('active');
});
</script>
<script>
new GitHubCalendar(".calendar", "jmccormac01");
</script>
</body>
</html>