barrettruth.com/index.html
2023-11-03 19:57:01 -04:00

82 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link rel="stylesheet" href="index.css" />
<title>Barrett Ruth</title>
</head>
<body>
<div class="container">
<div class="social-icons">
<a href="https://linkedin.com/in/barrett-ruth" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/barrett-ruth" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="mailto:br.barrettruth@gmail.com" target="_blank">
<i class="fas fa-envelope"></i>
</a>
</div>
<h1>Barrett Ruth</h1>
</div>
<aside>Software developer.</aside>
<aside>Simplicity advocate.</aside>
<h2>
<a target="_blank" href="https://github.com/barrett-ruth">projects</a>
</h2>
<ol>
<li>
<a target="_blank" class="project" href="https://thecourseforum.com"
>theCourseForum</a
>
<span class="description"
>&#8212; university-wide enrollment analytics</span
>
</li>
<li>
<a
target="_blank"
class="project"
href="https://atlas-devs-atlas.vercel.app/"
>atlas</a
>
<span class="description"
>&#8212; cutting-edge machine learning research blog</span
>
</li>
<li>
<a target="_blank" class="project" href="https://github.com/nvimdev"
>nvimdev</a
>
<span class="description"
>&#8212; open-source neovim contributions</span
>
</li>
</ol>
<h2>
<a href="problems.html">problems</a>
</h2>
<h2><a target="_blank" href="/resume.pdf">resume</a></h2>
<h2 style="display: none">
<a target="_blank" href="/transcript.pdf">transcript</a>
</h2>
</body>
<script>
document.addEventListener("DOMContentLoaded", function () {
document.querySelectorAll(".project").forEach((project) => {
project.addEventListener("mouseover", () => {
const description = project.nextElementSibling;
description.classList.add("revealed");
});
});
});
</script>
</html>