-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (47 loc) · 2.41 KB
/
index.html
File metadata and controls
62 lines (47 loc) · 2.41 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sam Conran</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="/hub/hub.css">
</head>
<body>
<section id="main">
<h1 class="center">Sam Conran</h1>
<p class="center">Please find a list of my projects below. I plan to build a proper homepage once I find the time!</p>
<div id="project-container">
<div class="project-div" href="https://github.com/samconran/whereswally">
<h2>Where's Wally (C++)</h2>
<p>My OOP project, implementing a sub-image search based on Zero Normalised Cross Correlation.</p>
</div>
<div class="project-div" href="https://samconran.github.io/grade-calculator">
<h2>Uni Grade Calculator</h2>
<p>A little Vue web app to help calculate what marks you need on upcoming tests for a given grade.</p>
</div>
<div class="project-div" href="https://github.com/samconran/natas-solutions">
<h2>Natas Solutions</h2>
<p>A small collection of my solutions to OverTheWire's Natas security challenges.</p>
</div>
<div class="project-div" href="https://samconran.github.io/tv-s">
<h2>TV Scheduler</h2>
<p>A web app that integrates with Google Calendar to add your favourite TV shows.</p>
</div>
<div class="project-div" href="https://github.com/samconran/lineEdit">
<h2>Line Edit</h2>
<p>A single line text editor written in Haskell for my Programming Paradigms module.</p>
</div>
<div class="project-div" href="https://samconran.github.io/black-peaks">
<h2>Black Peaks (uni project)</h2>
<p>The "band or brand" website created for my uni project. Includes a music player and some other fun stuff.</p>
</div>
<div class="project-div" href="https://samconran.github.io/Canvas">
<h2>Canvas</h2>
<p>Just some fun I had on canvas a while back. Before I was confident with JS/web dev, so not the best!</p>
</div>
</div>
</section>
<script src="/hub/hub.js" charset="utf-8"></script>
</body>
</html>