-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (91 loc) · 3.58 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
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Finlay Macklon</title>
<link rel="icon" type="image/x-icon" href="favicon.ico"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div id="header-content">
<div id="header-title-text">
<h1 id="header-title-text">Finlay Macklon's Website</h1>
</div>
</div>
</header>
<div id="top-of-page" class="header-footer-spacer"></div>
<div id="content">
<section>
<h2 class="section-header">About Me</h2>
<div id="profile">
<div id="profile-picture-container">
<img id="profile-picture" src="https://pbs.twimg.com/profile_images/1637855606714556417/tS2gVzIL_400x400.jpg" alt="Finlay Macklon" width="128" height="128">
</div>
<h4 id="my-name">Finlay Macklon</h3>
<p id="profile-text">
I am a PhD Candidate in the <i>Analytics of Software, GAmes, and Repository Data (<a href="https://asgaard.ece.ualberta.ca/">ASGAARD</a>) Lab</i> at the University of Alberta, where I perform research on HTML5 <canvas> testing under the supervision of Dr. Cor-Paul Bezemer.
</p>
</div>
</section>
<section>
<h2 class="section-header">Projects</h2>
<div class="grid-container">
<div class="grid-member">
<h4>Searching Software Engineering Papers</h4>
<div class="grid-project-description">
<p style="text-align: justify;">
This project is a forked version of <small><a href="https://github.com/karpathy/arxiv-sanity-lite"><tt>karpathy/arxiv-sanity-lite</tt></a></small>, adjusted to instead crawl and serve links to software engineering papers. This project also leverages <small><a href="https://github.com/ZeinabAk/DatasetSEVenues"><tt>ZeinabAk/DatasetSEVenues</tt></a></small> to include links to papers from software engineering journals and conferences. The website is intended to complement Google Scholar and arXiv.
</p>
</div>
<div class="grid-member-links">
<ul>
<li>
<a href="https://findsepapers.ca">findsepapers.ca</a>
</li>
<li>
<img src="img/code.svg" width="14" height="14"></img>
<a href="https://github.com/finlaymacklon/arxiv-sanity-lite-se">Source Code</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<section>
<h2 class="section-header">Other Links</h2>
<div class="grid-container">
<div class="grid-member">
<div class="grid-member-links" id="out-links">
<ul>
<li>
<a href="https://github.com/finlaymacklon">GitHub Profile</a>
</li>
<li>
<a href="https://scholar.google.ca/citations?user=IwmKG3YAAAAJ&hl=en">Google Scholar Profile</a>
</li>
</ul>
</div>
</div>
</div>
</section>
</div>
<!-- <section id="mobile-back-to-top">
<div>
<button><a href="#top-of-page">Back to Top</a></button>
</div>
</section> -->
</div>
<div class="header-footer-spacer"></div>
<footer>
<div id="footer-copyright">
<!-- <p>© 2024 Finlay Macklon</p> -->
<div id="mobile-back-to-top">
<button><a href="#top-of-page">Back to Top</a></button>
</div>
</div>
</footer>
</body>
</html>