forked from pyvypr/home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
63 lines (55 loc) · 3.19 KB
/
team.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>VyPR - Performance Analysis for Python Programs</title>
<!-- Bootstrap -->
<link href="static/css/bootstrap.min.css" rel="stylesheet" />
<link href="static/css/custom.css" rel="stylesheet" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript" src="static/js/bootstrap.min.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="index.html"><img src="static/images/vypr_logo.jpeg" height="50px" margin-top="-10px" /></a>
</div>
<!-- nav links -->
<div class="collapse navbar-collapse" id="navbar">
<ul class="nav navbar-nav">
<!--<li><a href="tutorial.html">Tutorial</a></li>-->
<li><a href="use-vypr.html">Get Started with VyPR</a></li>
<li><a href="publications.html">Research</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="licence.html">Licence</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="container">
<h1>Team</h1>
<h4>Joshua Dawes - <a href="http://joshhdawes.github.io/">personal website</a></h4>
<p>Josh is reaching the end of his PhD with the University of Manchester, during which he was based at CERN in Geneva, Switzerland.</p>
<p>His PhD research was primilary focused on program performance analysis using formal methods such as Runtime Verification (RV). The theoretical foundations, along with subsequent implementations, that he developed during his PhD led to the current state of the VyPR framework.</p>
<h4>Omar Javed</h4>
<p>Omar Javed is a PhD student in University of Lugano. His research interest includes dynamic program analysis, unit testing, mining software repositories and cloud computing. In particular, his research is on investigating dynamic analysis techniques during testing to understand performance issues of software projects.</p>
<h4>Marta Han</h4>
<p>Marta is a master's student at the University of Zagreb pursuing a degree in Mathematical statistics. She works on the VyPR framework as a Technical Student at CERN.</p>
</ul>
</div>
<div class="footer-copyright text-center py-3">
<p>(C) Copyright 2020 CERN and University of Manchester.</p>
</div>
</body>
</html>