···11<!doctype html>
22<html>
33- <head>
44- <title>Ivo's Bio</title>
55- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
66- <link rel="stylesheet" href="build/app.css" />
77- <link rel="me" href="https://hachyderm.io/@cherry" />
88- <script defer src="build/app.js" type="module"></script>
99- </head>
1010- <body>
1111- <div class="header-container">
1212- <canvas class="logo-gl" id="spinningCanvas">spinning 'Ivo' text</canvas>
1313- <h1 class="title" id="title">Heya, gang!</h1>
1414- </div>
1515- <h1>My projects</h1>
1616- <div class="projects">
1717- <div class="project-container">
1818- <div class="project-desc">
1919- <h2 class="project-title">Age of Ark</h2>
2020- <p>
2121- A game developed in the summer of '14. Coded in Unity by me and Cale
2222- Tilford. Combined the ideas of action-y spaceship navigation with
2323- strategic base building. Happy with the overall aesthetic though it
2424- never got to a point where the gameplay design was 'good'.
2525- </p>
2626- </div>
2727- <img
2828- class="project-thumbnail"
2929- src="images/arkcity.png"
3030- alt="Blender render for Age of Ark's player ship"
3131- srcset="
3232- images/arkcity.png,
3333- images/arkcity@2x.png 2x,
3434- images/arkcity@3x.png 3x
3535- "
3636- />
3737- </div>
3838- <div class="project-container">
3939- <div class="project-desc">
4040- <h2 class="project-title">Placement at Feral</h2>
4141- <p>
4242- From 2015 - 2016, I interned at Feral Interactive, where I was able
4343- to help port a number of big-time AAA games to macOS and other
4444- platforms.
4545- </p>
4646- </div>
4747- <img
4848- class="project-thumbnail"
4949- src="images/cheetah.jpg"
5050- alt="Cheetah referencing Feral's branding"
5151- srcset="
5252- images/cheetah.jpg,
5353- images/cheetah@2x.jpg 2x,
5454- images/cheetah@3x.jpg 3x
5555- "
5656- />
5757- </div>
5858- <div class="project-container">
5959- <div class="project-desc-right">
6060- <h2 class="project-title">cherry.computer</h2>
6161- <p>
6262- My own website. Really informative about how web technology works
6363- after a life of just using systems languages and low-level hacking.
6464- Maybe you've seen it somewhere before...
6565- </p>
6666- </div>
6767- <img
6868- class="project-thumbnail"
6969- src="images/screen.png"
7070- alt="Infinitely recursive screenshots of this website"
7171- />
7272- </div>
7373- <div class="project-container">
7474- <div class="project-desc">
7575- <h2 class="project-title">Misguided</h2>
7676- <p>
7777- Coming soon! An experimental exploration of anxiety and obsession
7878- within the cockpit of a space capsule controlled by interfacing with
7979- a simulated Apollo computer guidance system.
8080- </p>
8181- </div>
8282- <img
8383- class="project-thumbnail"
8484- src="images/AGC.jpg"
8585- alt="A physical guidance computer which would be simulated"
8686- />
8787- </div>
8888- </div>
8989- <div
9090- class="scrobble-bar"
9191- hx-ext="sse"
9292- sse-connect="/scrobbles{% if scrobble.is_none() %}?immediate=true{% endif %}"
9393- sse-swap="scrobble"
9494- >
9595- {%- if let Some(ScrobblesTemplate {intro, now_playing, image, srcset}) = scrobble %}
9696- {% include "scrobble.html" %}
9797- {%- endif %}
9898- </div>
9999- </body>
33+ <head>
44+ <title>Ivo's Bio</title>
55+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
66+ <link rel="stylesheet" href="build/app.css" />
77+ <link rel="me" href="https://hachyderm.io/@cherry" />
88+ <script defer src="build/app.js" type="module"></script>
99+ </head>
1010+ <body class="bg-gray-900">
1111+ </body>
10012</html>