http-server/hyper-src/home.html

129 lines
3.2 KiB
HTML
Raw Normal View History

2024-04-28 17:11:48 -05:00
<Container>
2024-04-28 18:19:41 -05:00
<header class="header">
2024-04-28 17:11:48 -05:00
<h1 id="title" />
2024-04-28 18:19:41 -05:00
<h2>
<a class="link" href="/resume.pdf"> My Resume </a>
-
<a class="link" href="http://github.com/Xterminate1818"> GitHub </a>
-
2024-04-28 17:11:48 -05:00
<a class="link" href="mailto:logan@gatlintc.com"> Email Me </a>
</h2>
2024-04-28 18:19:41 -05:00
</header>
2024-04-28 17:11:48 -05:00
<script>
var i = 0;
2024-04-28 18:19:41 -05:00
var txt = "Logan's Home Page";
2024-04-28 17:11:48 -05:00
var speed = 30;
function typeWriter() {
if (i < txt.length) {
document.getElementById("title").innerHTML += txt.charAt(i);
i++;
setTimeout(typeWriter, speed + Math.random() * 25.0);
}
}
typeWriter()
</script>
<div class="content">
<h2 class="distinct"> Dev Posts </h2>
2024-04-28 18:19:41 -05:00
<Card>
2024-04-28 17:11:48 -05:00
<RustIcon />
<CloudflareIcon />
2024-04-28 18:19:41 -05:00
<a class="link" href="/projects/http-server">
<h1> Web Server </h1>
</a>
2024-04-28 17:11:48 -05:00
<h3> Back End - TCP - SSL </h3>
<h2>
Currently serving you this website!
</h2>
</Card>
2024-04-28 18:19:41 -05:00
<Card>
2024-04-28 17:11:48 -05:00
<RustIcon />
<HtmlIcon />
2024-04-28 18:19:41 -05:00
<a class="link" href="/projects/html-templating">
<h1> HTML Templating Engine </h1>
</a>
2024-04-28 17:11:48 -05:00
<h3> Front End - Parser Design </h3>
<h2>
Used to generate this page!
</h2>
</Card>
2024-04-28 18:19:41 -05:00
<Card>
2024-04-28 17:11:48 -05:00
<RustIcon />
<WasmIcon />
2024-04-28 18:19:41 -05:00
<a class="link" href="/projects/forte">
<h1> Forte Assembly Language </h1>
</a>
2024-04-28 17:11:48 -05:00
<h3> Programming Language - Hackathon </h3>
<h2>
Radically different machine code. A creative-coding endeavor
</h2>
</Card>
2024-04-28 18:19:41 -05:00
<Card>
2024-04-28 17:11:48 -05:00
<RustIcon />
<WgpuIcon />
2024-04-28 18:19:41 -05:00
<a class="link" href="/projects/fishbowl">
<h1> Fishbowl </h1>
</a>
2024-04-28 17:11:48 -05:00
<h3> Image Encoding - Hardware Rendering </h3>
<h2> Kinematic image processing with GPU acceleration </h2>
</Card>
2024-04-28 18:19:41 -05:00
<Card>
2024-04-28 17:11:48 -05:00
<RustIcon />
<WasmIcon />
2024-04-28 18:19:41 -05:00
<a class="link" href="/projects/math-interpreter">
<h1> Math Interpreter </h1>
</a>
2024-04-28 17:11:48 -05:00
<h3> Parser Design </h3>
<h2>
Interpret and evaluate plain-text math expressions
</h2>
</Card>
2024-04-28 18:19:41 -05:00
<Card>
2024-04-28 17:11:48 -05:00
<RustIcon />
2024-04-28 18:19:41 -05:00
<a class="link" href="/projects/nd-range">
<h1> nd-range </h1>
</a>
2024-04-28 17:11:48 -05:00
<h3> Vector Math - Standard Library </h3>
<h2>
An extension of Rust's 'Range' type
using the Cartesian Product Algorithm
</h2>
</Card>
2024-04-28 18:19:41 -05:00
<Card>
2024-04-28 17:11:48 -05:00
<RustIcon />
<RaylibIcon />
2024-04-28 18:19:41 -05:00
<a class="link" href="projects/fractal-explorer">
<h1> Fractal Explorer </h1>
</a>
2024-04-28 17:11:48 -05:00
<h3> Parallel Algorithms - Optimization - Hackathon </h3>
<h2>
A Mandelbrot Fractal viewer using CPU parallelism
and the derivative bail algorithm
</h2>
</Card>
2024-04-28 18:19:41 -05:00
<Card>
2024-04-28 17:11:48 -05:00
<PythonIcon />
2024-04-28 18:19:41 -05:00
<a class="link" href="/projects/pokedex">
<h1> Pokédex </h1>
</a>
2024-04-28 17:11:48 -05:00
<h3> TKinter - Web APIs - Native UI </h3>
<h2>
A TKinter app for viewing the original Pokédex, with
stats scraped from online sources
</h2>
</Card>
2024-04-28 18:19:41 -05:00
<Card>
2024-04-28 17:11:48 -05:00
<PythonIcon />
2024-04-28 18:19:41 -05:00
<a class="link" href="/projects/stock-trading">
<h1> Stock Trading A.I. </h1>
</a>
2024-04-28 17:11:48 -05:00
<h3> Command Line App - Web APIs </h3>
<h2>
A simple heuristic trading algorithm
</h2>
</Card>
</div>
</Container>