-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
182 lines (173 loc) · 7.87 KB
/
index.html
File metadata and controls
182 lines (173 loc) · 7.87 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jake Edmonstone</title>
<meta name="description" content="Jake Edmonstone — fourth-year Pure Mathematics and Computer Science student at the University of Waterloo. Projects, course notes, and contact.">
<meta property="og:title" content="Jake Edmonstone">
<meta property="og:description" content="Portfolio of Jake Edmonstone, Pure Math and CS student at UWaterloo.">
<meta property="og:url" content="https://jake-edmonstone.github.io/">
<meta property="og:type" content="website">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>J</text></svg>">
<style>
* { margin: 0; padding: 0; box-sizing: border-box }
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.6;
background: #fefefe;
color: #222;
max-width: 1000px;
margin: auto;
padding: 2rem 1.5rem;
}
header { border-bottom: 1px solid #eee; padding-bottom: 1.5rem; margin-bottom: 2rem }
.header-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem }
h1 { font-size: 2.2rem }
.tabs { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem }
.tab {
background: transparent;
border: 1px solid #444;
padding: .4rem .8rem;
cursor: pointer;
font-size: 1rem;
border-radius: 4px;
transition: background .2s, color .2s;
}
.tab:hover { background: #eee; color: #000 }
.tab.active { background: #444; color: #fff }
.section { display: none }
.section.active { display: block }
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
article {
border: 1px solid #ddd;
padding: 1rem;
border-radius: 6px;
background: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
article img, article video { max-width: 100%; border-radius: 4px; height: auto; display: block }
@media (prefers-reduced-motion: reduce) {
article video { display: none }
}
.header-links {
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: .75rem;
font-size: .95rem;
}
.header-links a {
text-decoration: none;
color: #333;
font-weight: 500;
padding: .4em .8em;
border: 1px solid #ccc;
border-radius: 4px;
transition: background .2s, color .2s;
}
.header-links a:hover { background: #eee; color: #000 }
ul { padding-left: 1.2rem }
li { margin-bottom: .5rem }
main { contain: content }
.notes-list { list-style: none; padding-left: 0 }
.notes-list li { margin-bottom: .75rem }
.notes-list a { font-size: 1.1rem }
.file-meta { color: #666; font-size: .85rem }
</style>
</head>
<body>
<header>
<div class="header-top">
<h1>Jake Edmonstone</h1>
<ul class="header-links">
<li><a href="mailto:jbedmons@uwaterloo.ca" title="Email">Email</a></li>
<li><a href="https://github.com/jake-edmonstone" target="_blank" rel="noopener noreferrer">GitHub</a></li>
<li><a href="https://www.linkedin.com/in/jake-edmonstone" target="_blank" rel="noopener noreferrer">LinkedIn</a></li>
<li><a href="resume.pdf" target="_blank" rel="noopener noreferrer">Résumé</a></li>
<!-- <li><a href="cv.pdf" target="_blank" rel="noopener noreferrer">CV</a></li> -->
</ul>
</div>
<nav class="tabs" role="tablist">
<button id="tab-about" class="tab active" data-target="about" role="tab" aria-controls="about" aria-selected="true">About</button>
<button id="tab-projects" class="tab" data-target="projects" role="tab" aria-controls="projects" aria-selected="false">Projects</button>
<button id="tab-course-notes" class="tab" data-target="course-notes" role="tab" aria-controls="course-notes" aria-selected="false">Course Notes</button>
</nav>
</header>
<main>
<section id="about" class="section active" role="tabpanel" aria-labelledby="tab-about">
<h2>About</h2>
<p>Hi, I'm Jake Edmonstone, a fourth year pure mathematics and computer science student at the University of Waterloo</p>
</section>
<section id="projects" class="section" role="tabpanel" aria-labelledby="tab-projects">
<h2>Projects</h2>
<div class="grid">
<article>
<h3><a href="https://github.com/jake-edmonstone/Chess" target="_blank" rel="noopener noreferrer">Chess</a></h3>
<video autoplay loop muted playsinline width="600" height="601">
<source src="images/chess_demo.webm" type="video/webm">
</video>
<p>A fully functional chess game in C++ using OOP, with four difficulty levels and modular structure.</p>
</article>
<article>
<h3><a href="https://github.com/jake-edmonstone/WLP4-Compiler" target="_blank" rel="noopener noreferrer">WLP4 Compiler</a></h3>
<p>A C++ compiler for WLP4, a C-like language, that generates MIPS assembly. Includes scanning, parsing, type checking, and codegen.</p>
</article>
<article>
<h3><a href="https://github.com/jake-edmonstone/Sudoku-to-SAT-Reduction" target="_blank" rel="noopener noreferrer">Sudoku to SAT Reduction</a></h3>
<p>A C++ project that performs a Karp reduction from 9×9 Sudoku to SAT and decodes SAT solver assignments into solved grids.</p>
</article>
<article>
<h3><a href="https://github.com/jake-edmonstone/Gravity-and-Collision-Simulator" target="_blank" rel="noopener noreferrer">Gravity and Collision Simulator</a></h3>
<video autoplay loop muted playsinline width="600" height="346">
<source src="images/balls_demo.webm" type="video/webm">
</video>
<p>Simulates bouncing balls using vector math and collision detection in 2D space. Written in Python.</p>
</article>
<article>
<h3><a href="https://github.com/jake-edmonstone/Conway-s-Game-Of-Life" target="_blank" rel="noopener noreferrer">Game of Life</a></h3>
<video autoplay loop muted playsinline width="600" height="346">
<source src="images/life_demo.webm" type="video/webm">
</video>
<p>Conway's Game of Life in Python using 2D arrays and stateful logic to evolve the grid over time.</p>
</article>
</div>
</section>
<section id="course-notes" class="section" role="tabpanel" aria-labelledby="tab-course-notes">
<h2>Course Notes</h2>
<ul class="notes-list">
<li><a href="pmath347-notes.pdf">PMATH 347 — Groups and Rings</a></li>
<li><a href="pmath367-notes.pdf">PMATH 367 — Topology</a></li>
<!-- <li><a href="pmath450-notes.pdf">PMATH 450 — Measure Theory</a></li> -->
<!-- <li><a href="pmath352-notes.pdf">PMATH 352 — Complex Analysis</a></li> -->
</ul>
</section>
</main>
<script>
const tabs = [...document.querySelectorAll(".tab")];
const sections = [...document.querySelectorAll(".section")];
function activate(id) {
tabs.forEach(t => { t.classList.remove("active"); t.setAttribute("aria-selected", "false") });
sections.forEach(s => { s.classList.remove("active") });
const tab = tabs.find(t => t.dataset.target === id);
if (tab) {
tab.classList.add("active");
tab.setAttribute("aria-selected", "true");
document.getElementById(id).classList.add("active");
}
}
tabs.forEach(tab => {
tab.addEventListener("click", () => {
location.hash = tab.dataset.target;
});
});
window.addEventListener("hashchange", () => activate(location.hash.slice(1)));
if (location.hash) activate(location.hash.slice(1));
</script>
</body>
</html>