2022-02-18 19:08:34 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Simponic's Static Sites</title>
|
2023-02-23 12:15:07 -05:00
|
|
|
<link href="css/styles.css" rel="stylesheet" />
|
2022-02-18 19:08:34 -05:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
|
|
|
|
/>
|
2023-02-23 12:15:07 -05:00
|
|
|
<script
|
|
|
|
src="https://kit.fontawesome.com/d7e97ed48f.js"
|
|
|
|
crossorigin="anonymous"
|
|
|
|
></script>
|
|
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2022-02-18 19:08:34 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="top-container animate__animated animate__fadeIn">
|
2023-02-23 12:15:07 -05:00
|
|
|
<img src="images/profile.png" class="profile-picture" />
|
2022-12-21 01:20:41 -05:00
|
|
|
<h3>
|
2023-02-23 12:15:07 -05:00
|
|
|
👋 Hello, I'm Simponic!
|
|
|
|
<br />
|
|
|
|
📖 This page hosts strictly static content.
|
|
|
|
<br />
|
|
|
|
🔔 My "real website" is at
|
|
|
|
<a href="https://simponic.xyz">simponic.xyz</a>.
|
2022-12-21 01:20:41 -05:00
|
|
|
</h3>
|
2022-02-18 19:08:34 -05:00
|
|
|
<div class="projects-grid">
|
2023-02-23 12:15:07 -05:00
|
|
|
<div class="project" onclick="window.location='julia/index.html'">
|
2022-02-18 19:08:34 -05:00
|
|
|
<div class="project-logo-container">
|
2023-02-23 12:15:07 -05:00
|
|
|
<i class="fa-solid fa-square-root-variable"></i>
|
2022-02-18 19:08:34 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="project-body">
|
2023-02-23 12:15:07 -05:00
|
|
|
<h1>Julia Set Explorer</h1>
|
|
|
|
<p>
|
|
|
|
Zoom, pan, and "c" complex changes in this fun GPU-accelerated
|
|
|
|
playground!
|
|
|
|
</p>
|
2022-02-18 19:08:34 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-02-23 12:15:07 -05:00
|
|
|
<div
|
|
|
|
class="project"
|
|
|
|
onclick="window.location='ft-visualizer/index.html'"
|
|
|
|
>
|
2022-02-18 19:08:34 -05:00
|
|
|
<div class="project-logo-container">
|
2023-02-23 12:15:07 -05:00
|
|
|
<i class="fa-solid fa-wave-square"></i>
|
2022-02-18 19:08:34 -05:00
|
|
|
</div>
|
|
|
|
|
2023-02-23 12:15:07 -05:00
|
|
|
<div class="project-body">
|
|
|
|
<h1>Discrete Fourier Visualizer</h1>
|
|
|
|
<p>
|
|
|
|
Draw how your year has gone and view a reactive graph containing
|
|
|
|
its DFT by dragging your mouse over the canvas!
|
|
|
|
</p>
|
2022-02-18 19:08:34 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-23 12:15:07 -05:00
|
|
|
<div class="project" onclick="window.location='maize-maze/index.html'">
|
2022-03-26 23:09:38 -04:00
|
|
|
<div class="project-logo-container">
|
2023-02-23 12:15:07 -05:00
|
|
|
<i class="fa-solid fa-diagram-project"></i>
|
2022-03-26 23:09:38 -04:00
|
|
|
</div>
|
|
|
|
|
2023-02-23 12:15:07 -05:00
|
|
|
<div class="project-body">
|
|
|
|
<h1>The A-maze-ing Maize Maze</h1>
|
|
|
|
<p>
|
|
|
|
A Randomized Kruskal's Maze game with BFS path-finding. You play
|
|
|
|
as a 🌽corn stalk trying to become 🍿popcorn.
|
|
|
|
</p>
|
2022-03-26 23:09:38 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-04-26 19:43:04 -04:00
|
|
|
|
2023-02-23 12:15:07 -05:00
|
|
|
<div class="project" onclick="window.location='centipede/index.html'">
|
2022-04-26 19:43:04 -04:00
|
|
|
<div class="project-logo-container">
|
2023-02-23 12:15:07 -05:00
|
|
|
<i class="fa-solid fa-mosquito"></i>
|
2022-04-26 19:43:04 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="project-body">
|
2023-02-23 12:15:07 -05:00
|
|
|
<h1>Centipede</h1>
|
|
|
|
<p>
|
|
|
|
In this game, shoot all the centipede bodies and score points and
|
|
|
|
go up levels.
|
|
|
|
</p>
|
2022-04-26 19:43:04 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-12-21 01:20:41 -05:00
|
|
|
|
2023-02-23 12:15:07 -05:00
|
|
|
<div class="project" onclick="window.location='dvd-logo/index.html'">
|
2022-12-21 01:20:41 -05:00
|
|
|
<div class="project-logo-container">
|
2023-02-23 12:15:07 -05:00
|
|
|
<i class="fa-solid fa-compact-disc"></i>
|
2022-12-21 01:20:41 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="project-body">
|
2023-02-23 12:15:07 -05:00
|
|
|
<h1>DVD Logo Bouncing Animation</h1>
|
|
|
|
<p>
|
|
|
|
Brings back the nostalgia of old-school DVD players with an
|
|
|
|
intersection predictor. The twist: no Canvas API! Only svg's and
|
|
|
|
absolute positioned images!
|
|
|
|
</p>
|
2022-12-21 01:20:41 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-02-18 19:08:34 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|