<!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 Engineer | Computer Scientist <!--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>PROFILE</h2> <p> 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>EDUCATION</h2> <dl> <dt> Embry-Riddle Aeronautical University | Prescott, AZ | Fall 2017 - May 2022 </dt> <dd> <ul> <li> Bachelors of Science in Astronautical Engineering | Minor in Computer Science </li> <li>Iceland Study abroad for Mathematics, 2018</li> <li> Relevant Coursework: <em >Spacecraft Detail Design: Controlled Propulsive Landing on Lunar Surface | Spacecraft Attitude Dynamics and Control | Optimization</em > </li> </ul> </dd> </dl> <h2>Undergraduate Grant Project</h2> <dt> Orbital Debris Classification, Undergrad Research, Fall 2021-Spring 2022 </dt> <dd> <ul> <li> Close collaboration with ERAU Dean of Engineering, ERAU Engineering Faculty and other Engineering Students to conduct primary and secondary research to prepare for a University Research Institute Grant. </li> <li> Implement Machine Learning of information gained on high-resolution scans of high-valocity pieces of shrapnel for the purpose of decreasing space mission cost and safety. </li> <li> Documenting qualitative and quantitive research to convey project findings in furutre publications. </li> </ul> </dd> <h2>ENGINEERING EXPERIENCE</h2> <dl> <dt>Simple Stock Bots | Phoenix, AZ | Founder | 2018-Current</dt> <dd> <ul> <li> Bot that brings stock market information and analysis to group chats, used over 1 Million times per month. </li> <li> Programmed in Python and uses CI/CD to publish and deploy code to a Kubernetes Cluster that I manage. </li> <li>Developed completely open-source in public under MIT License.</li> </ul> </dd> <dt>The Hub Grill | Mesa, AZ | Team Leader | 2012-2021</dt> <dd> <ul> <li> Coordinated communications in close partnership with external companies to streamline the expansion of the franchise to three new locations. </li> <li> Developed technical documentation to train and onboard incoming staff (100's of employees) to ensure staff represented company values and followed clear protocols. </li> <li> Worked closely with teams to help promote a healty workplace culture and promote collaboration and team building. </li> </ul> </dd> </dl> <h2>AWARDS AND ACHIEVEMENTS</h2> <dl> <dt>NVIDIA | Tegra K1 CUDA Vision Challenge, Top 50 | 2015</dt> <br /> <dt>Discord | Verified Bot Developer | 2018</dt> </dl> <h2>SKILLS AND TOOLS</h2> <dl> <dt>Python</dt> <dd>NumPy, Pandas, Matplotlib, SymPy, Serverless, DASK, CUDA</dd> <dt>Engineering and Technical</dt> <dd> Julia, Rust, C++, LaTeX, Linux, Linux CLI, Git Version Control, Regex, Docker, Kubernetes, CI/CD </dd> <dt>MATLAB</dt> <dd> Simulink, Toolboxes: Statistics and Machine Learning, Symbolic, Control System, Aerospace, Optimization, Image Processing, Image Acquisition </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, Google Workspace </dd> </dl> <h2>Personal Engineering Projects</h2> <br 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>