Fixing template by removing margins and spacing nicely
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 16s
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 16s
This commit is contained in:
@@ -3,16 +3,16 @@ import { ref, shallowRef, defineAsyncComponent } from "vue";
|
|||||||
import CVGeneral from "./CVGeneral.vue";
|
import CVGeneral from "./CVGeneral.vue";
|
||||||
import CVBackend from "./CVBackend.vue";
|
import CVBackend from "./CVBackend.vue";
|
||||||
import CVFrontend from "./CVFrontend.vue";
|
import CVFrontend from "./CVFrontend.vue";
|
||||||
|
import CVTemp from "./CVTemp.vue";
|
||||||
|
|
||||||
const CVHospitality = defineAsyncComponent(() =>
|
const CVHospitality = defineAsyncComponent(() => import("./CVHospitality.vue"));
|
||||||
import("./CVHospitality.vue"),
|
|
||||||
);
|
|
||||||
|
|
||||||
const templates = [
|
const templates = [
|
||||||
{ label: "General", component: CVGeneral },
|
{ label: "General", component: CVGeneral },
|
||||||
{ label: "Backend", component: CVBackend },
|
{ label: "Backend", component: CVBackend },
|
||||||
{ label: "Frontend", component: CVFrontend },
|
{ label: "Frontend", component: CVFrontend },
|
||||||
{ label: "Hospitality", component: CVHospitality },
|
{ label: "Hospitality", component: CVHospitality },
|
||||||
|
{ label: "Temp", component: CVTemp },
|
||||||
];
|
];
|
||||||
|
|
||||||
const selected = ref(0);
|
const selected = ref(0);
|
||||||
@@ -72,7 +72,9 @@ function print() {
|
|||||||
color: #333;
|
color: #333;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
transition: background 0.15s, color 0.15s;
|
transition:
|
||||||
|
background 0.15s,
|
||||||
|
color 0.15s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cv-btn:hover {
|
.cv-btn:hover {
|
||||||
@@ -90,7 +92,9 @@ function print() {
|
|||||||
|
|
||||||
.cv-fade-enter-active,
|
.cv-fade-enter-active,
|
||||||
.cv-fade-leave-active {
|
.cv-fade-leave-active {
|
||||||
transition: opacity 0.15s ease, transform 0.15s ease;
|
transition:
|
||||||
|
opacity 0.15s ease,
|
||||||
|
transform 0.15s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cv-fade-enter-from {
|
.cv-fade-enter-from {
|
||||||
|
|||||||
@@ -5,187 +5,204 @@ import Project from "./Project.vue";
|
|||||||
<template>
|
<template>
|
||||||
<main>
|
<main>
|
||||||
<div class="no-print w-full h-20"></div>
|
<div class="no-print w-full h-20"></div>
|
||||||
<div class="a4page">
|
<div class="a4page justify-between">
|
||||||
<div class="flex flex-row justify-between">
|
<section>
|
||||||
<h1 class="name">Adam French</h1>
|
<div class="flex flex-row justify-between">
|
||||||
<div class="contact-details text-right">
|
<h1 class="name">Adam French</h1>
|
||||||
<p>+447563266931</p>
|
<div class="contact-details text-right">
|
||||||
<p>adam.a.french@outlook.com</p>
|
<p>+447563266931</p>
|
||||||
<h4>
|
<p>adam.a.french@outlook.com</p>
|
||||||
<a href="https://www.adam-french.co.uk">
|
<h4>
|
||||||
www.adam-french.co.uk
|
<a href="https://www.adam-french.co.uk">
|
||||||
</a>
|
www.adam-french.co.uk
|
||||||
</h4>
|
</a>
|
||||||
</div>
|
</h4>
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Profile</h2>
|
|
||||||
<p>
|
|
||||||
First Class Honours graduate in Computer Science with
|
|
||||||
Mathematics from the University of Leeds (81.1%), with a year
|
|
||||||
abroad at the University of Waterloo. Strong background in
|
|
||||||
systems programming, API design, database management, and
|
|
||||||
infrastructure automation. Keen to build reliable, performant
|
|
||||||
backend services in a collaborative engineering team.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2>Skills</h2>
|
|
||||||
<div class="skills-grid">
|
|
||||||
<div>
|
|
||||||
<strong>Languages</strong><br /><small
|
|
||||||
>Go, Rust, Python, SQL, JavaScript / TypeScript</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<strong>Backend</strong><br /><small
|
|
||||||
>REST, GraphQL, gRPC, JWT Auth, WebSockets,
|
|
||||||
Middleware</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<strong>Infrastructure</strong><br /><small
|
|
||||||
>Docker, Nginx, PostgreSQL, SQLite, Git Actions,
|
|
||||||
Linux</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Projects</h2>
|
|
||||||
|
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template v-slot:left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/gitea/adamf/web_server.git"
|
|
||||||
>
|
|
||||||
web_server.git
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template v-slot:top>
|
|
||||||
<small>
|
|
||||||
Go, Gin, GraphQL, PostgreSQL, GORM, Docker, Nginx, JWT
|
|
||||||
Auth, Git Actions
|
|
||||||
</small>
|
|
||||||
<small>2025</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
Self-hosted personal website with a Go backend serving a
|
|
||||||
GraphQL API, JWT authentication, Spotify OAuth integration,
|
|
||||||
and WebSocket messaging. Fully containerised with Docker
|
|
||||||
Compose and automated CI/CD via Git Actions.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template v-slot:left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/gitea/adamf/tour.git"
|
|
||||||
>
|
|
||||||
tour.git
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template v-slot:top>
|
|
||||||
<small>Rust, CLI, File I/O</small>
|
|
||||||
<small>2026</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
CLI tool for building and navigating interactive code
|
|
||||||
tutorials, with version-traversal semantics inspired by Git.
|
|
||||||
Designed for robustness with comprehensive error handling
|
|
||||||
and structured file operations.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template v-slot:left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/gitea/adamf/rust-raytracer.git"
|
|
||||||
>
|
|
||||||
rust-raytracer.git
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template v-slot:top>
|
|
||||||
<small>Rust, Multithreading, Performance</small>
|
|
||||||
<small>2023</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
Parallelised recursive ray tracer leveraging Rust's
|
|
||||||
ownership model for safe concurrency. Focused on algorithmic
|
|
||||||
efficiency, low-level memory management, and multi-core
|
|
||||||
utilisation.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
<Project>
|
|
||||||
<template #left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
class="text-center w-full"
|
|
||||||
href="https://community.wolfram.com/groups/-/m/t/3210947"
|
|
||||||
>
|
|
||||||
Wolfram Summer School
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template #top>
|
|
||||||
<small>Wolfram Mathematica</small>
|
|
||||||
<small>2024</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
Research project on Mobile Automata with data visualisation
|
|
||||||
and academic presentation. Delivered within a tight deadline
|
|
||||||
in collaboration with academic mentors.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
|
|
||||||
<h2>Education</h2>
|
|
||||||
<div class="w-full h-fit flex-row flex gap-5">
|
|
||||||
<div class="flex-1 border-r border-dotted pr-3">
|
|
||||||
<h3>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/pdf/transcript.pdf"
|
|
||||||
>
|
|
||||||
University of Leeds
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<div
|
|
||||||
class="flex-row flex place-content-between m-auto place-items-center"
|
|
||||||
>
|
|
||||||
<small>First Class Honours (81.1%)</small>
|
|
||||||
<small>2021–2025</small>
|
|
||||||
</div>
|
</div>
|
||||||
<small>BSc Computer Science with Mathematics </small>
|
|
||||||
<ul class="list-disc list-inside">
|
|
||||||
<li>Compiler Design and Construction</li>
|
|
||||||
<li>Graph Algorithms & Complexity Theory</li>
|
|
||||||
<li>Algorithms & Data Structures I & II</li>
|
|
||||||
<li>Databases · Computer Processors</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-1 pl-3">
|
</section>
|
||||||
<h3>University of Waterloo</h3>
|
|
||||||
<div
|
<section>
|
||||||
class="flex-row flex place-content-between m-auto place-items-center"
|
<h2>Profile</h2>
|
||||||
>
|
<p>
|
||||||
<small>Year abroad</small>
|
First Class Honours graduate in Computer Science with
|
||||||
<small>2023–2024</small>
|
Mathematics from the University of Leeds (81.1%), with a
|
||||||
|
year abroad at the University of Waterloo. Strong background
|
||||||
|
in systems programming, API design, database management, and
|
||||||
|
infrastructure automation. Keen to build reliable,
|
||||||
|
performant backend services in a collaborative engineering
|
||||||
|
team.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Skills</h2>
|
||||||
|
<div class="skills-grid">
|
||||||
|
<div>
|
||||||
|
<strong>Languages</strong><br /><small
|
||||||
|
>Go, Rust, Python, SQL, JavaScript /
|
||||||
|
TypeScript</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Backend</strong><br /><small
|
||||||
|
>REST, GraphQL, gRPC, JWT Auth, WebSockets,
|
||||||
|
Middleware</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Infrastructure</strong><br /><small
|
||||||
|
>Docker, Nginx, PostgreSQL, SQLite, Git Actions,
|
||||||
|
Linux</small
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
<ul class="list-disc list-inside">
|
|
||||||
<li>Applied Cryptography</li>
|
|
||||||
<li>Introduction to Computer Graphics</li>
|
|
||||||
<li>Introduction to Rings and Fields with Applications</li>
|
|
||||||
<li>Formal Languages & Finite Automata</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Projects</h2>
|
||||||
|
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/web_server.git"
|
||||||
|
>
|
||||||
|
web_server.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>
|
||||||
|
Go, Gin, GraphQL, PostgreSQL, GORM, Docker, Nginx,
|
||||||
|
JWT Auth, Git Actions
|
||||||
|
</small>
|
||||||
|
<small>2025</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Self-hosted personal website with a Go backend serving a
|
||||||
|
GraphQL API, JWT authentication, Spotify OAuth
|
||||||
|
integration, and WebSocket messaging. Fully
|
||||||
|
containerised with Docker Compose and automated CI/CD
|
||||||
|
via Git Actions.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/tour.git"
|
||||||
|
>
|
||||||
|
tour.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>Rust, CLI, File I/O</small>
|
||||||
|
<small>2026</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
CLI tool for building and navigating interactive code
|
||||||
|
tutorials, with version-traversal semantics inspired by
|
||||||
|
Git. Designed for robustness with comprehensive error
|
||||||
|
handling and structured file operations.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/rust-raytracer.git"
|
||||||
|
>
|
||||||
|
rust-raytracer.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>Rust, Multithreading, Performance</small>
|
||||||
|
<small>2023</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Parallelised recursive ray tracer leveraging Rust's
|
||||||
|
ownership model for safe concurrency. Focused on
|
||||||
|
algorithmic efficiency, low-level memory management, and
|
||||||
|
multi-core utilisation.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project>
|
||||||
|
<template #left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
class="text-center w-full"
|
||||||
|
href="https://community.wolfram.com/groups/-/m/t/3210947"
|
||||||
|
>
|
||||||
|
Wolfram Summer School
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template #top>
|
||||||
|
<small>Wolfram Mathematica</small>
|
||||||
|
<small>2024</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Research project on Mobile Automata with data
|
||||||
|
visualisation and academic presentation. Delivered
|
||||||
|
within a tight deadline in collaboration with academic
|
||||||
|
mentors.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Education</h2>
|
||||||
|
<div class="w-full h-fit flex-row flex gap-5">
|
||||||
|
<div class="flex-1 border-r border-dotted pr-3">
|
||||||
|
<h3>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/pdf/transcript.pdf"
|
||||||
|
>
|
||||||
|
University of Leeds
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<div
|
||||||
|
class="flex-row flex place-content-between m-auto place-items-center"
|
||||||
|
>
|
||||||
|
<small>First Class Honours (81.1%)</small>
|
||||||
|
<small>2021–2025</small>
|
||||||
|
</div>
|
||||||
|
<small>BSc Computer Science with Mathematics </small>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
<li>Compiler Design and Construction</li>
|
||||||
|
<li>Graph Algorithms & Complexity Theory</li>
|
||||||
|
<li>Algorithms & Data Structures I & II</li>
|
||||||
|
<li>Databases · Computer Processors</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="flex-1 pl-3">
|
||||||
|
<h3>University of Waterloo</h3>
|
||||||
|
<div
|
||||||
|
class="flex-row flex place-content-between m-auto place-items-center"
|
||||||
|
>
|
||||||
|
<small>Year abroad</small>
|
||||||
|
<small>2023–2024</small>
|
||||||
|
</div>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
<li>Applied Cryptography</li>
|
||||||
|
<li>Introduction to Computer Graphics</li>
|
||||||
|
<li>
|
||||||
|
Introduction to Rings and Fields with
|
||||||
|
Applications
|
||||||
|
</li>
|
||||||
|
<li>Formal Languages & Finite Automata</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="no-print w-full h-20"></div>
|
<div class="no-print w-full h-20"></div>
|
||||||
|
|
||||||
<div class="a4page">
|
<div class="a4page gap-10">
|
||||||
<div class="flex-1 pl-3">
|
<section>
|
||||||
<h2>Experience</h2>
|
<h2>Experience</h2>
|
||||||
<Project>
|
<Project>
|
||||||
<template #left>
|
<template #left>
|
||||||
@@ -203,6 +220,8 @@ import Project from "./Project.vue";
|
|||||||
in customer-facing roles.
|
in customer-facing roles.
|
||||||
</p>
|
</p>
|
||||||
</Project>
|
</Project>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
<h2>Interests</h2>
|
<h2>Interests</h2>
|
||||||
<ul class="list-disc list-inside">
|
<ul class="list-disc list-inside">
|
||||||
<li>Leetcode — daily competitive problem solving</li>
|
<li>Leetcode — daily competitive problem solving</li>
|
||||||
@@ -211,7 +230,7 @@ import Project from "./Project.vue";
|
|||||||
<li>Climbing · Gym</li>
|
<li>Climbing · Gym</li>
|
||||||
<li>Board games · Meetup.com</li>
|
<li>Board games · Meetup.com</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="no-print w-full h-20"></div>
|
<div class="no-print w-full h-20"></div>
|
||||||
@@ -267,6 +286,8 @@ import Project from "./Project.vue";
|
|||||||
border: 1px solid var(--primary);
|
border: 1px solid var(--primary);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin: auto auto;
|
margin: auto auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Component Styling */
|
/* Component Styling */
|
||||||
@@ -286,6 +307,7 @@ h1,
|
|||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
h4 {
|
h4 {
|
||||||
|
margin: 0px;
|
||||||
border: none;
|
border: none;
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
font-family: var(--font-heading);
|
font-family: var(--font-heading);
|
||||||
|
|||||||
@@ -5,185 +5,204 @@ import Project from "./Project.vue";
|
|||||||
<template>
|
<template>
|
||||||
<main>
|
<main>
|
||||||
<div class="no-print w-full h-20"></div>
|
<div class="no-print w-full h-20"></div>
|
||||||
<div class="a4page">
|
<div class="a4page justify-between">
|
||||||
<div class="flex flex-row justify-between">
|
<section>
|
||||||
<h1 class="name">Adam French</h1>
|
<div class="flex flex-row justify-between">
|
||||||
<div class="contact-details text-right">
|
<h1 class="name">Adam French</h1>
|
||||||
<p>+447563266931</p>
|
<div class="contact-details text-right">
|
||||||
<p>adam.a.french@outlook.com</p>
|
<p>+447563266931</p>
|
||||||
<h4>
|
<p>adam.a.french@outlook.com</p>
|
||||||
<a href="https://www.adam-french.co.uk">
|
<h4>
|
||||||
www.adam-french.co.uk
|
<a href="https://www.adam-french.co.uk">
|
||||||
</a>
|
www.adam-french.co.uk
|
||||||
</h4>
|
</a>
|
||||||
</div>
|
</h4>
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Profile</h2>
|
|
||||||
<p>
|
|
||||||
First Class Honours graduate in Computer Science with
|
|
||||||
Mathematics from the University of Leeds (81.1%), with a year
|
|
||||||
abroad at the University of Waterloo. Passionate about crafting
|
|
||||||
responsive, accessible, and performant user interfaces.
|
|
||||||
Experienced across multiple frontend frameworks with a solid
|
|
||||||
understanding of the full stack.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2>Skills</h2>
|
|
||||||
<div class="skills-grid">
|
|
||||||
<div>
|
|
||||||
<strong>Frontend</strong><br /><small
|
|
||||||
>Vue, React / Redux, Svelte, Tailwind CSS, HTML / CSS,
|
|
||||||
WebAssembly</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<strong>Languages</strong><br /><small
|
|
||||||
>JavaScript / TypeScript, Rust, Go, Python, SQL</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<strong>Tooling / Infra</strong><br /><small
|
|
||||||
>Vite, Docker, Nginx, Git Actions, PostgreSQL,
|
|
||||||
Figma</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Projects</h2>
|
|
||||||
|
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template v-slot:left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/gitea/adamf/web_server.git"
|
|
||||||
>
|
|
||||||
web_server.git
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template v-slot:top>
|
|
||||||
<small>
|
|
||||||
Vue 3, Tailwind CSS, Vite, Pinia, Responsive Design,
|
|
||||||
Rust → Wasm
|
|
||||||
</small>
|
|
||||||
<small>2025</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
Personal website SPA built with Vue 3, Tailwind CSS, and
|
|
||||||
Pinia for state management. Features responsive layouts,
|
|
||||||
dark mode, WebAssembly integration, and a custom component
|
|
||||||
library. Iterated through Svelte and React/Redux before
|
|
||||||
settling on Vue.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template v-slot:left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/gitea/adamf/tour.git"
|
|
||||||
>
|
|
||||||
tour.git
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template v-slot:top>
|
|
||||||
<small>Rust</small>
|
|
||||||
<small>2026</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
CLI tool for building and navigating interactive code
|
|
||||||
tutorials, with version-traversal semantics inspired by Git.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template v-slot:left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/gitea/adamf/rust-raytracer.git"
|
|
||||||
>
|
|
||||||
rust-raytracer.git
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template v-slot:top>
|
|
||||||
<small>Rust, Linear Algebra, Multithreading</small>
|
|
||||||
<small>2023</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
Parallelised recursive ray tracer for realistic 3D
|
|
||||||
rendering. Emphasised algorithmic efficiency and low-level
|
|
||||||
memory management in Rust.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
<Project>
|
|
||||||
<template #left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
class="text-center w-full"
|
|
||||||
href="https://community.wolfram.com/groups/-/m/t/3210947"
|
|
||||||
>
|
|
||||||
Wolfram Summer School
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template #top>
|
|
||||||
<small>Wolfram Mathematica</small>
|
|
||||||
<small>2024</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
Research project on Mobile Automata with data visualisation
|
|
||||||
and academic presentation. Delivered within a tight deadline
|
|
||||||
in collaboration with academic mentors.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
|
|
||||||
<h2>Education</h2>
|
|
||||||
<div class="w-full h-fit flex-row flex gap-5">
|
|
||||||
<div class="flex-1 border-r border-dotted pr-3">
|
|
||||||
<h3>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/pdf/transcript.pdf"
|
|
||||||
>
|
|
||||||
University of Leeds
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<div
|
|
||||||
class="flex-row flex place-content-between m-auto place-items-center"
|
|
||||||
>
|
|
||||||
<small>81.1% — First Class Honours</small>
|
|
||||||
<small>2021–2025</small>
|
|
||||||
</div>
|
</div>
|
||||||
<small>BSc Computer Science with Mathematics </small>
|
|
||||||
<ul class="list-disc list-inside">
|
|
||||||
<li>Algorithms & Data Structures I & II</li>
|
|
||||||
<li>Compiler Design and Construction</li>
|
|
||||||
<li>Formal Languages & Finite Automata</li>
|
|
||||||
<li>Graph Algorithms & Complexity Theory</li>
|
|
||||||
<li>Machine Learning & Databases & Computer Processors</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-1 pl-3">
|
</section>
|
||||||
<h3>University of Waterloo</h3>
|
|
||||||
<div
|
<section>
|
||||||
class="flex-row flex place-content-between m-auto place-items-center"
|
<h2>Profile</h2>
|
||||||
>
|
<p>
|
||||||
<small>Year abroad</small>
|
First Class Honours graduate in Computer Science with
|
||||||
<small>2023–2024</small>
|
Mathematics from the University of Leeds (81.1%), with a
|
||||||
|
year abroad at the University of Waterloo. Passionate about
|
||||||
|
crafting responsive, accessible, and performant user
|
||||||
|
interfaces. Experienced across multiple frontend frameworks
|
||||||
|
with a solid understanding of the full stack.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Skills</h2>
|
||||||
|
<div class="skills-grid">
|
||||||
|
<div>
|
||||||
|
<strong>Frontend</strong><br /><small
|
||||||
|
>Vue, React / Redux, Svelte, Tailwind CSS, HTML /
|
||||||
|
CSS, WebAssembly</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Languages</strong><br /><small
|
||||||
|
>JavaScript / TypeScript, Rust, Go, Python,
|
||||||
|
SQL</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Tooling / Infra</strong><br /><small
|
||||||
|
>Vite, Docker, Nginx, Git Actions, PostgreSQL,
|
||||||
|
Figma</small
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
<ul class="list-disc list-inside">
|
|
||||||
<li>Applied Cryptography</li>
|
|
||||||
<li>Introduction to Computer Graphics</li>
|
|
||||||
<li>Introduction to Rings and Fields with Applications</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Projects</h2>
|
||||||
|
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/web_server.git"
|
||||||
|
>
|
||||||
|
web_server.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>
|
||||||
|
Vue 3, Tailwind CSS, Vite, Pinia, Responsive Design,
|
||||||
|
Rust → Wasm
|
||||||
|
</small>
|
||||||
|
<small>2025</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Personal website SPA built with Vue 3, Tailwind CSS, and
|
||||||
|
Pinia for state management. Features responsive layouts,
|
||||||
|
dark mode, WebAssembly integration, and a custom
|
||||||
|
component library. Iterated through Svelte and
|
||||||
|
React/Redux before settling on Vue.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/tour.git"
|
||||||
|
>
|
||||||
|
tour.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>Rust</small>
|
||||||
|
<small>2026</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
CLI tool for building and navigating interactive code
|
||||||
|
tutorials, with version-traversal semantics inspired by
|
||||||
|
Git.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/rust-raytracer.git"
|
||||||
|
>
|
||||||
|
rust-raytracer.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>Rust, Linear Algebra, Multithreading</small>
|
||||||
|
<small>2023</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Parallelised recursive ray tracer for realistic 3D
|
||||||
|
rendering. Emphasised algorithmic efficiency and
|
||||||
|
low-level memory management in Rust.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project>
|
||||||
|
<template #left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
class="text-center w-full"
|
||||||
|
href="https://community.wolfram.com/groups/-/m/t/3210947"
|
||||||
|
>
|
||||||
|
Wolfram Summer School
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template #top>
|
||||||
|
<small>Wolfram Mathematica</small>
|
||||||
|
<small>2024</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Research project on Mobile Automata with data
|
||||||
|
visualisation and academic presentation. Delivered
|
||||||
|
within a tight deadline in collaboration with academic
|
||||||
|
mentors.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Education</h2>
|
||||||
|
<div class="w-full h-fit flex-row flex gap-5">
|
||||||
|
<div class="flex-1 border-r border-dotted pr-3">
|
||||||
|
<h3>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/pdf/transcript.pdf"
|
||||||
|
>
|
||||||
|
University of Leeds
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<div
|
||||||
|
class="flex-row flex place-content-between m-auto place-items-center"
|
||||||
|
>
|
||||||
|
<small>81.1% — First Class Honours</small>
|
||||||
|
<small>2021–2025</small>
|
||||||
|
</div>
|
||||||
|
<small>BSc Computer Science with Mathematics </small>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
<li>Algorithms & Data Structures I & II</li>
|
||||||
|
<li>Compiler Design and Construction</li>
|
||||||
|
<li>Formal Languages & Finite Automata</li>
|
||||||
|
<li>Graph Algorithms & Complexity Theory</li>
|
||||||
|
<li>
|
||||||
|
Machine Learning & Databases & Computer
|
||||||
|
Processors
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="flex-1 pl-3">
|
||||||
|
<h3>University of Waterloo</h3>
|
||||||
|
<div
|
||||||
|
class="flex-row flex place-content-between m-auto place-items-center"
|
||||||
|
>
|
||||||
|
<small>Year abroad</small>
|
||||||
|
<small>2023–2024</small>
|
||||||
|
</div>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
<li>Applied Cryptography</li>
|
||||||
|
<li>Introduction to Computer Graphics</li>
|
||||||
|
<li>
|
||||||
|
Introduction to Rings and Fields with
|
||||||
|
Applications
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="no-print w-full h-20"></div>
|
<div class="no-print w-full h-20"></div>
|
||||||
|
|
||||||
<div class="a4page">
|
<div class="a4page gap-10">
|
||||||
<div class="flex-1 pl-3">
|
<section>
|
||||||
<h2>Experience</h2>
|
<h2>Experience</h2>
|
||||||
<Project>
|
<Project>
|
||||||
<template #left>
|
<template #left>
|
||||||
@@ -201,6 +220,8 @@ import Project from "./Project.vue";
|
|||||||
in customer-facing roles.
|
in customer-facing roles.
|
||||||
</p>
|
</p>
|
||||||
</Project>
|
</Project>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
<h2>Interests</h2>
|
<h2>Interests</h2>
|
||||||
<ul class="list-disc list-inside">
|
<ul class="list-disc list-inside">
|
||||||
<li>Leetcode — daily competitive problem solving</li>
|
<li>Leetcode — daily competitive problem solving</li>
|
||||||
@@ -209,7 +230,7 @@ import Project from "./Project.vue";
|
|||||||
<li>Climbing · Gym</li>
|
<li>Climbing · Gym</li>
|
||||||
<li>Board games · Meetup.com</li>
|
<li>Board games · Meetup.com</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="no-print w-full h-20"></div>
|
<div class="no-print w-full h-20"></div>
|
||||||
@@ -265,6 +286,9 @@ import Project from "./Project.vue";
|
|||||||
border: 1px solid var(--primary);
|
border: 1px solid var(--primary);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin: auto auto;
|
margin: auto auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Component Styling */
|
/* Component Styling */
|
||||||
@@ -284,6 +308,7 @@ h1,
|
|||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
h4 {
|
h4 {
|
||||||
|
margin: 0px;
|
||||||
border: none;
|
border: none;
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
font-family: var(--font-heading);
|
font-family: var(--font-heading);
|
||||||
|
|||||||
@@ -5,188 +5,204 @@ import Project from "./Project.vue";
|
|||||||
<template>
|
<template>
|
||||||
<main>
|
<main>
|
||||||
<div class="no-print w-full h-20"></div>
|
<div class="no-print w-full h-20"></div>
|
||||||
<div class="a4page">
|
<div class="a4page justify-between">
|
||||||
<div class="flex flex-row justify-between">
|
<section>
|
||||||
<h1 class="name">Adam French</h1>
|
<div class="flex flex-row justify-between">
|
||||||
<div class="contact-details text-right">
|
<h1 class="name">Adam French</h1>
|
||||||
<p>+447563266931</p>
|
<div class="contact-details text-right">
|
||||||
<p>adam.a.french@outlook.com</p>
|
<p>+447563266931</p>
|
||||||
<h4>
|
<p>adam.a.french@outlook.com</p>
|
||||||
<a href="https://www.adam-french.co.uk">
|
<h4>
|
||||||
www.adam-french.co.uk
|
<a href="https://www.adam-french.co.uk">
|
||||||
</a>
|
www.adam-french.co.uk
|
||||||
</h4>
|
</a>
|
||||||
</div>
|
</h4>
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Profile</h2>
|
|
||||||
<p>
|
|
||||||
First Class Honours graduate in Computer Science with
|
|
||||||
Mathematics from the University of Leeds (81.1%), with a year
|
|
||||||
abroad at the University of Waterloo. Proficient in full-stack
|
|
||||||
development, systems programming, and CI/CD automation. Eager to
|
|
||||||
contribute to a collaborative engineering team, apply strong
|
|
||||||
academic foundations to real-world problems, and grow through
|
|
||||||
hands-on experience.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2>Skills</h2>
|
|
||||||
<div class="skills-grid">
|
|
||||||
<div>
|
|
||||||
<strong>Languages</strong><br /><small
|
|
||||||
>Go, Rust, Python, JavaScript / TypeScript, SQL</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<strong>Frontend</strong><br /><small
|
|
||||||
>Vue, React / Redux, Svelte, Tailwind CSS,
|
|
||||||
WebAssembly</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<strong>Backend / Infra</strong><br /><small
|
|
||||||
>Nginx, Docker, PostgreSQL, SQLite, JWT Auth, Git
|
|
||||||
Actions</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Projects</h2>
|
|
||||||
|
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template v-slot:left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/gitea/adamf/web_server.git"
|
|
||||||
>
|
|
||||||
web_server.git
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template v-slot:top>
|
|
||||||
<small>
|
|
||||||
Nginx, Vue, Postgres, Docker, Go, Python, Rust → Wasm,
|
|
||||||
Git Actions, JWT Auth
|
|
||||||
</small>
|
|
||||||
<small>2025</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
Self-hosted personal website with a fully automated CI/CD
|
|
||||||
pipeline. Iterated across diverse tech stacks including
|
|
||||||
Svelte, React/Redux, SQLite, Rust Actix, and Deno.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template v-slot:left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/gitea/adamf/tour.git"
|
|
||||||
>
|
|
||||||
tour.git
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template v-slot:top>
|
|
||||||
<small>Rust</small>
|
|
||||||
<small>2026</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
CLI tool for building and navigating interactive code
|
|
||||||
tutorials, with version-traversal semantics inspired by Git.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template v-slot:left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/gitea/adamf/rust-raytracer.git"
|
|
||||||
>
|
|
||||||
rust-raytracer.git
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template v-slot:top>
|
|
||||||
<small>Rust, Linear Algebra, Multithreading</small>
|
|
||||||
<small>2023</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
Parallelised recursive ray tracer for realistic 3D
|
|
||||||
rendering. Emphasised algorithmic efficiency and low-level
|
|
||||||
memory management in Rust.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
<Project>
|
|
||||||
<template #left>
|
|
||||||
<h4>
|
|
||||||
<a
|
|
||||||
class="text-center w-full"
|
|
||||||
href="https://community.wolfram.com/groups/-/m/t/3210947"
|
|
||||||
>
|
|
||||||
Wolfram Summer School
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</template>
|
|
||||||
<template #top>
|
|
||||||
<small>Wolfram Mathematica</small>
|
|
||||||
<small>2024</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
Research project on Mobile Automata with data visualisation
|
|
||||||
and academic presentation. Delivered within a tight deadline
|
|
||||||
in collaboration with academic mentors.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
|
|
||||||
<h2>Education</h2>
|
|
||||||
<div class="w-full h-fit flex-row flex gap-5">
|
|
||||||
<div class="flex-1 border-r border-dotted pr-3">
|
|
||||||
<h3>
|
|
||||||
<a
|
|
||||||
href="https://www.adam-french.co.uk/pdf/transcript.pdf"
|
|
||||||
>
|
|
||||||
University of Leeds
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<div
|
|
||||||
class="flex-row flex place-content-between m-auto place-items-center"
|
|
||||||
>
|
|
||||||
<small>First Class Honours (81.1%)</small>
|
|
||||||
<small>2021–2025</small>
|
|
||||||
</div>
|
</div>
|
||||||
<small>BSc Computer Science with Mathematics </small>
|
|
||||||
<ul class="list-disc list-inside">
|
|
||||||
<li>Algorithms & Data Structures I & II</li>
|
|
||||||
<li>Compiler Design and Construction</li>
|
|
||||||
<li>Formal Languages & Finite Automata</li>
|
|
||||||
<li>Graph Algorithms & Complexity Theory</li>
|
|
||||||
<li>
|
|
||||||
Machine Learning · Databases · Computer Processors
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-1 pl-3">
|
</section>
|
||||||
<h3>University of Waterloo</h3>
|
|
||||||
<div
|
<section>
|
||||||
class="flex-row flex place-content-between m-auto place-items-center"
|
<h2>Profile</h2>
|
||||||
>
|
<p>
|
||||||
<small>Year abroad</small>
|
First Class Honours graduate in Computer Science with
|
||||||
<small>2023–2024</small>
|
Mathematics from the University of Leeds (81.1%), with a
|
||||||
|
year abroad at the University of Waterloo. Proficient in
|
||||||
|
full-stack development, systems programming, and CI/CD
|
||||||
|
automation. Eager to contribute to a collaborative
|
||||||
|
engineering team, apply strong academic foundations to
|
||||||
|
real-world problems, and grow through hands-on experience.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Skills</h2>
|
||||||
|
<div class="skills-grid">
|
||||||
|
<div>
|
||||||
|
<strong>Languages</strong><br /><small
|
||||||
|
>Go, Rust, Python, JavaScript / TypeScript,
|
||||||
|
SQL</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Frontend</strong><br /><small
|
||||||
|
>Vue, React / Redux, Svelte, Tailwind CSS,
|
||||||
|
WebAssembly</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Backend / Infra</strong><br /><small
|
||||||
|
>Nginx, Docker, PostgreSQL, SQLite, JWT Auth, Git
|
||||||
|
Actions</small
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
<ul class="list-disc list-inside">
|
|
||||||
<li>Applied Cryptography</li>
|
|
||||||
<li>Introduction to Computer Graphics</li>
|
|
||||||
<li>
|
|
||||||
Introduction to Rings and Fields with Applications
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Projects</h2>
|
||||||
|
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/web_server.git"
|
||||||
|
>
|
||||||
|
web_server.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>
|
||||||
|
Nginx, Vue, Postgres, Docker, Go, Python, Rust →
|
||||||
|
Wasm, Git Actions, JWT Auth
|
||||||
|
</small>
|
||||||
|
<small>2025</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Self-hosted personal website with a fully automated
|
||||||
|
CI/CD pipeline. Iterated across diverse tech stacks
|
||||||
|
including Svelte, React/Redux, SQLite, Rust Actix, and
|
||||||
|
Deno.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/tour.git"
|
||||||
|
>
|
||||||
|
tour.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>Rust</small>
|
||||||
|
<small>2026</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
CLI tool for building and navigating interactive code
|
||||||
|
tutorials, with version-traversal semantics inspired by
|
||||||
|
Git.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/rust-raytracer.git"
|
||||||
|
>
|
||||||
|
rust-raytracer.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>Rust, Linear Algebra, Multithreading</small>
|
||||||
|
<small>2023</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Parallelised recursive ray tracer for realistic 3D
|
||||||
|
rendering. Emphasised algorithmic efficiency and
|
||||||
|
low-level memory management in Rust.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project>
|
||||||
|
<template #left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
class="text-center w-full"
|
||||||
|
href="https://community.wolfram.com/groups/-/m/t/3210947"
|
||||||
|
>
|
||||||
|
Wolfram Summer School
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template #top>
|
||||||
|
<small>Wolfram Mathematica</small>
|
||||||
|
<small>2024</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Research project on Mobile Automata with data
|
||||||
|
visualisation and academic presentation. Delivered
|
||||||
|
within a tight deadline in collaboration with academic
|
||||||
|
mentors.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Education</h2>
|
||||||
|
<div class="w-full h-fit flex-row flex gap-5">
|
||||||
|
<div class="flex-1 border-r border-dotted pr-3">
|
||||||
|
<h3>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/pdf/transcript.pdf"
|
||||||
|
>
|
||||||
|
University of Leeds
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<div
|
||||||
|
class="flex-row flex place-content-between m-auto place-items-center"
|
||||||
|
>
|
||||||
|
<small>First Class Honours (81.1%)</small>
|
||||||
|
<small>2021–2025</small>
|
||||||
|
</div>
|
||||||
|
<small>BSc Computer Science with Mathematics </small>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
<li>Algorithms & Data Structures I & II</li>
|
||||||
|
<li>Compiler Design and Construction</li>
|
||||||
|
<li>Formal Languages & Finite Automata</li>
|
||||||
|
<li>Graph Algorithms & Complexity Theory</li>
|
||||||
|
<li>
|
||||||
|
Machine Learning · Databases · Computer
|
||||||
|
Processors
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="flex-1 pl-3">
|
||||||
|
<h3>University of Waterloo</h3>
|
||||||
|
<div
|
||||||
|
class="flex-row flex place-content-between m-auto place-items-center"
|
||||||
|
>
|
||||||
|
<small>Year abroad</small>
|
||||||
|
<small>2023–2024</small>
|
||||||
|
</div>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
<li>Applied Cryptography</li>
|
||||||
|
<li>Introduction to Computer Graphics</li>
|
||||||
|
<li>
|
||||||
|
Introduction to Rings and Fields with
|
||||||
|
Applications
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="no-print w-full h-20"></div>
|
<div class="no-print w-full h-20"></div>
|
||||||
|
|
||||||
<div class="a4page">
|
<div class="a4page gap-10">
|
||||||
<div class="flex-1 pl-3">
|
<section>
|
||||||
<h2>Experience</h2>
|
<h2>Experience</h2>
|
||||||
<Project>
|
<Project>
|
||||||
<template #left>
|
<template #left>
|
||||||
@@ -204,6 +220,8 @@ import Project from "./Project.vue";
|
|||||||
in customer-facing roles.
|
in customer-facing roles.
|
||||||
</p>
|
</p>
|
||||||
</Project>
|
</Project>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
<h2>Interests</h2>
|
<h2>Interests</h2>
|
||||||
<ul class="list-disc list-inside">
|
<ul class="list-disc list-inside">
|
||||||
<li>Leetcode — daily competitive problem solving</li>
|
<li>Leetcode — daily competitive problem solving</li>
|
||||||
@@ -212,7 +230,7 @@ import Project from "./Project.vue";
|
|||||||
<li>Climbing · Gym</li>
|
<li>Climbing · Gym</li>
|
||||||
<li>Board games · Meetup.com</li>
|
<li>Board games · Meetup.com</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="no-print w-full h-20"></div>
|
<div class="no-print w-full h-20"></div>
|
||||||
@@ -268,6 +286,9 @@ import Project from "./Project.vue";
|
|||||||
border: 1px solid var(--primary);
|
border: 1px solid var(--primary);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin: auto auto;
|
margin: auto auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Component Styling */
|
/* Component Styling */
|
||||||
@@ -287,6 +308,7 @@ h1,
|
|||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
h4 {
|
h4 {
|
||||||
|
margin: 0px;
|
||||||
border: none;
|
border: none;
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
font-family: var(--font-heading);
|
font-family: var(--font-heading);
|
||||||
|
|||||||
@@ -5,137 +5,149 @@ import Project from "./Project.vue";
|
|||||||
<template>
|
<template>
|
||||||
<main>
|
<main>
|
||||||
<div class="no-print w-full h-20"></div>
|
<div class="no-print w-full h-20"></div>
|
||||||
<div class="a4page">
|
<div class="a4page justify-between">
|
||||||
<div class="flex flex-row justify-between">
|
<section>
|
||||||
<h1 class="name">Adam French</h1>
|
<div class="flex flex-row justify-between">
|
||||||
<div class="contact-details text-right">
|
<h1 class="name">Adam French</h1>
|
||||||
<p>+447563266931</p>
|
<div class="contact-details text-right">
|
||||||
<p>adam.a.french@outlook.com</p>
|
<p>+447563266931</p>
|
||||||
<h4>
|
<p>adam.a.french@outlook.com</p>
|
||||||
<a href="https://www.adam-french.co.uk">
|
<h4>
|
||||||
www.adam-french.co.uk
|
<a href="https://www.adam-french.co.uk">
|
||||||
</a>
|
www.adam-french.co.uk
|
||||||
</h4>
|
</a>
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
<h2>Profile</h2>
|
<section>
|
||||||
<p>
|
<h2>Profile</h2>
|
||||||
First Class Honours graduate in Computer Science with
|
|
||||||
Mathematics from the University of Leeds (81.1%). Dependable and
|
|
||||||
personable team player with five years of hospitality experience
|
|
||||||
across busy bars, restaurants, and event venues. Thrives under
|
|
||||||
pressure, communicates clearly, and takes pride in providing
|
|
||||||
excellent customer service.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2>Experience</h2>
|
|
||||||
|
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template #left>
|
|
||||||
<h4>Belgrave Music Hall</h4>
|
|
||||||
</template>
|
|
||||||
<template #top>
|
|
||||||
<small>Bartender & Waiter</small>
|
|
||||||
<small>2021–2025</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
<p>
|
||||||
Served food and drinks in a high-volume live-music venue in
|
First Class Honours graduate in Computer Science with
|
||||||
Leeds. Handled busy weekend shifts, managed multiple tables
|
Mathematics from the University of Leeds (81.1%). Dependable
|
||||||
simultaneously, and maintained a calm, friendly demeanour
|
and personable team player with five years of hospitality
|
||||||
during peak hours.
|
experience across busy bars, restaurants, and event venues.
|
||||||
|
Thrives under pressure, communicates clearly, and takes
|
||||||
|
pride in providing excellent customer service.
|
||||||
</p>
|
</p>
|
||||||
</Project>
|
</section>
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template #left>
|
|
||||||
<h4>The Crown and Anchor</h4>
|
|
||||||
</template>
|
|
||||||
<template #top>
|
|
||||||
<small>Bartender & Waiter</small>
|
|
||||||
<small>2020–2021</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
Worked front-of-house at a busy pub, pulling pints, taking
|
|
||||||
orders, and ensuring a welcoming atmosphere. Built rapport
|
|
||||||
with regulars and adapted quickly to changing priorities
|
|
||||||
during service.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
<Project class="border-b border-dotted">
|
|
||||||
<template #left>
|
|
||||||
<h4>BFI Riverfront Kitchen</h4>
|
|
||||||
</template>
|
|
||||||
<template #top>
|
|
||||||
<small>Cashier & Waiter</small>
|
|
||||||
<small>2018–2020</small>
|
|
||||||
</template>
|
|
||||||
<p>
|
|
||||||
Operated the till, served customers, and helped coordinate
|
|
||||||
table service at a café on London's South Bank. Developed
|
|
||||||
strong cash-handling accuracy and customer interaction
|
|
||||||
skills in a fast-paced environment.
|
|
||||||
</p>
|
|
||||||
</Project>
|
|
||||||
|
|
||||||
<h2>Skills</h2>
|
<section>
|
||||||
<div class="skills-grid">
|
<h2>Experience</h2>
|
||||||
<div>
|
|
||||||
<strong>Service</strong><br /><small
|
|
||||||
>Bar work, Table service, Cash handling, Till operation,
|
|
||||||
Food hygiene</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<strong>Soft Skills</strong><br /><small
|
|
||||||
>Communication, Teamwork, Time management, Composure
|
|
||||||
under pressure</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<strong>Technical</strong><br /><small
|
|
||||||
>EPOS systems, Stock management, Event
|
|
||||||
coordination</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Education</h2>
|
<Project class="border-b border-dotted">
|
||||||
<div class="w-full h-fit flex-row flex gap-5">
|
<template #left>
|
||||||
<div class="flex-1 border-r border-dotted pr-3">
|
<h4>Belgrave Music Hall</h4>
|
||||||
<h3>
|
</template>
|
||||||
<a
|
<template #top>
|
||||||
href="https://www.adam-french.co.uk/pdf/transcript.pdf"
|
<small>Bartender & Waiter</small>
|
||||||
>
|
|
||||||
University of Leeds
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<div
|
|
||||||
class="flex-row flex place-content-between m-auto place-items-center"
|
|
||||||
>
|
|
||||||
<small>First Class Honours (81.1%)</small>
|
|
||||||
<small>2021–2025</small>
|
<small>2021–2025</small>
|
||||||
</div>
|
</template>
|
||||||
<small>BSc Computer Science with Mathematics </small>
|
<p>
|
||||||
</div>
|
Served food and drinks in a high-volume live-music venue
|
||||||
<div class="flex-1 pl-3">
|
in Leeds. Handled busy weekend shifts, managed multiple
|
||||||
<h3>University of Waterloo</h3>
|
tables simultaneously, and maintained a calm, friendly
|
||||||
<div
|
demeanour during peak hours.
|
||||||
class="flex-row flex place-content-between m-auto place-items-center"
|
</p>
|
||||||
>
|
</Project>
|
||||||
<small>Year abroad</small>
|
<Project class="border-b border-dotted">
|
||||||
<small>2023–2024</small>
|
<template #left>
|
||||||
</div>
|
<h4>The Crown and Anchor</h4>
|
||||||
</div>
|
</template>
|
||||||
</div>
|
<template #top>
|
||||||
|
<small>Bartender & Waiter</small>
|
||||||
|
<small>2020–2021</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Worked front-of-house at a busy pub, pulling pints,
|
||||||
|
taking orders, and ensuring a welcoming atmosphere.
|
||||||
|
Built rapport with regulars and adapted quickly to
|
||||||
|
changing priorities during service.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template #left>
|
||||||
|
<h4>BFI Riverfront Kitchen</h4>
|
||||||
|
</template>
|
||||||
|
<template #top>
|
||||||
|
<small>Cashier & Waiter</small>
|
||||||
|
<small>2018–2020</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Operated the till, served customers, and helped
|
||||||
|
coordinate table service at a café on London's South
|
||||||
|
Bank. Developed strong cash-handling accuracy and
|
||||||
|
customer interaction skills in a fast-paced environment.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
</section>
|
||||||
|
|
||||||
<h2>Interests</h2>
|
<section>
|
||||||
<ul class="list-disc list-inside">
|
<h2>Skills</h2>
|
||||||
<li>Leetcode — daily competitive problem solving</li>
|
<div class="skills-grid">
|
||||||
<li>Learning Mandarin</li>
|
<div>
|
||||||
<li>Rhythm Games</li>
|
<strong>Service</strong><br /><small
|
||||||
<li>Climbing · Gym</li>
|
>Bar work, Table service, Cash handling, Till
|
||||||
<li>Board games · Meetup.com</li>
|
operation, Food hygiene</small
|
||||||
</ul>
|
>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Soft Skills</strong><br /><small
|
||||||
|
>Communication, Teamwork, Time management, Composure
|
||||||
|
under pressure</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Technical</strong><br /><small
|
||||||
|
>EPOS systems, Stock management, Event
|
||||||
|
coordination</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Education</h2>
|
||||||
|
<div class="w-full h-fit flex-row flex gap-5">
|
||||||
|
<div class="flex-1 border-r border-dotted pr-3">
|
||||||
|
<h3>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/pdf/transcript.pdf"
|
||||||
|
>
|
||||||
|
University of Leeds
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<div
|
||||||
|
class="flex-row flex place-content-between m-auto place-items-center"
|
||||||
|
>
|
||||||
|
<small>First Class Honours (81.1%)</small>
|
||||||
|
<small>2021–2025</small>
|
||||||
|
</div>
|
||||||
|
<small>BSc Computer Science with Mathematics </small>
|
||||||
|
</div>
|
||||||
|
<div class="flex-1 pl-3">
|
||||||
|
<h3>University of Waterloo</h3>
|
||||||
|
<div
|
||||||
|
class="flex-row flex place-content-between m-auto place-items-center"
|
||||||
|
>
|
||||||
|
<small>Year abroad</small>
|
||||||
|
<small>2023–2024</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Interests</h2>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
<li>Leetcode — daily competitive problem solving</li>
|
||||||
|
<li>Learning Mandarin</li>
|
||||||
|
<li>Rhythm Games</li>
|
||||||
|
<li>Climbing · Gym</li>
|
||||||
|
<li>Board games · Meetup.com</li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="no-print w-full h-20"></div>
|
<div class="no-print w-full h-20"></div>
|
||||||
@@ -191,6 +203,9 @@ import Project from "./Project.vue";
|
|||||||
border: 1px solid var(--primary);
|
border: 1px solid var(--primary);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin: auto auto;
|
margin: auto auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Component Styling */
|
/* Component Styling */
|
||||||
@@ -210,6 +225,7 @@ h1,
|
|||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
h4 {
|
h4 {
|
||||||
|
margin: 0px;
|
||||||
border: none;
|
border: none;
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
font-family: var(--font-heading);
|
font-family: var(--font-heading);
|
||||||
|
|||||||
397
vue/src/views/CV/CVTemp.vue
Normal file
397
vue/src/views/CV/CVTemp.vue
Normal file
@@ -0,0 +1,397 @@
|
|||||||
|
<script setup>
|
||||||
|
import Project from "./Project.vue";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<main>
|
||||||
|
<div class="no-print w-full h-20"></div>
|
||||||
|
<div class="a4page justify-between">
|
||||||
|
<section class="flex flex-row justify-between">
|
||||||
|
<h1 class="name">Adam French</h1>
|
||||||
|
<div class="contact-details text-right">
|
||||||
|
<p>+447563266931</p>
|
||||||
|
<p>adam.a.french@outlook.com</p>
|
||||||
|
<h4>
|
||||||
|
<a href="https://www.adam-french.co.uk">
|
||||||
|
www.adam-french.co.uk
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Profile</h2>
|
||||||
|
<p>
|
||||||
|
First Class Honours graduate in Computer Science with
|
||||||
|
Mathematics from the University of Leeds (81.1%), with a
|
||||||
|
year abroad at the University of Waterloo. Passionate about
|
||||||
|
developer productivity, automation infrastructure, and
|
||||||
|
software testing at scale. Experienced building CI/CD
|
||||||
|
pipelines, automation tooling, and scalable backend
|
||||||
|
services. Eager to apply rigorous engineering discipline
|
||||||
|
within a collaborative platform team.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Skills</h2>
|
||||||
|
<div class="skills-grid">
|
||||||
|
<div>
|
||||||
|
<strong>Languages</strong><br /><small
|
||||||
|
>Python, Go, Rust, Swift, JavaScript / TypeScript,
|
||||||
|
SQL</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Automation & Testing</strong><br /><small
|
||||||
|
>CI/CD Pipelines, GitHub Actions, Docker, Unit &
|
||||||
|
Integration Testing, WebAssembly</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Infrastructure</strong><br /><small
|
||||||
|
>Nginx, PostgreSQL, SQLite, JWT Auth, REST &
|
||||||
|
GraphQL APIs</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Projects</h2>
|
||||||
|
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/web_server.git"
|
||||||
|
>
|
||||||
|
web_server.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>
|
||||||
|
GitHub Actions, Docker, Nginx, Go, Python, Rust →
|
||||||
|
Wasm, Postgres, JWT Auth
|
||||||
|
</small>
|
||||||
|
<small>2025</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Self-hosted personal website with a fully automated
|
||||||
|
CI/CD pipeline: lint, build, test, and deploy on every
|
||||||
|
push. Designed for zero-downtime deployments on
|
||||||
|
constrained Raspberry Pi hardware. Iterated across
|
||||||
|
diverse stacks to evaluate tradeoffs in infrastructure
|
||||||
|
and developer experience.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/tour.git"
|
||||||
|
>
|
||||||
|
tour.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>Rust, Developer Tooling, CLI</small>
|
||||||
|
<small>2026</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Developer productivity CLI for building and navigating
|
||||||
|
interactive code tutorials with Git-inspired version
|
||||||
|
traversal. Designed as a reusable automation library
|
||||||
|
with a clean API surface for embedding in larger
|
||||||
|
toolchains.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project class="border-b border-dotted">
|
||||||
|
<template v-slot:left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/gitea/adamf/rust-raytracer.git"
|
||||||
|
>
|
||||||
|
rust-raytracer.git
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template v-slot:top>
|
||||||
|
<small>Rust, Linear Algebra, Multithreading</small>
|
||||||
|
<small>2023</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Parallelised recursive ray tracer for realistic 3D
|
||||||
|
rendering. Emphasised algorithmic efficiency and
|
||||||
|
low-level memory management in Rust.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<Project>
|
||||||
|
<template #left>
|
||||||
|
<h4>
|
||||||
|
<a
|
||||||
|
class="text-center w-full"
|
||||||
|
href="https://community.wolfram.com/groups/-/m/t/3210947"
|
||||||
|
>
|
||||||
|
Wolfram Summer School
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
</template>
|
||||||
|
<template #top>
|
||||||
|
<small>Wolfram Mathematica</small>
|
||||||
|
<small>2024</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Research project on Mobile Automata with data
|
||||||
|
visualisation and academic presentation. Delivered
|
||||||
|
within a tight deadline in collaboration with academic
|
||||||
|
mentors.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="no-print w-full h-20"></div>
|
||||||
|
|
||||||
|
<div class="a4page gap-10">
|
||||||
|
<section>
|
||||||
|
<h2>Education</h2>
|
||||||
|
<div class="w-full h-fit flex-row flex gap-5">
|
||||||
|
<div class="flex-1 border-r border-dotted pr-3">
|
||||||
|
<h3>
|
||||||
|
<a
|
||||||
|
href="https://www.adam-french.co.uk/pdf/transcript.pdf"
|
||||||
|
>
|
||||||
|
University of Leeds
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<div
|
||||||
|
class="flex-row flex place-content-between m-auto place-items-center"
|
||||||
|
>
|
||||||
|
<small>First Class Honours (81.1%)</small>
|
||||||
|
<small>2021–2025</small>
|
||||||
|
</div>
|
||||||
|
<small>BSc Computer Science with Mathematics </small>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
<li>Algorithms & Data Structures I & II</li>
|
||||||
|
<li>Compiler Design and Construction</li>
|
||||||
|
<li>Formal Languages & Finite Automata</li>
|
||||||
|
<li>Graph Algorithms & Complexity Theory</li>
|
||||||
|
<li>
|
||||||
|
Machine Learning · Databases · Computer
|
||||||
|
Processors
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="flex-1 pl-3">
|
||||||
|
<h3>University of Waterloo</h3>
|
||||||
|
<div
|
||||||
|
class="flex-row flex place-content-between m-auto place-items-center"
|
||||||
|
>
|
||||||
|
<small>Year abroad</small>
|
||||||
|
<small>2023–2024</small>
|
||||||
|
</div>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
<li>Applied Cryptography</li>
|
||||||
|
<li>Introduction to Computer Graphics</li>
|
||||||
|
<li>
|
||||||
|
Introduction to Rings and Fields with
|
||||||
|
Applications
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<h2>Experience</h2>
|
||||||
|
<Project>
|
||||||
|
<template #left>
|
||||||
|
<p>Hospitality</p>
|
||||||
|
</template>
|
||||||
|
<template #top>
|
||||||
|
<small>Cashier, Bartender, Waiter</small>
|
||||||
|
<small>2018–2023</small>
|
||||||
|
</template>
|
||||||
|
<p>
|
||||||
|
Worked at <em>Belgrave Music Hall</em>,
|
||||||
|
<em>The Crown and Anchor</em>, and
|
||||||
|
<em>BFI Riverfront Kitchen</em>. Developed
|
||||||
|
communication, composure under pressure, and reliability
|
||||||
|
in customer-facing roles.
|
||||||
|
</p>
|
||||||
|
</Project>
|
||||||
|
<h2>Interests</h2>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
<li>Leetcode — daily competitive problem solving</li>
|
||||||
|
<li>iOS/macOS development — personal Swift projects</li>
|
||||||
|
<li>Learning Mandarin</li>
|
||||||
|
<li>Rhythm Games</li>
|
||||||
|
<li>Climbing · Gym</li>
|
||||||
|
<li>Board games · Meetup.com</li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="no-print w-full h-20"></div>
|
||||||
|
</main>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
/* Fonts */
|
||||||
|
@font-face {
|
||||||
|
font-family: "big_noodle_titling";
|
||||||
|
src: url("/fonts/big_noodle_titling.woff2") format("woff2");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "CreatoDisplay";
|
||||||
|
src: url("/fonts/CreatoDisplay-Bold.woff2") format("woff2");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Variables */
|
||||||
|
* {
|
||||||
|
--primary: black;
|
||||||
|
--secondary: #0000ff;
|
||||||
|
--tertiary: #ff0000;
|
||||||
|
--quaternary: #cccccc;
|
||||||
|
--background: white;
|
||||||
|
|
||||||
|
--font-heading: big_noodle_titling;
|
||||||
|
--font-text: CreatoDisplay;
|
||||||
|
--font-size-name: 2.5em;
|
||||||
|
--font-size-text: 100%;
|
||||||
|
--font-size-small: 0.9em;
|
||||||
|
--font-size-heading: 2.1em;
|
||||||
|
--font-size-subheading: 1.7em;
|
||||||
|
--font-size-subsubheading: 1.4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* A4 Page */
|
||||||
|
.a4page {
|
||||||
|
line-height: 1.6;
|
||||||
|
font-family: var(--font-text);
|
||||||
|
width: 210mm;
|
||||||
|
height: 297mm;
|
||||||
|
padding: 5mm;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background-color: var(--background);
|
||||||
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
|
||||||
|
border: 1px solid var(--primary);
|
||||||
|
overflow: hidden;
|
||||||
|
margin: auto auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Component Styling */
|
||||||
|
main {
|
||||||
|
padding: 0px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: fit-content;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
height: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4 {
|
||||||
|
border: none;
|
||||||
|
color: var(--primary);
|
||||||
|
font-family: var(--font-heading);
|
||||||
|
text-transform: capitalize;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: var(--font-size-heading);
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
border-bottom: 1px solid var(--primary);
|
||||||
|
font-size: var(--font-size-subheading);
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: var(--font-size-subsubheading);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: var(--tertiary);
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
background-color: transparent;
|
||||||
|
color: var(--secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-bottom: 0.2em;
|
||||||
|
color: var(--primary);
|
||||||
|
font-size: var(--font-size-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
color: var(--secondary);
|
||||||
|
border-collapse: collapse;
|
||||||
|
border: 1px solid black;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
color: var(--secondary);
|
||||||
|
border-top: 1px solid var(--tertiary);
|
||||||
|
padding: 1px 10px 1px 10px;
|
||||||
|
font-size: var(--font-size-text);
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
color: var(--secondary);
|
||||||
|
border: 2px solid var(--tertiary);
|
||||||
|
padding: 1px 0px 1px 7px;
|
||||||
|
font-family: var(--font-heading);
|
||||||
|
font-size: var(--font-size-subsubheading);
|
||||||
|
background-color: var(--quaternary);
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
.no-print {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
small {
|
||||||
|
font-size: var(--font-size-small);
|
||||||
|
color: var(--primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
font-size: var(--font-size-small);
|
||||||
|
margin: 0;
|
||||||
|
padding-left: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
font-size: var(--font-size-small);
|
||||||
|
color: var(--primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.skills-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr 1fr;
|
||||||
|
gap: 0.3em 1em;
|
||||||
|
margin-bottom: 0.2em;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="flex-row flex">
|
<div class="flex-row flex">
|
||||||
<div class="w-2/7 p-5 m-auto">
|
<div class="w-2/7 mt-auto mb-auto ml-0">
|
||||||
<slot name="left" />
|
<slot name="left" />
|
||||||
</div>
|
</div>
|
||||||
<div class="w-full p-2">
|
<div class="w-full p-2">
|
||||||
|
|||||||
Reference in New Issue
Block a user