website/dist/index.html

87 lines
3.1 KiB
HTML
Raw Normal View History

2024-07-20 18:02:31 -05:00
<!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 site</title><style>@font-face {
2024-07-20 02:22:49 -05:00
font-family: 'merriweather';
src: url(/res/merriweather-regular.ttf);
}
2024-07-20 06:15:37 -05:00
2024-07-20 02:22:49 -05:00
body {
font-family: merriweather;
2024-07-20 06:15:37 -05:00
background-color: #141013;
2024-07-20 02:22:49 -05:00
height: 100%;
padding: 5px;
2024-07-20 06:15:37 -05:00
line-height: 1.75em;
2024-07-20 02:22:49 -05:00
}
main {
2024-07-20 06:15:37 -05:00
border-radius: 15px;
padding: 15px;
background-color: #ffeedd;
2024-07-20 02:22:49 -05:00
margin: auto;
max-width: 750px;
}
.bg {
width: 100%;
height: 100%;
display: block;
position: fixed;
top: 0;
left: 0;
z-index: -9999;
}
2024-07-20 06:15:37 -05:00
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: "=> ";
}
2024-07-20 02:22:49 -05:00
</style><script>let bg;
let ctd;
window.onload = function() {
bg = document.getElementById("bg");
ctx = bg.getContext("2d");
2024-07-20 06:15:37 -05:00
ctx.fillStyle = "#141013";
2024-07-20 02:22:49 -05:00
ctx.fillRect(0, 0, bg.width, bg.height);
}
2024-07-20 06:15:37 -05:00
</script></head><body><main><h1>logan's site</h1><hr><h2>me</h2><p>
2024-07-20 18:02:31 -05:00
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
2024-07-20 06:15:37 -05:00
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>