-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (100 loc) · 5.51 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<title>James Buchanan | Home</title>
<link href="style.css" rel="stylesheet" type="text/css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<br>
<div class="container">
<div class="row">
<!-- profile card -->
<div class="col-md-4 mb-2 offset-sm-1">
<div class="card card-body" id="profile-wrapper">
<img id="profile-pic" src="images/profile_pic.jpg" class="img-fluid", alt="profile picture">
<!-- <hr>s -->
<h1 class="monospace-title"><b>JAMES BUCHANAN</b></h1>
<p>I'm a data analyst who's interested in backend development, analytics, and data-intensive systems</p>
<ul class="social-links">
<li>
<a href="mailto:[email protected]">
<img class="social" src="images/email_icon.png" class="img-fluid", alt="email icon">
</a>
</li>
<li>
<a href="https://github.com/buchananja">
<img class="social" src="images/github_icon.png" class="img-fluid", alt="github icon">
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/buchananja">
<img class="social" src="images/linkedin_icon.png" class="img-fluid", alt="linkedin icon">
</a>
</li>
</ul>
</div>
</div>
<div class="col-md-6 mb-2">
<div class="card card-body">
<p class="monospace-semibold">🎨 SKILLS</p>
<ul>
<li>• Languages | <i>Python, SQL, HTML, CSS</i></li>
<li>• Libraries | <i>pandas, Matplotlib, PyTest, NumPy, SQLite, Tkinter</i></li>
<li>• Tools | <i>Git/GitHub, GNU/Linux, Conda, Copilot, Jupyter</i></li>
</ul>
<hr>
<p class="monospace-semibold">🎓 EDUCATION</p>
<ul>
<li>• University of Aberdeen | MSci Biological Sciences</li>
<li>• Robert Gordon University | Access to Computing</li>
</ul>
</div>
</div>
</div>
<!-- <br> -->
<div class="row">
<div class="col-md-10 mb-2 offset-sm-1">
<br>
<h1 class="monospace-bold">🛠️ PROJECTS</h1>
</div>
</div>
<div class="row">
<div class="col-md-5 mb-2 offset-sm-1">
<a class="project-card-link" href="https://github.com/buchananja/dpyp">
<div class="card project-card">
<div class="project">
<img class="project-icon" src="images/dpyp_logo.svg" class="img-fluid", alt="dpyp icon">
<div class="project-text">
<p class="project-description"><i>A convenience tool for small-scale data pipelines in Python</i></p>
<!-- <hr> -->
<p class="subtitle"><i>Python, pandas, PyTest, PyArrow</i></p>
</div>
</div>
</div>
</a>
</div>
<div class="col-md-5 mb-2">
<a class="project-card-link" href="https://github.com/buchananja/mohws">
<div class="card project-card">
<div class="project">
<img class="project-icon" src="images/mohws_logo.svg" class="img-fluid", alt="mowhs icon">
<div class="project-text">
<p class="project-description"><i>A web-scraper for Met Office historical UK weather station data</i></p>
<!-- <hr> -->
<p class="subtitle"><i>Python, dpyp, PyTest</i></p>
</div>
</div>
</div>
</a>
</div>
</div>
<br>
</body>
</html>