Files
asimonson1125.github.io/src/templates/projects.html
2025-07-26 14:25:22 -05:00

82 lines
3.2 KiB
HTML
Executable File

{% block content %}
<div class="foreground"></div>
<div class="foregroundContent">
<div class="flex equalitems vertOnMobile">
<div>
<h2 class="concentratedHead">About Me</h2>
<p>
I'm Andrew Simonson<!--, CEO of the anti-thermodynamics syndicate.-->,
a <strong>Data Scientist at Ecolab</strong> and a graduate Data
Science student at
<strong>Rochester Institute of Technology</strong>, having
recently completed the <b>Computer Science BS</b> program
(international relations minor) with a focus on probability
theory.
<br />
<br />
I started in ~2017, reverse engineering probablistic logic
models in games and developing interfaces to recreate my
findings for friends. Now I develop tracable AI built on
deductive reasoning, maintaning scientific methodology in an
industry obsessed with implicit rules and exclusive empiricism.
As the analysis grew more sophisticated, so too did the tech
stack - to the point that I now manage most services, like this
website, end to end, container image to insight visual.
<br />
<br />
I get bored and throw random stuff on this website. It's a form
of unprofessional development and I swear by this form of
learning.
</p>
<h3 class='concentratedHead'>
I also have a
<a href="Resume_Simonson_Andrew.pdf" target="_blank">resume</a>
for some reason.
</h3>
</div>
<div id="skills">
<h2 id="skillstag">Skills</h2>
{% from 'partials/skills.html' import skills %} {{
skills(var['skillList']) }}
</div>
</div>
<br />
<h2 class="concentratedHead">Projects</h2>
<!-- >
<div class="checkbox-wrapper">
<div class="flex start">
<label class="switch" htmlFor="pinned">
<input type="checkbox" id="pinned" onClick="toggleCheckbox('')" checked/>
<div class="slider round"></div>
<strong>Pinned</strong>
</label>
</div>
<div class="flex start">
<label class="switch" htmlFor="programming">
<input type="checkbox" id="programming" onClick="toggleCheckbox('')" />
<div class="slider round"></div>
<strong>Programming</strong>
</label>
</div>
<div class="flex start">
<label class="switch" htmlFor="geospacial" onClick="toggleCheckbox('')">
<input type="checkbox" id="geospacial" />
<div class="slider round"></div>
<strong>Geospacial</strong>
</label>
</div>
</div>
</!-->
<div class="projectList vContainer">
{% from 'partials/project.html' import project %} {% for i in
var["projects"] %} {{ project(i, var["projects"][i]["classes"],
var["projects"][i]["status"], var["projects"][i]["bgi"],
var["projects"][i]["content"], var["projects"][i]["links"]) }} {% endfor
%}
</div>
</div>
<!--><script>toggleCheckbox('')</script></!-->
{% endblock %}