1
0
mirror of https://gitlab.com/MisterBiggs/Resume.git synced 2025-06-16 09:26:40 +00:00
Resume/index.html
2021-09-14 13:04:13 -07:00

187 lines
7.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Anson Biggs</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta
name="description"
content="Anson Biggs is an undergraduate Aerospace Engineering student with a focus on Astronautics and a minor in Computer Science
studying at Embry-Riddle Aeronautical University in Prescott, Arizona."
/>
<link rel="stylesheet" type="text/css" href="awsm.min.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" media="print" href="print.css" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🛰️</text></svg>"
/>
</head>
<body>
<button id="printbutton" onclick="window.print()">
Save Resume as PDF
</button>
<div style="text-align: center">
<h1>Anson Biggs</h1>
<h3 style="margin-top: 0">
Astronautical Engineering Undergraduate
<!--sse-->
<br />
<a href="mailto:anson@ansonbiggs.com">anson@ansonbiggs.com</a>
| (480) 322-8468 | Phoenix, Arizona<br />
<a href="https://linkedin.com/in/ansonbiggs"
>linkedin.com/in/ansonbiggs</a
>
| <a href="https://gitlab.com/MisterBiggs">gitlab.com/MisterBiggs</a> |
<a href="https://ansonbiggs.com">ansonbiggs.com</a>
<!--/sse-->
</h3>
</div>
<h2>SUMMARY</h2>
<p>
I am an undergraduate Aerospace Engineering student with a focus on
Astronautics and a minor in Computer Science studying at Embry-Riddle
Aeronautical University in Prescott, Arizona. I have successfully led
teams ranging from fast paced kitchen environments, construction of 11,000
square foot restaurants, to 40 student engineering teams. I also have a
massive portfolio of code in dozens of languages over the course of almost
a decade, many of my projects are used by thousands of people a month.
</p>
<h2>EXPERIENCE</h2>
<dl>
<dt>
<a href="https://hubgrill.com/">The Hub</a>, Team Leader 2012-2021
</dt>
<dd>
Assisted growing company from 1 to 3 successful locations. Roles ranged
from full building remodels to designing menus and other documentation
to training full teams of kitchen and serving staff. I have continued
with the company during my undergrad in a fast paced team leadership
position during my summers off from college.
</dd>
<dt>
Simple Stock Bots,
<a href="https://simplestockbot.com">simplestockbot.com</a> 2018-Current
</dt>
<dd>
Python project that aims to provide a simple interface and social to the
stock market on various platforms that allow bots. Thousands of monthly
active users. Changes to its Gitlab Repository automatically update live
code running in a Kubernetes cluster.
</dd>
<dt>
<a
href="https://redline-racing-division.gitlab.io/redline-racing-website/"
>Redline Racing Division</a
>, Secretary / Business Lead 2018-2021
</dt>
<dd>
Student design competition where the goal is to build a formula-style
race car. Helped develop plans to aid in team collaboration, build
relationships with local companies, and helped with team configuration
management. During my time the team grew from 8 to about 40 active
students.
</dd>
</dl>
<h2>AWARDS AND ACHIEVEMENTS</h2>
<dl>
<dt>Top 50 | Tegra K1 CUDA Vision Challenge, NVIDIA 2015</dt>
<dd>
Competition which involved building a computer vision platform using a
small dev board with an integrated GPU from NVIDIA. My project involved
implementing cameras in restaurants to ensure food was prepared properly
before being delivered to guests.
</dd>
<dt>Discord Verified Bot Developer</dt>
<dd>
Discord bots and applications that are active in more than 100 servers
can only be managed by a developer that has been verified by Discord.
Several of my projects have passed this threshold.
</dd>
</dl>
<h2>EDUCATION</h2>
<dl>
<dt>Embry-Riddle Aeronautical University Fall 2017 - May 2022</dt>
<dd>
Bachelors - Aerospace Engineering with a focus in Astronautics <br />
Minor - Computer Science
</dd>
</dl>
<h2>SKILLS</h2>
<dl>
<dt>Python</dt>
<dd>Numpy, Pandas, Matplotlib, SymPy, Serverless</dd>
<dt>Engineering/Technical</dt>
<dd>
Julia, Rust, VHDL, VIVADO, C, C++, LaTeX, Linux, Linux CLI, Git Version
Control, Regex, Docker, Kubernetes, CI/CD, Static Generation
</dd>
<dt>MATLAB</dt>
<dd>
Symbolic Toolbox, Control System Toolbox, Aerospace Toolbox, Simulink,
Optimization, Live Script
</dd>
<dt>Computer Aided Design</dt>
<dd>Fusion 360, CATIA, 3D Printing, Cura, Drawings</dd>
<dt>Office Software</dt>
<dd>
Teams, Word, Excel, PowerPoint, SharePoint, Outlook, OneNote, Publisher,
Visio, Skype
</dd>
</dl>
<h2>Projects</h2>
<br id="noprint" />
<p>
Below are some projects that I have worked on where I found something that
was interesting enough to make a writeup and post. The full list can be
viewed on my projects website
<a href="https://projects.ansonbiggs.com">projects.ansonbiggs.com</a>
</p>
<hr id="noprint" />
<script>
const RSS_URL = `https://projects.ansonbiggs.com/index.xml`;
fetch(RSS_URL)
.then((response) => response.text())
.then((str) => new window.DOMParser().parseFromString(str, "text/xml"))
.then((data) => {
console.log(data);
const items = data.querySelectorAll("item");
let articles = ``;
let detailedlist = `<dl id="onlyprint">`;
items.forEach((el) => {
articles += `
<article id="noprint">
<a href="${
el.querySelector("link").innerHTML
}" target="_blank" rel="noopener">
<img src="${el
.querySelector("content")
.getAttribute("url")}" alt="Post Thumbnail">
</a>
<a href="${
el.querySelector("link").innerHTML
}" target="_blank" rel="noopener">
<h3>${el.querySelector("title").innerHTML}</h3>
<p>${el.querySelector("description").innerHTML}</p>
</a>
</article>
`;
detailedlist += `
<dt><a href="${el.querySelector("link").innerHTML}">
${el.querySelector("title").innerHTML}</a></dt>
<dd>${el.querySelector("description").innerHTML}</dd>
`;
});
detailedlist += `</dl>`;
document.body.insertAdjacentHTML("beforeend", detailedlist);
document.body.insertAdjacentHTML("beforeend", articles);
});
</script>
</body>
</html>