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
|
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="preview.css">
</head>
<body>
<header>
<h1 class="title">Sam Anthony</h1>
<table>
<tr><td>sam@samanthony.xyz</td></tr>
<tr><td>(709) 746–7582</td></tr>
</table>
</header>
<main>
<div class="section">
<h1>Education</h1>
<div class="subsection">
<div class="columns-3">
<div>June 2026</div>
<div>
<p>Concordia University</p>
<p>Bachelor of Computer Science. <i>GPA</i>: 4.01 out of 4.30.</p>
</div>
<div>Montréal, QC</div>
</div>
</div>
</div>
<div class="section">
<h1>Employment</h1>
<div class="subsection">
<div class="columns-3">
<div>Summer 2025</div>
<div>
<p>C-CORE</p>
<p>TODO</p>
</div>
<div>St. John's, NL</div>
</div>
</div>
<div class="subsection">
<div class="columns-3">
<div>Summers 2021, 2023</div>
<div>
<p>WheelTec</p>
<p>TODO</p>
</div>
<div>St. John's, NL</div>
</div>
</div>
</div>
<div class="section columns-2">
<div><h1>Skills</h1></div>
<div>
<p>Programming in Ada, C, C++, Go, Java, Python.</p>
<p>Embedded systems design and programming with PIC, STM32, ESP32 microcontrollers; Zynq 7000 SoC; FreeRTOS; state machines.</p>
</div>
</div>
<div class="section columns-2">
<div><h1>Honors</h1></div>
<div><p>Dean's list, Concordia University, 2024 and 2025.</p></div>
</div>
<div class="section columns-2">
<div><h1>Projects</h1></div>
<div class="right">git.samanthony.xyz</div>
</div>
<h2>pfc</h2>
<p>
Interactive postfix calculator for the terminal.
Written in Go.
</p>
<h2>volute</h2>
<p>
Turbocharger selection program.
Uses compressor maps and engine parameters.
Written in C using microui.
</p>
<div class="section columns-3">
<div><h1>References</h1></div>
<div>
TODO
</div>
<div></div>
</div>
</main>
</body>
</html>
|