mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
just a whole lot of things
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
<div class="foreground"></div>
|
||||
<div class="foregroundContent">
|
||||
<div class="relative">
|
||||
<div id="aboutGrid">
|
||||
<div id="aboutMe" class="col" data-aos="fade-up">
|
||||
<h2 class="concentratedHead">About Me</h2>
|
||||
<p>
|
||||
@@ -12,19 +11,15 @@
|
||||
science with a focus on predictive analytics.
|
||||
</p>
|
||||
<p>
|
||||
<br /><br />
|
||||
<br />
|
||||
Ominous positivity is kinda my thing.
|
||||
</p>
|
||||
<br />
|
||||
</div>
|
||||
<div class="col rightCol" data-aos="fade-up">
|
||||
<div id="skills">
|
||||
<!-- <h2>Skills</h2> -->
|
||||
{% from 'partials/skills.html' import skills %} {{ skills([ "Python",
|
||||
"JavaScript", "Java", "C", "C++", "R", "MIPS Assembly", "Processing",
|
||||
"P5.js", "SQL", "SQLite", "PostgreSQL", "SQLAlchemy", "HTML", "CSS",
|
||||
"Docker", "LaTeX", "ArcGIS", "Git", "Github", "Linux", "OKD4",
|
||||
"Kubernetes", "Openshift", "Nginx", "Angular", "Flask", "Jinja", "Web
|
||||
Scraping", "Google API", "React", "Node.js", "ArcGIS", ]) }}
|
||||
<h2 id="skillstag">Skills</h2>
|
||||
{% from 'partials/skills.html' import skills %} {{ skills(var['skillList']) }}
|
||||
</div>
|
||||
<div id="timeline">
|
||||
<h2>Timeline</h2>
|
||||
@@ -85,37 +80,6 @@
|
||||
toggleCheckbox("up");
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
<!-- {/* <div data-aos="fade-up" class="elementBlock">
|
||||
<h2>Extracirricular Awards</h2>
|
||||
<MyCarousel class="carousel" data-aos="fade-up">
|
||||
{[
|
||||
{
|
||||
original: img4,
|
||||
description:
|
||||
"High School VEX Robotics President and Team Leader",
|
||||
},
|
||||
{
|
||||
original: img5,
|
||||
description:
|
||||
"We the People Civics Competition District Champions",
|
||||
},
|
||||
{
|
||||
original: img6,
|
||||
description: "We The People State Civics Competition Champions",
|
||||
},
|
||||
{
|
||||
original: img7,
|
||||
description:
|
||||
"what it looks like to compete in We the People Nationals, circa 2020",
|
||||
},
|
||||
{
|
||||
original: img3,
|
||||
description: "Academic Team county championships",
|
||||
},
|
||||
]}
|
||||
</MyCarousel>
|
||||
</div> */} -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="{{ url_for('static', filename='icons/neonfinal3.svg') }}" />
|
||||
<link rel="icon" href="{{ url_for('static', filename='icons/withBackground.svg') }}" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta name="description" content="{{ var['description'] }}" />
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
/>
|
||||
<h1 id="homeName" class='textGrad'>Andrew Simonson</h1>
|
||||
<h3>Computer Science student at Rochester Institute of Technology</h3>
|
||||
<h5>🦅 🦅 🦅 Raahhh wtf is homepage content, we don't do that here 🦅 🦅 🦅</h5>
|
||||
<h5>End-to-End Services in Data Science and AI</h5>
|
||||
{% endmacro %}
|
||||
|
||||
<div class="foreground homeground"></div>
|
||||
@@ -24,12 +24,6 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="onRight" data-aos="fade-up">
|
||||
<img
|
||||
src="{{ url_for('static', filename='readme-stats-vercel-01-25-2023.svg') }}"
|
||||
class="langstats"
|
||||
alt="Language stats"
|
||||
/>
|
||||
<br />
|
||||
<div class="chess">
|
||||
{% from 'partials/chess.html' import chess %} {{
|
||||
chess('asimonson1125') }}
|
||||
|
||||
@@ -1,5 +1,16 @@
|
||||
{% macro expandSkill(dict, name, classes="") %}
|
||||
<div class='skill {{ classes }}' data-length='{{ dict[name]|length }}'>
|
||||
<div onclick='activeSkill(this)' class='skillname'>{{ name }}</div>
|
||||
{% for child in dict[name] %}
|
||||
{{ expandSkill(dict[name], child) }}
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endmacro %}
|
||||
|
||||
{% macro skills(skills) %}
|
||||
<ul class='skills'>
|
||||
{% for i in skills %}<li class='skill'>{{i}}</li>{% endfor %}
|
||||
</ul>
|
||||
<div id="skillTree">
|
||||
{% for skill in skills %}
|
||||
{{ expandSkill(skills, skill, 'activeSkill') }}
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endmacro %}
|
||||
@@ -3,6 +3,7 @@
|
||||
<div class="foregroundContent">
|
||||
<div data-aos="fade-up">
|
||||
<h2 class="concentratedHead">Projects</h2>
|
||||
<h3>Shhh shh shh sh sh I know I know I'm gonna revamp this page later </h3>
|
||||
<p>
|
||||
Project status is indicated by the color of the project card:
|
||||
<br />
|
||||
|
||||
Reference in New Issue
Block a user