87 lines
3.1 KiB
HTML
87 lines
3.1 KiB
HTML
<!DOCTYPE html><html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Logan's Website</title><style>@font-face {
|
|
font-family: 'merriweather';
|
|
src: url(/res/merriweather-regular.ttf);
|
|
}
|
|
|
|
|
|
body {
|
|
font-family: merriweather;
|
|
background-color: #141013;
|
|
height: 100%;
|
|
padding: 5px;
|
|
line-height: 1.75em;
|
|
}
|
|
|
|
main {
|
|
border-radius: 15px;
|
|
padding: 15px;
|
|
background-color: #ffeedd;
|
|
margin: auto;
|
|
max-width: 750px;
|
|
}
|
|
|
|
.bg {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: -9999;
|
|
}
|
|
|
|
table {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
table, th, td {
|
|
padding: 5px;
|
|
border: 3px solid black;
|
|
border-style: solid;
|
|
border-collapse: collapse;
|
|
/* text-align: center; */
|
|
align-content: center;
|
|
}
|
|
|
|
a {
|
|
color: #df3e23;
|
|
font-style: italic;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
color: #df3e23;
|
|
font-style: italic;
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1:before {
|
|
content: "> ";
|
|
}
|
|
|
|
h2:before {
|
|
content: "=> ";
|
|
}
|
|
|
|
</style><script>let bg;
|
|
let ctd;
|
|
window.onload = function() {
|
|
bg = document.getElementById("bg");
|
|
ctx = bg.getContext("2d");
|
|
|
|
ctx.fillStyle = "#141013";
|
|
ctx.fillRect(0, 0, bg.width, bg.height);
|
|
}
|
|
</script></head><body><main><h1>logan's site</h1><hr><h2>me</h2><p>
|
|
i am a programming and philosophy enthusiast. once upon a time i was a
|
|
competitive debater on a few local and state circuits. after over 10
|
|
years of doing robotics i'm finally starting to get the hang of it.
|
|
currently in the process of discovering my love for hypertext and the
|
|
world wide web!
|
|
<hr><h2>my interests</h2><ul><li>music</li><li>books</li><li>websites</li><li>you!</li></ul></p><hr><h2>writeups</h2><ul><li>dependency paranoia</li><li>on build systems</li></ul><hr><h2>programming</h2><p>
|
|
i have been making things for much longer than i have bothered
|
|
to document (or finish) my work. i work on whatever happens to
|
|
catch my interest, using whatever tools and languages i fancy at
|
|
the time. here are some of my favorite projects i've worked on:
|
|
</p><table><tr><th>project</th><th>summary</th><th>date</th></tr><tr><td><a href="">web server</a></td><td>https server implementation</td><td>2024</td></tr><tr><td><a href="">html templater</a></td><td>interpreter and inline templating language for html</td><td>2024</td></tr><tr><td><a href="">forte</a></td><td>safety focused stack machine emulator and assembly language</td><td>2024</td></tr><tr><td><a href="">nrange</a></td><td>cartesian product for N vectors in O(N) time/space</td><td>2023</td></tr><tr><td><a href="">fishbowl</a></td><td>kinematic image processing on the web</td><td>2022</td></tr><tr><td><a href="">stocks</a></td><td>play money stock trading algorithm</td><td>2021</td></tr><tr><td><a href="">the crypt</a></td><td>platforming video game in Godot</td><td>2020</td></tr></table><hr><h2>sites i manage</h2><ul><li><a href="https://utsa-rowdysub.org">UTSA Advanced Robotics RoboSub team website (2024)</a></li></ul></main></body><canvas class="bg" id="bg"></html> |