mirror of
https://gitlab.com/MisterBiggs/Resume.git
synced 2026-06-04 01:50:25 +00:00
Compare commits
2 Commits
52fac02eca
...
20c3a39528
| Author | SHA1 | Date | |
|---|---|---|---|
| 20c3a39528 | |||
| 8cd6d402db |
+11
-29
@@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>Anson Biggs</title>
|
<title>Anson Biggs</title>
|
||||||
@@ -47,48 +47,30 @@
|
|||||||
>United Launch Alliance</a
|
>United Launch Alliance</a
|
||||||
>.
|
>.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
|
||||||
My interests vary, but if you're doing anything involving Autonomy,
|
|
||||||
Space, writing math using code, or the open web - then please reach
|
|
||||||
out!
|
|
||||||
</p>
|
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<h2>Connect</h2>
|
<p>
|
||||||
<p>I'm usually down to clown so hit me up!</p>
|
My current focus is on Agentic Engineering and building out tools that
|
||||||
|
help teams solve hard problems alongside LLMs. Outside of that I love:
|
||||||
|
Space, writing math using code, and decentrailzation.
|
||||||
|
</p>
|
||||||
<!--sse-->
|
<!--sse-->
|
||||||
<ul>
|
Reach out if you want to collab
|
||||||
<li>
|
<a href="mailto:anson@ansonbiggs.com" rel="me">anson@ansonbiggs.com</a>
|
||||||
<a href="mailto:anson@ansonbiggs.com" rel="me"
|
|
||||||
>anson@ansonbiggs.com</a
|
|
||||||
>
|
|
||||||
</li>
|
|
||||||
<li><a href="https://bsky.app/profile/ansonbiggs.com">BlueSky</a></li>
|
|
||||||
<li><a href="https://t.me/MisterBiggs" rel="me">Telegram</a></li>
|
|
||||||
<li>
|
|
||||||
<a href="https://mastodon.social/@MisterBiggs" rel="me">Mastodon</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<!--/sse-->
|
<!--/sse-->
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<h2>Personal Work</h2>
|
|
||||||
<p>
|
<p>
|
||||||
Explore my recent endeavors on my
|
Explore my recent endeavors on my
|
||||||
<a href="https://notes.ansonbiggs.com">Blog</a>, see what I'm building
|
<a href="https://notes.ansonbiggs.com">Blog</a>, see what I'm building
|
||||||
in public on my
|
in public on my
|
||||||
<a href="https://gitlab.com/MisterBiggs">GitLab profile</a>, and see
|
<a href="https://gitlab.com/MisterBiggs">GitLab</a> and if you're
|
||||||
technical breakdowns on my
|
looking to grow your team check out my <a href="/resume">Resume</a>.
|
||||||
<a href="https://projects.ansonbiggs.com">Projects Website</a>.
|
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
<footer>
|
<footer>
|
||||||
<p>
|
<p>Thanks for coming to ansonbiggs.com</p>
|
||||||
For a comprehensive look at my professional journey, view my
|
|
||||||
<a href="/resume">resume</a>.
|
|
||||||
</p>
|
|
||||||
</footer>
|
</footer>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
+13
-2
@@ -16,6 +16,7 @@ p {
|
|||||||
dd {
|
dd {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
dt {
|
dt {
|
||||||
@@ -26,6 +27,16 @@ ul {
|
|||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dd > ul {
|
||||||
|
margin-left: 0.75em;
|
||||||
|
padding-left: 0.25em;
|
||||||
|
margin-top: 0.05em;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd > ul > li {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@@ -44,8 +55,8 @@ h1 {
|
|||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
margin-top: 0.4em;
|
margin-top: 0.25em;
|
||||||
margin-bottom: 0.1em;
|
margin-bottom: 0.05em;
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+45
-37
@@ -1,12 +1,12 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>Anson Biggs | Resume</title>
|
<title>Anson Biggs - Resume</title>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
<meta
|
<meta
|
||||||
name="description"
|
name="description"
|
||||||
content="Resume for Anson Biggs, Infrastructure & Autonomy Software Engineer"
|
content="Resume for Anson Biggs, Applied AI Engineer"
|
||||||
/>
|
/>
|
||||||
<link rel="stylesheet" type="text/css" href="./css/awsm.min.css" />
|
<link rel="stylesheet" type="text/css" href="./css/awsm.min.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="./css/style.css" />
|
<link rel="stylesheet" type="text/css" href="./css/style.css" />
|
||||||
@@ -43,14 +43,14 @@
|
|||||||
<body>
|
<body>
|
||||||
<button
|
<button
|
||||||
id="printbutton"
|
id="printbutton"
|
||||||
onclick="window.location.href='./anson-biggs-resume.pdf'"
|
onclick="window.location.href = './anson-biggs-resume.pdf'"
|
||||||
>
|
>
|
||||||
Download Resume as PDF
|
Download Resume as PDF
|
||||||
</button>
|
</button>
|
||||||
<div style="text-align: center">
|
<div style="text-align: center">
|
||||||
<h1>Anson Biggs</h1>
|
<h1>Anson Biggs</h1>
|
||||||
<h3 style="margin-top: 0">
|
<h3 style="margin-top: 0">
|
||||||
Infrastructure & Autonomy Software Engineer
|
Applied AI Engineer | Secret Clearance Pending
|
||||||
<!--sse-->
|
<!--sse-->
|
||||||
<br />
|
<br />
|
||||||
<a href="mailto:anson@ansonbiggs.com" rel="me">anson@ansonbiggs.com</a>
|
<a href="mailto:anson@ansonbiggs.com" rel="me">anson@ansonbiggs.com</a>
|
||||||
@@ -73,10 +73,10 @@
|
|||||||
<span class="p-family-name">Biggs</span>
|
<span class="p-family-name">Biggs</span>
|
||||||
<a class="u-url" href="https://ansonbiggs.com"></a>,
|
<a class="u-url" href="https://ansonbiggs.com"></a>,
|
||||||
<a class="u-email" href="mailto:anson@ansonbiggs.com"></a>
|
<a class="u-email" href="mailto:anson@ansonbiggs.com"></a>
|
||||||
<abbr class="p-region" title="Colorado">CO</abbr>
|
<span class="p-region">Washington, DC</span>
|
||||||
<div class="p-country-name">U.S.A</div>
|
<div class="p-country-name">U.S.A</div>
|
||||||
<div class="p-category">engineer</div>
|
<div class="p-category">engineer</div>
|
||||||
<div class="p-note">Infrastructure & Autonomy Software Engineer</div>
|
<div class="p-note">Applied AI Engineer</div>
|
||||||
</div>
|
</div>
|
||||||
<!--/sse-->
|
<!--/sse-->
|
||||||
</h3>
|
</h3>
|
||||||
@@ -89,6 +89,28 @@
|
|||||||
environments for 100 engineers.
|
environments for 100 engineers.
|
||||||
</p> -->
|
</p> -->
|
||||||
<h2>PROFESSIONAL EXPERIENCE</h2>
|
<h2>PROFESSIONAL EXPERIENCE</h2>
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<em>Building AI solutions for early-stage startups</em> | April 2025 -
|
||||||
|
Present
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Automating software development for a hardware startup, building
|
||||||
|
simulation, deployment infrastructure, and Flight Software from
|
||||||
|
greenfield. Engineers write tickets; AI automations handle the
|
||||||
|
development lifecycle. Software used in first hardware tests and
|
||||||
|
investor demos.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Building AI managed research platform for deep tech startup using
|
||||||
|
Claude SDK and custom RAG to solve domain-specific knowledge
|
||||||
|
discovery challenges.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>
|
<dt>
|
||||||
Autonomy Applications Engineer | Shield AI | Washington, DC | June 2025
|
Autonomy Applications Engineer | Shield AI | Washington, DC | June 2025
|
||||||
@@ -97,8 +119,7 @@
|
|||||||
<dd>
|
<dd>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
Implemented Conan lockfile workflows ensuring reproducible builds
|
Advising senior leadership on company AI policies and deployments.
|
||||||
across deployment environments.
|
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Built GenAI automation tooling adopted by product team for Hivemind
|
Built GenAI automation tooling adopted by product team for Hivemind
|
||||||
@@ -133,16 +154,16 @@
|
|||||||
<li>
|
<li>
|
||||||
Developed custom Pytest framework generating dynamic GitLab CI child
|
Developed custom Pytest framework generating dynamic GitLab CI child
|
||||||
pipelines with Python decorators, reducing runner utilization by 90%
|
pipelines with Python decorators, reducing runner utilization by 90%
|
||||||
while maintaining hundreds of active simulation tests.
|
while maintaining flight software validation.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Built automation tooling using Tree-sitter and LLMs to analyze
|
Built advanced linting using Tree-sitter and LLMs to analyze Python
|
||||||
Python code in CI pipelines, catching non-terminating loops in
|
code in CI pipelines, catching non-terminating loops in verification
|
||||||
verification test code before deployment.
|
test code before deployment.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Developed Python data pipelines for spacecraft telemetry analysis
|
Developed Python data pipelines for spacecraft telemetry analysis
|
||||||
and C++ hardware mocking capabilities, enabling software-based
|
and C++ hardware mocking capabilities, enabling pure software
|
||||||
simulation environments.
|
simulation environments.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
@@ -160,8 +181,9 @@
|
|||||||
<dd>
|
<dd>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
Modernized legacy FORTRAN codebase (~700k lines) using Artifactory
|
Modernized legacy FORTRAN codebase (~700k lines) by distributing
|
||||||
and Bamboo CI, reducing compilation time from 12+ hours to 4 hours.
|
precompiled binaries, reducing downstream compilation time from 12+
|
||||||
|
hours to 4 hours.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Implemented team's first CI/CD pipeline with automated formatting,
|
Implemented team's first CI/CD pipeline with automated formatting,
|
||||||
@@ -176,8 +198,12 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<h2>PROJECT LEADERSHIP</h2>
|
<h2>EDUCATION & PROJECTS</h2>
|
||||||
<dl>
|
<dl>
|
||||||
|
<dt>
|
||||||
|
B.S. Astronautical Engineering, CS Minor | Embry-Riddle Aeronautical
|
||||||
|
University | May 2022
|
||||||
|
</dt>
|
||||||
<dt>
|
<dt>
|
||||||
Undergraduate Research Lead | Orbital Debris Classification | Prescott,
|
Undergraduate Research Lead | Orbital Debris Classification | Prescott,
|
||||||
AZ | 2021
|
AZ | 2021
|
||||||
@@ -203,26 +229,8 @@
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Implemented automated canary and stable release pipelines with
|
Implemented automated canary and stable release pipelines with
|
||||||
GitLab CI/CD, enabling continuous deployment to production.
|
GitLab CI/CD, enabling continuous deployment to production with
|
||||||
</li>
|
verification of updates.
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
<h2>EDUCATION AND SKILLS</h2>
|
|
||||||
<dl>
|
|
||||||
<dt>
|
|
||||||
B.S. Aerospace Engineering | Embry-Riddle Aeronautical University |
|
|
||||||
Prescott, AZ | May 2022
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Bachelor of Science in Aerospace Engineering (Astronautics
|
|
||||||
Concentration) with a minor in Computer Science
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
1 Year Data Science Directed Study | Summer Study Abroad for
|
|
||||||
Mathematics in Iceland
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</dd>
|
</dd>
|
||||||
|
|||||||
@@ -59,8 +59,8 @@ async function generatePDF() {
|
|||||||
margin: {
|
margin: {
|
||||||
top: '0.1in',
|
top: '0.1in',
|
||||||
bottom: '0.1in',
|
bottom: '0.1in',
|
||||||
left: '0.25in',
|
left: '0.15in',
|
||||||
right: '0.25in',
|
right: '0.1in',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user