1
0
mirror of https://gitlab.com/MisterBiggs/Resume.git synced 2025-06-16 01:16:39 +00:00
Resume/index.html

228 lines
7.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Anson Biggs Resume</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 focusing 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 have a massive
portfolio of code in dozens of languages over a decade; many of my
projects are used by thousands of people a month.
</p>
<h2>EXPERIENCE</h2>
<dl>
<dt>
Orbital Debris Classification, Undergrad Research, Fall 2021-Spring 2022
</dt>
<dd>
<ul>
<li>
University Research project directly with Dean of Engineering.
</li>
<li>
Using Machine Learning and high-resolution scans of high-velocity
pieces of shrapnel.
</li>
<li>
Project success could lead to greatly decreasing space mission cost
while increasing safety.
</li>
</ul>
</dd>
<dt>
<a href="https://simplestockbot.com">Simple Stock Bots</a>, Creator,
2018-Current
</dt>
<dd>
<ul>
<li>Bot that brings stock market info to group chats.</li>
<li>Python, CI/CD, Kubernetes.</li>
<li>Over 1 million commands per month.</li>
<li>Developed completely in public under MIT License.</li>
</ul>
</dd>
<dt>
<a
href="https://redline-racing-division.gitlab.io/redline-racing-website/"
>Redline Racing Division</a
>, Secretary / Business Lead 2018-2021
</dt>
<dd>
<ul>
<li>FSAE Club at Embry-Riddle.</li>
<li>
Developed plans to aid in team collaboration, build relationships
with local companies, and team configuration management.
</li>
<li>Grew team from 8 to 40 students.</li>
</ul>
</dd>
<dt>
<a href="https://hubgrill.com/">The Hub Grill</a>, Team Leader 2012-2021
</dt>
<dd>
<ul>
<li>
Assisted company growth from grand opening to 3 successful
locations.
</li>
<li>
Roles ranged from entire building remodels to designing menus and
other documentation to training full kitchen and serving staff
teams.
</li>
</ul>
</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 development 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>
<ul>
<li>Bachelors - Astronautical Engineering</li>
<li>Minor - Computer Science</li>
<li>Iceland Study abroad for Mathematics</li>
</ul>
</dd>
</dl>
<h2>SKILLS AND TOOLS</h2>
<dl>
<dt>Python</dt>
<dd>NumPy, Pandas, Matplotlib, SymPy, Serverless, DASK, CUDA</dd>
<dt>Engineering/Technical</dt>
<dd>
Julia, Rust, C++, LaTeX, Linux, Linux CLI, Git Version Control, Regex,
Docker, Kubernetes, CI/CD
</dd>
<dt>MATLAB</dt>
<dd>
Simulink, Statistics and Machine Learning Toolbox, Symbolic Toolbox,
Control System Toolbox, Aerospace Toolbox, Optimization Toolbox, Image
Processing Toolbox, Image Acquisition Toolbox
</dd>
<dt>Computer Aided Design</dt>
<dd>Fusion 360, CATIA, 3D Printing, Ultimaker 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) => {
try {
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>
`;
} catch (err) {
console.log(err);
}
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>