mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
105 lines
3.6 KiB
HTML
105 lines
3.6 KiB
HTML
{% block content %} {% macro nameplate() %}
|
|
<div>
|
|
<h1 id="homeName" class="textGrad">Andrew Simonson</h1>
|
|
<h2 class="textGrad">Website not maintained ATM. Too busy wizardposting.</h2>
|
|
<div class="flex vertOnMobile">
|
|
<div>
|
|
<img
|
|
src="{{ url_for('static', filename='photos/moonWizard.jpeg') }}"
|
|
id="homeIcon"
|
|
alt="logo"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endmacro %}
|
|
|
|
<div class="foreground homeground"></div>
|
|
<div class="relative">
|
|
<div id="nametag" class="flex" data-aos="fade-up">{{ nameplate() }}</div>
|
|
<!--<INSERT SMALL BANNER HERE FOR PROJECT IMAGECARD CAROUSEL>-->
|
|
<div id="desktopSpacer"></div>
|
|
<div class="homeSubContent">
|
|
<div class="flex equalitems vertOnMobile">
|
|
<div>
|
|
<h2>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've worked on a variety of projects, from building analytical tools
|
|
performing reactive chemical safety to live feed processing for
|
|
frantic work environments looking to improve service. I also do
|
|
personal experimentation leveraging open source info streams ranging
|
|
from human traffic around campus to watershed temperature monitoring.
|
|
<br />
|
|
<br />
|
|
My philosophy is that if it isn't explainable then you didn't learn
|
|
anything. Data without sound methodology is at best meaningless and at
|
|
worst counterproductive and costly. That's why I focus on
|
|
hypothesis-driven multivariate analysis, bringing logical transparency
|
|
and literal deductions back into digital analysis. Rather than letting
|
|
heuristics make decisions for the world we think we know, we should be
|
|
making discoveries and building new knowledge.
|
|
<br />
|
|
<br />
|
|
<strong>Bring the scientific method to AI.</strong>
|
|
<br />
|
|
<br />
|
|
</p>
|
|
</div>
|
|
<div id="skills">
|
|
<h2 id="skillstag">Skills</h2>
|
|
{% from 'partials/skills.html' import skills %} {{
|
|
skills(var['skillList']) }}
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<div class="flex">
|
|
<div class="pointer selfcenter" onClick="goto('duck')">
|
|
<img
|
|
alt="duck spinning"
|
|
src="{{ url_for('static', filename='photos/gifs/duck-spinning.gif') }}"
|
|
class="smallImg"
|
|
/>
|
|
</div>
|
|
<div class="selfcenter">
|
|
<img
|
|
src="{{ url_for('static', filename='photos/electricityStabby.png') }}"
|
|
alt="memes, idk."
|
|
class="smallImg"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<div id="aboutCards" class="flex">
|
|
<div class="chess">
|
|
{% from 'partials/chess.html' import chess %} {{ chess('asimonson1125')
|
|
}}
|
|
</div>
|
|
<br />
|
|
<div>
|
|
{% from 'partials/bookshelf.html' import bookshelf %} {{
|
|
bookshelf(var.books) }}
|
|
</div>
|
|
<br />
|
|
<div>
|
|
<iframe
|
|
height="200"
|
|
max-width="360"
|
|
frameborder="0"
|
|
allowtransparency="true"
|
|
scrolling="yes"
|
|
src="https://www.strava.com/athletes/139855203/latest-rides/95b8e0be96e32b8de82254d1c6627723a35eea6f"
|
|
></iframe>
|
|
</div>
|
|
<br />
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
</div>
|