1
0
mirror of https://gitlab.com/MisterBiggs/Resume.git synced 2025-08-05 21:11:22 +00:00

Compare commits

9 Commits

Author SHA1 Message Date
35495ac60e fixed formatting error where lists werent inline 2019-06-14 15:27:03 -07:00
d136c4db65 fixed broken characters 2019-06-14 15:26:35 -07:00
b5d4875050 have to list python version number for build 2019-06-13 16:13:27 -07:00
1b7cfe1809 updated built instructions 2019-06-13 16:07:33 -07:00
b8e9b90370 added more functionality so gave relevant name 2019-06-13 16:03:23 -07:00
736d401bcd netlify build instructions 2019-06-13 15:50:16 -07:00
1d484fdecc renamed markdown file 2019-06-13 15:50:00 -07:00
d22d6e8406 Switched to markdown pandoc python workflow 2019-06-13 15:41:09 -07:00
3b6b466cf4 moving to pandoc_resume 2019-05-26 12:13:41 -07:00
27 changed files with 342 additions and 2106 deletions

1
.gitignore vendored
View File

@@ -1 +0,0 @@
public

View File

@@ -1,11 +0,0 @@
pages:
stage: deploy
script:
- mkdir .public
- cp -r ./* .public
- mv .public public
artifacts:
paths:
- public
only:
- master

View File

@@ -1,5 +0,0 @@
{
"recommendations": [
"esbenp.prettier-vscode"
]
}

View File

@@ -1,5 +0,0 @@
{
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}

View File

@@ -1,31 +0,0 @@
<!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 Aerospace / Software Engineer working on simulation and modeling of next generation rocket flight systems."
/>
<link rel="stylesheet" type="text/css" href="/css/magick.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>"
/>
<meta charset="UTF-8" />
</head>
<body>
<main>
<header>
<h1>You've been 404'd</h1>
<p style="text-align: center">
If you haven't fallen off a horse, then you haven't been ridin' long enough,</br>
<!-- Needs to be absolute url since I redirect other subdomains here -->
<a href="https://ansonbiggs.com/">Saddle back up</a>
</p>
</header>
</main>
</body>
</html>

View File

@@ -1,5 +0,0 @@
# Anson Biggs Resume
My personal resume website. The main splash page is made with p5.js, and the `/resume` endpoint is my personal resume which is made in simple html/css and even includes some fancy css to make the page print nicely.
See it live at [ansonbiggs.com](https://ansonbiggs.com)

View File

@@ -1 +0,0 @@
ahrefs-site-verification_2b8875d8bada56bd9393eca9fc2daabe2ee862fcb81c5f63c67e73d087f70cac

15
build.py Normal file
View File

@@ -0,0 +1,15 @@
import os, shutil, pypandoc
with open("header.html", "r") as top, open("footer.html", "r") as bottom:
header = top.read()
footer = bottom.read()
content = pypandoc.convert_file("resume.md", "html")
with open("index.html", "w+") as index:
index.write(header)
index.write(content)
index.write(footer)
os.mkdir("site")
shutil.move("index.html", "site")
shutil.copy("style.css", "site")

View File

@@ -1,885 +0,0 @@
/*
* Magick CSS
* by: winterveil (https://github.com/wintermute-cell/)
* license: MIT
* version: 1.0.5
*/
@charset "UTF-8";
/* Importing the fonts. */
@import url('https://fonts.googleapis.com/css2?family=Averia+Libre:ital,wght@0,400;0,700;1,400;1,700&family=Averia+Serif+Libre:ital,wght@0,300;0,700;1,300;1,700&family=Caveat&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Spectral:ital,wght@0,300;0,600;1,300;1,600&display=swap&family=Noto+Sans+Symbols+2&display=swap');
/* Simple CSS Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/* Theme colors */
--fg: #0e0e0e;
--bg: #fefefe;
--form-bg: #fbfbfb;
--form-fg: #00004d;
--form-fg-placeholder: #00004d9a;
}
@media (prefers-color-scheme: dark) {
:root {
--fg: #fefefe;
--bg: #0e0e0e;
--form-bg: #1a1a1a;
--form-fg: #fefefe;
--form-fg-placeholder: #fefefe9a;
}
}
/*
1) Modify the base font-size to 62.5% so that 1.6rem = 16px.
2) Set box-sizing globally to handle padding and border widths.
*/
html {
font-size: 62.5%;
/* 1 */
box-sizing: border-box;
/* 2 */
}
/* Use smaller sizes on mobile devices. */
@media (max-width: 600px) {
html {
font-size: 56%;
}
}
/*
1) Set the base font-size to 18px with a normal weight.
2) Set the text and background colors to match the theme.
3) Use the 'Averia Serif Libre' font for the body text.
4) Reset the counter for sidenotes.
*/
body {
font-size: 1.8rem;
/* 1 */
background-color: var(--bg);
/* 2 */
color: var(--fg);
/* 2 */
font-family: "Averia Serif Libre", serif;
/* 3 */
font-style: normal;
/* 3 */
line-height: 2.2rem;
/* 3 */
font-weight: 300;
/* 3 */
counter-reset: sidenote-counter;
/* 4 */
}
/*
1) Center the main content.
2) Set the width of the element to 760px, with lower padding on mobile devices.
3) Relative position as the default allows for absolute positioning of child elements.
*/
article,
main {
margin: auto;
/* 1 */
max-width: 76rem;
/* 2 */
padding: 0 1rem;
/* 2 */
width: 100%;
/* 2 */
position: relative;
/* 3 */
}
@media (max-width: 600px) {
article,
main {
padding: 0 0.2rem;
/* 2 */
}
}
/* ========================================================================================================================= */
/* Structure & Layout ===================================================================================================== */
/* ========================================================================================================================= */
/* Display the header, main, and footer sections as distinctly separate blocks. */
header,
section,
footer {
margin: 0.7rem;
padding: 0.7rem;
}
/* On mobile devices, a smaller margin looks more fitting due to the smaller view. */
@media (max-width: 600px) {
header,
section,
footer {
margin-top: 0.2rem;
margin-bottom: 0.2rem;
}
}
/* Avoid double margin on the last child of each section */
header>*:last-child,
section>*:last-child,
footer>*:last-child {
margin-bottom: 0;
}
/* Add large margins to the header to visually separate it from the main content. */
header {
margin-top: 12rem;
margin-bottom: 8rem;
}
/* On mobile devices, reduce the margin around the header to save space. */
@media (max-width: 600px) {
header {
margin: 0;
padding: 1.2rem;
}
}
/*
1) Center align the text in the footer.
2) Add a margin to the top of the footer to visually separate it from the main content.
3) Add a margin to the bottom of the footer to not have it stuck to the bottom of the page.
*/
footer {
text-align: center;
/* 1 */
margin-top: 5rem;
/* 2 */
margin-bottom: 2rem;
/* 3 */
}
/* ========================================================================================================================= */
/* Typography & Links ===================================================================================================== */
/* ========================================================================================================================= */
/* Add some space between paragraphs. */
p {
margin: 1.6rem 0;
/* 1 */
}
/* Remove link color. */
a {
color: var(--fg);
}
/* Make string a little more bold, to adjust for the font. */
b,
strong {
font-weight: 600;
}
/* Make emphasized text a little larger, to adjust for the font. */
i,
em {
font-size: calc(1em + 0.1rem);
}
/*
1) Set the font-family, color, and font-style for the headings.
2) Add a margin to the top and bottom of the headings.
*/
h1,
h2,
h3,
h4 {
font-family: "Averia Libre", cursive;
/* 1 */
color: var(--fg);
/* 1 */
font-style: normal;
/* 1 */
font-weight: 600;
/* 1 */
margin: 1.6rem 0 1.6rem 0;
/* 2 */
}
/* h1 headings are uppercase and 2x the size of the base font. */
h1 {
text-transform: uppercase;
font-size: 3.6rem;
line-height: 3.3rem;
}
/* h2 headings are uppercase and 1.250x (major third) the size of the base font. */
h2 {
font-size: 2.25rem;
text-transform: uppercase;
margin: 1.2rem 0 1.2rem 0;
}
/* h3 headings are 1.125x (major second) the size of the base font. */
h3 {
font-size: 2.025rem;
}
/* Add a decorative element before h3 headings. */
h3:before {
font-family: "Noto Sans Symbols 2", sans-serif;
content: "🙛 ";
}
/* h4 headings are the same size as h3 headings, but italic and without the decorative element. */
h4 {
font-style: italic;
font-size: 2.025rem;
}
/* A uniquely styled h1 for the header */
header h1 {
font-size: 4rem;
color: var(--fg);
text-align: center;
padding: 4rem 0 1.2rem 0;
margin-bottom: 1rem;
}
/* Additional decorations for the header h1 */
header h1:before,
header h1:after {
content: "✦";
color: var(--fg);
font-size: 1.5rem;
vertical-align: middle;
padding: 0 0.5rem;
}
/*
1) Remove any list symbols.
2) Center align the nav links.
3) Add a margin to the top of the nav links.
4) Remove the default padding from the list.
*/
header nav ul {
list-style-type: none;
/* 1 */
text-align: center;
/* 2 */
margin-top: 1.0rem;
/* 3 */
padding-inline-start: 0;
/* 4 */
}
/* Display the navigation links as a centered, horizontal list. */
header nav ul li {
display: inline;
margin: 0 1.2rem;
}
/* Remove default link styles. */
header nav ul li a {
text-decoration: none;
color: var(--fg);
}
/* Add a hover effect to the navigation links. */
header nav ul li a::before {
content: " ";
/* 1 */
opacity: 0;
/* 1 */
}
header nav ul li a:hover::before {
opacity: 1;
/* 1 */
}
/* ===================================================================================================================== */
/* Lists ===================================================================================================== */
/* ===================================================================================================================== */
/*
1) Add some indentation to the list items.
2) Add a margin to the top and bottom of the list.
*/
:where(main ol, main ul) {
margin-inline-start: 0;
/* 1 */
padding-inline-start: 3rem;
/* 1 */
margin: 0.8rem 0;
/* 2 */
}
/* Add some vertical space around a definition list. */
dl {
margin: 0.8rem 0;
}
/* Add an indent to the definition term. */
dd {
margin: 0 1.6rem;
}
/* ===================================================================================================================== */
/* Media ===================================================================================================== */
/* ===================================================================================================================== */
/*
1) Set the maximum width of the image to 100% so they don't overflow the main column.
2) Set the height in respect to the width to prevent the image from stretching.
3) Add some margin to standalone images.
*/
img {
max-width: 100%;
/* 1 */
height: auto;
/* 2 */
margin: 0.8rem 0;
/* 3 */
}
/* Images in figures should not have their own margins */
figure img {
margin: 0;
padding: 0;
}
/*
1) Set margins and padding for figures.
2) Center align any text inside figures.
*/
figure {
margin: 2rem 0;
/* 1 */
padding: 0;
/* 1 */
text-align: center;
/* 2 */
}
/* Center align any element that is part of a figure */
figure * {
margin-left: auto;
margin-right: auto;
}
/* We don't want to center prealigned text or code in figures */
figure code,
figure pre {
text-align: left;
}
/* Set the typography for the figure captions */
figcaption {
margin: 0.8rem 0;
font-size: 1.8rem;
}
/* ===================================================================================================================== */
/* Forms & Inputs ===================================================================================================== */
/* ===================================================================================================================== */
/*
1) Display the form elements in a grid layout, two columns wide.
2) Add some space between the form elements.
3) Set padding and margin for the form.
4) Give the form a pop out paper note look.
*/
form {
display: grid;
/* 1 */
grid-template-columns: 1fr 1fr;
/* 1 */
gap: 10px;
/* 2 */
padding: 1rem;
/* 3 */
margin: 0.8rem 0;
/* 3 */
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
/* 4 */
background-color: var(--form-bg);
/* 4 */
}
/* Make form inputs and labels span two columns. (They get their own line) */
form input[type="email"],
form input[type="number"],
form input[type="password"],
form input[type="search"],
form input[type="tel"],
form input[type="text"],
form input[type="url"],
form label,
form fieldset,
form textarea {
grid-column: span 2;
}
/*
1) Adjust the elements to take up full width of their grid cell.
2) Prevent textarea from being resized horizontally and overflowing the main column.
*/
form input,
form button,
form textarea {
width: 100%;
/* 1 */
resize: vertical;
/* 2 */
}
/*
1) Prevent radio and checkbox from taking up full width, so they can be put next to each other.
2) Add space between radio and checkbox options.
*/
input[type="radio"],
input[type="checkbox"] {
width: auto;
/* 1 */
margin-right: 0.5rem;
/* 2 */
}
input[type="radio"]+label,
input[type="checkbox"]+label {
margin-right: 2rem;
/* 2 */
}
/* Add a disabled variant for radio and checkbox inputs */
input[type="radio"]:disabled+label,
input[type="checkbox"]:disabled+label {
text-decoration: line-through;
opacity: 0.5;
}
/*
1) Remove the default appearance of the input.
2) Set padding and margin for the input.
3) Apply some custom styles in place of the default ones.
4) Give the input a handwritten look.
*/
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
textarea,
select {
-webkit-appearance: none;
/* 1 */
-moz-appearance: none;
/* 1 */
appearance: none;
/* 1 */
box-shadow: none;
/* 1 */
box-sizing: inherit;
/* 1 */
border: none;
/* 1 */
padding: .4rem 1rem;
/* 2 */
margin-bottom: 1.6rem;
/* 2 */
font-size: 2rem;
/* 3 */
color: var(--fg);
/* 3 */
background-color: transparent;
/* 3 */
border-bottom: 1px solid var(--fg);
/* 3 */
border-radius: 0;
/* 3 */
font-size: 1.8rem;
/* 3 */
font-family: "Caveat", cursive;
/* 4 */
font-size: 2.6rem;
/* 4 */
color: var(--form-fg);
/* 4 */
caret-color: var(--form-fg);
/* 4 */
}
/* Add disabled variant for input fields */
input[type="email"]:disabled,
input[type="number"]:disabled,
input[type="password"]:disabled,
input[type="search"]:disabled,
input[type="tel"]:disabled,
input[type="text"]:disabled,
input[type="url"]:disabled,
textarea:disabled,
select:disabled {
border-bottom: 1px dashed var(--fg);
/* 3 */
text-decoration: line-through;
}
/* A slightly more transparent color for the placeholder text. */
input::placeholder,
textarea::placeholder {
color: var(--form-fg-placeholder);
}
/*
1) Remove the default focus outline.
2) Add a thicker bottom border to the input when focused, reducing margin to prevent layout shifting.
*/
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
outline: none;
/* 1 */
border-bottom: 2px solid var(--fg);
/* 2 */
margin-bottom: calc(1.6rem - 1px);
/* 2 */
}
/*
1) Match the theme colors.
2) Add padding.
3) Add a top margin to visually separate the buttons for the rest of the form.
4) Add a thin border.
5) Add a pointer cursor on hover.
*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
background-color: transparent;
/* 1 */
color: var(--fg);
/* 1 */
padding: 10px;
/* 2 */
margin-top: 1.6rem;
/* 3 */
border: 1px solid var(--fg);
/* 4 */
cursor: pointer;
/* 5 */
}
/*
1) A thin border around the fieldset.
2) Set the width of the fieldset to fit around the content.
*/
fieldset {
border: 1px solid var(--fg);
/* 1 */
width: fit-content;
/* 2 */
}
/* In a form, the fieldset takes up 100% of the width. */
form fieldset {
width: 100%;
}
/*
1) Set the border of a disabled button to be dashed.
2) Add the not-allowed cursor when hovering a disabled button.
*/
button:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled {
opacity: 0.5;
border-style: dashed;
/* 1 */
cursor: not-allowed;
/* 2 */
text-decoration: line-through;
}
/* ===================================================================================================================== */
/* Tables ========================================================================================================== */
/* ===================================================================================================================== */
/* Remove the distance between adjacent cells, since we don't have vertical border lines. */
table {
border-spacing: 0;
}
/* Add some padding around table cells. */
td,
th {
padding: 0.4rem 1.0rem;
}
/* Remove left padding for first cell in a row. */
td:first-child,
th:first-child {
padding-left: 0;
}
/* Remove right padding for last cell in a row. */
td:last-child,
th:last-child {
padding-right: 0;
}
/*
1) Add a border under the table header.
2) Align the text to the left in the table header.
*/
th {
border-bottom: 2px solid var(--fg);
/* 1 */
text-align: left;
/* 2 */
}
/* ============================================================================================================================ */
/* Preformatting, Quotes & Code ============================================================================================ */
/* ============================================================================================================================ */
/*
1) Set custom padding and margins.
2) Hide the vertical scroll bar.
3) Set the width to fit just around the content, but limit it to 80% of the main column.
4) Center the blockquote horizontally and add some vertical margins.
*/
blockquote {
padding: 1rem 1.6rem;
/* 1 */
overflow-y: hidden;
/* 2 */
width: fit-content;
/* 3 */
max-width: 80%;
/* 3 */
margin: 2rem auto;
/* 4 */
}
/*
1) Set a custom font for blockquote text paragraphs.
2) Add some space between the paragraphs.
*/
blockquote p {
font-family: "Spectral", serif;
/* 1 */
font-style: italic;
/* 1 */
font-size: 2.1rem;
/* 1 */
font-weight: 300;
/* 1 */
line-height: 2.4rem;
/* 1 */
margin: 2.1rem 0;
/* 2 */
}
/* Add a footer to the blockquote for citations. */
/*
1) Reset any margins and padding from the main footer.
2) Set the footer to float and align to the right.
3) Limit the width of the footer to 55% of the main column.
4) Set a custom font for the footer.
*/
blockquote footer {
margin: 0;
/* 1 */
padding: 0;
/* 1 */
float: right;
/* 2 */
text-align: right;
/* 2 */
width: 55%;
/* 3 */
font-family: "Spectral", serif;
/* 4 */
font-style: normal;
/* 4 */
font-size: 1.4rem;
/* 4 */
}
/* Make the actual citation italic */
blockquote footer cite {
font-style: italic;
}
/*
1) Set custom padding.
2) Hide the vertical scroll bar.
3) Set a custom monospace font.
4) Add a top and bottom border line.
*/
pre:has(code) {
padding: 1rem 1.6rem;
/* 1 */
margin: 1.6rem 0;
/* 1 */
overflow-y: hidden;
/* 2 */
font-family: "Courier Prime", monospace;
/* 3 */
font-size: 1.6rem;
/* 3 */
border-top: 2px solid var(--fg);
/* 4 */
border-bottom: 2px solid var(--fg);
/* 4 */
}
/* Set a custom monospace font */
code {
font-family: "Courier Prime", monospace;
font-size: 1.6rem;
}
/*
1) Float the line numbers to the left, next to the code.
2) Make some distance between the line numbers and the code, and pull it all to the left with a negative margin.
3) Add a vertical line to separate the line numbers from the code.
4) Align the line numbers against the separator.
*/
pre .line-number {
float: left;
/* 1 */
margin: 0 1.5rem 0 -1.5rem;
/* 2 */
border-right: 1px solid;
/* 3 */
text-align: right;
/* 4 */
}
/*
1) Display as block, so we get a new line for each line number.
2) Add some padding to the line numbers.
*/
pre .line-number span {
display: block;
/* 1 */
padding: 0 0.8rem 0 1.6rem;
/* 2 */
}
/* ============================================================================================================================ */
/* Sidenotes & Asides ====================================================================================================== */
/* ============================================================================================================================ */
/*
1) On mobile devices, sidenotes behave the same as asides.
2) Float the sidenotes to the right.
3) Make sure the sidenotes don't clash.
4) Set the width of the sidenotes to 40% of the main column.
5) Add padding, margins and a border for better visual separation.
6) Adjust typography to be more compact.
*/
.sidenote,
/* 1 */
aside {
float: right;
/* 2 */
clear: right;
/* 3 */
width: 40%;
/* 4 */
margin: 1rem 1rem 1rem 3rem;
/* 5 */
padding: 0.5rem 0.5rem 0.5rem 2rem;
/* 5 */
border-left: 3px solid var(--fg);
/* 5 */
font-size: 1.4rem;
/* 6 */
line-height: 1.3;
/* 6 */
}
/* Prevent double top margins */
aside h1,
aside h2,
aside h3,
aside h4 {
margin-top: 0;
}
/*
1) Set the distance from the main column.
2) Set the width of the element to a little less than the remaining space on one side, limited to 40% of the main column.
3) Remove any values set for the mobile version of the sidenotes.
4) Set the width to the variable defined above.
5) Set a negative right margin to (self-width + distance-from-main) to pull the sidenote to the right.
*/
/* Sadly, CSS does not support var() and rem in media queries, so we have to hardcode pixels. */
/* This will break if the main column width is changed without adjusting this media query. */
@media (min-width: calc(760px + 400px)) {
.sidenote {
--distance-from-main: 3rem;
/* 1 */
--self-width: min(calc((100vw - 760px)/2 - (var(--distance-from-main))), 40%);
/* 2 */
margin: 0;
/* 3 */
padding: 0;
/* 3 */
border: none;
/* 3 */
width: var(--self-width);
margin-right: calc(calc(var(--self-width) + var(--distance-from-main)) * -1);
}
}
/* Each time a sidenote anchor is encountered, increment the counter */
.sidenote-anchor {
counter-increment: sidenote-counter;
}
/* Use a custom font for the sidenote numbers */
.sidenote-anchor:after,
.sidenote:before {
font-size: 1.3rem;
position: relative;
font-family: "Spectral", serif;
}
/* Fine-adjust the number position for the sidenote anchor */
.sidenote-anchor:after {
content: counter(sidenote-counter);
top: -0.5rem;
left: 0.1rem;
}
/* Fine-adjust the number position for the sidenote */
.sidenote:before {
content: counter(sidenote-counter) " ";
top: -0.5rem;
}

379
css/normalize.css vendored
View File

@@ -1,379 +0,0 @@
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
line-height: 1.15;
/* 1 */
-webkit-text-size-adjust: 100%;
/* 2 */
}
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers.
*/
body {
margin: 0;
}
/**
* Render the `main` element consistently in IE.
*/
main {
display: block;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* Grouping content
========================================================================== */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */
}
/* Text-level semantics
========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
background-color: transparent;
}
/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
text-decoration: underline dotted;
/* 2 */
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
border-style: none;
}
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: inherit;
/* 1 */
font-size: 100%;
/* 1 */
line-height: 1.15;
/* 1 */
margin: 0;
/* 2 */
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
/* 1 */
overflow: visible;
}
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
/* 1 */
text-transform: none;
}
/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
/**
* Correct the padding in Firefox.
*/
fieldset {
padding: 0.35em 0.75em 0.625em;
}
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */
}
/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
vertical-align: baseline;
}
/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
overflow: auto;
}
/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type="checkbox"],
[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */
}
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield;
/* 1 */
outline-offset: -2px;
/* 2 */
}
/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button;
/* 1 */
font: inherit;
/* 2 */
}
/* Interactive
========================================================================== */
/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
display: block;
}
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item;
}
/* Misc
========================================================================== */
/**
* Add the correct display in IE 10+.
*/
template {
display: none;
}
/**
* Add the correct display in IE 10.
*/
[hidden] {
display: none;
}

1
footer.html Normal file
View File

@@ -0,0 +1 @@
</html>

View File

@@ -1 +0,0 @@
gqacdgrpasvukaeqq1xp9uf96rru5nnv

13
header.html Normal file
View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Anson Biggs Resume</title>
<link rel="stylesheet" href="css/style.css">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="style.css" rel="stylesheet"></link>
</head>

View File

@@ -1,173 +0,0 @@
<!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 Aerospace / Software Engineer working on simulation and modeling of next generation rocket flight systems."
/>
<link rel="stylesheet" type="text/css" href="./css/normalize.css" />
<link rel="stylesheet" type="text/css" href="./css/magick.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>"
/>
<meta charset="UTF-8" />
<script src="p5/p5.min.js" defer></script>
<script src="p5/p5.dom.min.js" defer></script>
<script src="p5/mover.js" defer></script>
<script src="p5/sketch.js" defer></script>
<link
rel="alternate"
type="application/rss+xml"
title="Less Technical Blog"
href="https://notes.ansonbiggs.com/rss/"
/>
<link
rel="alternate"
type="application/rss+xml"
title="Technical Blog"
href="https://projects.ansonbiggs.com/index.xml"
/>
</head>
<body>
<main>
<header>
<h1>Hi, I'm Anson</h1>
<p>
I am currently looking for my next role! Take a look at my resume
<a href="/resume">here</a>. If your team is hiring please reach out
using one of the contact methods below.
</p>
<p>
I am an Aerospace Simulation Software Engineer with a B.S. in
Aerospace Engineering and a lifelong passion for writing code. I'm
deeply committed to making the world a better place with
high-quality software. My experience ranges from doing data
science on orbital debris to enable advanced characterization using
Rust and Julia to developing high-fidelity models for GNC algorithm
validation of rockets in C++ to creating highly extensible simulation
orchestrators using Docker and Python.
</p>
</header>
<section>
<h2>Connect</h2>
<p>
I'm available for discussions about employment opportunities,
collaborations, or just to chat about something cool:
</p>
<p>
<button
data-cal-link="ansonbiggs/tagup"
data-cal-namespace="tagup"
data-cal-config='{"layout":"month_view","theme":"dark"}'
>
Schedule a Call
</button>
</p>
<!--sse-->
<ul>
<li>
<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://astrodon.social/@anson" rel="me">Mastodon</a>
</li>
</ul>
<!--/sse-->
</section>
<section>
<h2>Personal Work</h2>
<p>
Explore my recent endeavors on my
<a href="https://notes.ansonbiggs.com">Blog</a>, see what I'm building
in public on my
<a href="https://gitlab.com/MisterBiggs">GitLab profile</a>, and see
technical breakdowns on my
<a href="https://projects.ansonbiggs.com">Projects Website</a>.
</p>
</section>
<footer>
<p>
For a comprehensive look at my professional journey, view my
<a href="/resume">resume</a>.
</p>
</footer>
</main>
</body>
<!-- Cal element-click embed code begins -->
<script type="text/javascript">
(function (C, A, L) {
let p = function (a, ar) {
a.q.push(ar);
};
let d = C.document;
C.Cal =
C.Cal ||
function () {
let cal = C.Cal;
let ar = arguments;
if (!cal.loaded) {
cal.ns = {};
cal.q = cal.q || [];
d.head.appendChild(d.createElement("script")).src = A;
cal.loaded = true;
}
if (ar[0] === L) {
const api = function () {
p(api, arguments);
};
const namespace = ar[1];
api.q = api.q || [];
if (typeof namespace === "string") {
cal.ns[namespace] = cal.ns[namespace] || api;
p(cal.ns[namespace], ar);
p(cal, ["initNamespace", namespace]);
} else p(cal, ar);
return;
}
p(cal, ar);
};
})(window, "https://app.cal.com/embed/embed.js", "init");
Cal("init", "tagup", { origin: "https://cal.com" });
// Important: Please add the following attributes to the element that should trigger the calendar to open upon clicking.
// `data-cal-link="ansonbiggs/tagup"`
// data-cal-namespace="tagup"
// `data-cal-config='{"layout":"month_view","theme":"dark"}'`
Cal.ns.tagup("ui", {
theme: "dark",
hideEventTypeDetails: false,
layout: "month_view",
});
</script>
<!-- Cal element-click embed code ends -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Anson Biggs",
"url": "https://ansonbiggs.com",
"sameAs": [
"https://gitlab.com/MisterBiggs",
"https://astrodon.social/@anson"
]
}
</script>
</html>

5
netlify.toml Normal file
View File

@@ -0,0 +1,5 @@
[build]
command = "python3 build.py"
publish = "site"

View File

@@ -1,79 +0,0 @@
// Gravitational Attraction
// The Nature of Code
// The Coding Train / Daniel Shiffman
// https://youtu.be/EpgB3cNhKPM
// https://thecodingtrain.com/learning/nature-of-code/2.5-gravitational-attraction.html
// https://editor.p5js.org/codingtrain/sketches/MkLraatd
class Mover {
constructor(mass, color_value) {
this.pos = createVector(Math.random() * width, Math.random()*height);
this.maxSpeed = 10;
this.vel = createVector(0, 0);
this.acc = createVector(0, 0);
this.mass = mass;
this.r = sqrt(this.mass) * 1;
this.col = color(color_value);
}
mouse_mass() {
if (focused) {
let force = p5.Vector.sub(createVector(mouseX, mouseY), this.pos);
let distanceSq = constrain(force.magSq(), 10, 1000);
let G = 3;
let strength = (G * this.mass * 10) / distanceSq;
force.setMag(strength);
this.applyForce(force);
noStroke();
fill(100, 255, 100, 100);
ellipse(mouseX, mouseY, 30);
}
}
attract(other) {
let force = p5.Vector.sub(this.pos, other.pos);
let distanceSq = constrain(force.magSq(), 10, 1000);
let G = 3;
let strength = (G * this.mass * other.mass) / distanceSq;
force.setMag(strength);
other.applyForce(force);
}
applyForce(force) {
let f = p5.Vector.div(force, this.mass);
this.acc.add(f);
}
edges() {
if (this.pos.y >= height - this.r) {
this.pos.y = height - this.r;
this.vel.y *= -1;
} else if (this.pos.y <= this.r) {
this.pos.y = this.r;
this.vel.y *= -1;
}
if (this.pos.x >= width - this.r) {
this.pos.x = width - this.r;
this.vel.x *= -1;
} else if (this.pos.x <= this.r) {
this.pos.x = this.r;
this.vel.x *= -1;
}
}
update() {
this.vel.add(this.acc);
this.vel.limit(this.maxSpeed);
this.pos.add(this.vel);
this.acc.set(0, 0);
}
show() {
noStroke();
fill(this.col);
ellipse(this.pos.x, this.pos.y, this.r * 2);
}
}

1
p5/p5.dom.min.js vendored

File diff suppressed because one or more lines are too long

15
p5/p5.min.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -1,69 +0,0 @@
// Gravitational Attraction
// The Nature of Code
// The Coding Train / Daniel Shiffman
// https://youtu.be/EpgB3cNhKPM
// https://thecodingtrain.com/learning/nature-of-code/2.5-gravitational-attraction.html
// https://editor.p5js.org/codingtrain/sketches/MkLraatd
p5.disableFriendlyErrors = true;
let movers = [];
let attractor;
var canvas;
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}
function setup() {
if (window.matchMedia("(prefers-reduced-motion: reduce)").matches) {
console.log("Respecting reduced motion preference.");
noLoop(); // Stops animation
return;
}
canvas = createCanvas(windowWidth, windowHeight);
canvas.position(0, 0);
canvas.style("z-index", "-1000");
const params = new URLSearchParams(window.location.search);
if (params.has("gay")) {
console.log('The "gay" parameter exists in the URL.');
movers[0] = new Mover(50, "#D12229");
movers[1] = new Mover(50, "#F68A1E");
movers[2] = new Mover(50, "#FDE01A");
movers[3] = new Mover(50, "#007940");
movers[4] = new Mover(50, "#24408E");
movers[5] = new Mover(50, "#732982");
} else {
movers[0] = new Mover(50, "red");
movers[1] = new Mover(60, "purple");
movers[2] = new Mover(40, "blue");
}
background(0);
}
function draw() {
const isDarkMode = window.matchMedia("(prefers-color-scheme: dark)").matches;
if (isDarkMode) {
background(0, 25);
} else {
background(255, 25);
}
for (let mover of movers) {
mover.mouse_mass();
for (let other of movers) {
if (mover !== other) {
mover.attract(other);
}
}
}
for (let mover of movers) {
mover.update();
mover.edges();
mover.show();
}
}

BIN
requirements.txt Normal file

Binary file not shown.

70
resume.md Normal file
View File

@@ -0,0 +1,70 @@
# Anson Biggs Portfolio
Aerospace Engineering Student at [Embry-Riddle Aeronautical University Prescott](http://prescott.erau.edu/)
## Contact
Email: <anson@ansonbiggs.com>
Phone: 480.322.8468
### Socials:
- [Thingiverse](https://www.thingiverse.com/AnsonB/about)
- [LinkedIn](https://www.linkedin.com/in/ansonbiggs/)
- [GitLab](https://gitlab.com/MisterBiggs)
- [blog](https://blog.ansonbiggs.com/)
## My Objective
I am an undergraduate Aerospace Engineering student with a focus on Astronautics and a minor in Electronic Engineering and Computer Science studying at Embry-Riddle Aeronautical University in Prescott, Arizona.
I am looking for and an internship to further my understanding of engineering for the summer of 2019.
## Education and Experience
### B.S. in Aerospace Engineering - Fall 2021 - Embry-Riddle GPA: - 2.48
- Area of concentration: Astronautics.
- Minor in Electrical Engineering
- Minor in Computer Science
### Expediter - The Hub - 2012-2019
Managed a team of kitchen and serving staff. Ensured product quality according to customer specifications. Made all documentation for how to clean and stock the front of the house portion of the kitchen, documentation is now used companywide at all three locations.
### Community College - 2015-2017 - Mesa Community College
- English Composition
- Technical Report Writing
- Circuit Analysis 1
- Technical Writing
## Things I Can Do
| <!-- --> | <!-- --> |
| -------------------- | ---------------------------------------------------------------------------------------------------- |
| Engineering Software | MATLAB, Python, VHDL, VIVADO, CATIA, Inventor, Fusion 360, SOLIDWORKS, Simplify 3D, Mesh Mixer, CURA |
| <!-- --> | <!-- --> |
| Office Software | Microsoft Word, Excel, PowerPoint, SharePoint, Outlook, OneNote, Publisher, Visio, Skype, Teams |
| <!-- --> | <!-- --> |
| Technical | Linux CLI, Git Version Control, 3D Printing, Docker, CI/CD, Regex |
## Accomplishments and Personal Projects
Listed below are some of my personal achievements and projects that I
have done in my free time.
### [3D Printing and Modeling](https://www.thingiverse.com/AnsonB/about)
Utilize a personal 3D Printer to prototype and iterate my own functional designs. Fusion 360 is my tool of choice for quick designs, but I am also very proficient with other software such as CATIA or Blender. This has quickly become my favorite hobby, whether its building a new idea from scratch or iterating an existing design.
I also maintain a pretty active account on [Thingiverse](https://www.thingiverse.com/AnsonB/about) where I contribute my designs to anyone who would like to use them.
### [My Personal Blog](https://blog.ansonbiggs.com/)
I manage a personal blog at [blog.ansonbiggs.com](https://blog.ansonbiggs.com) where I give detailed writeups on any of my projects that I think are worth sharing. Writing has been a great tool to force myself to learn because I do my best to make sure I understand any topics I write about so that myself and others can use them as references. The blog 100% a personal blog, it\'s more of a personal journal that I share with the world than it is a website that I am trying to advertise and monetize.
### [The Tegra K1 CUDA Vision Challenge](https://developer.nvidia.com/tk1-vision-challenge)
Nvidia held a competition involving computer vision to advertise their new development board that was compact had a built in GPU making it great for small computer vision based projects. My idea was to teach the computer to identify food for applications in the restaurant I worked in. Tools I used included OpenCV using Python, and all the pictures of food that I was able to scrape off the internet. I made it into the top 50 contestants but unfortunately ran into issues with the project that were ahead of my skill set at the time and wasn\'t able to compete further. It was great to work on a project where I was forced to teach myself almost the entire way through and I hope to revisit this project in the future as NVidia send me some more boards when I reached the top 50 of contestants.

File diff suppressed because one or more lines are too long

View File

@@ -1,56 +0,0 @@
body {
margin: 0;
padding: 0;
font-size: x-small;
}
p {
font-size: small;
}
dd {
margin-bottom: 0;
margin-top: 0;
}
dt {
margin-bottom: 0;
}
ul {
margin-bottom: 0;
}
li {
margin-top: 0;
padding: 0;
}
h1 {
margin: 0;
padding: 0;
}
h2 {
padding-top: 0;
margin-top: 0;
}
#noprint {
display: none;
visibility: hidden;
}
#printbutton {
display: none;
visibility: hidden;
}
/* #onlyprint {
display: block;
visibility: visible;
} */
#onlyprint {
display: none;
visibility: hidden;
}

View File

@@ -1,118 +0,0 @@
h2 {
text-transform: uppercase;
}
h2:after {
content: " ";
display: block;
margin: 5px auto 5px;
border: 2px solid #d0d0d0;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
p {
font-size: medium;
margin-left: 1em;
}
body {
max-width: 1000px;
/* margin: auto 15% 5em 10%; */
margin: auto;
padding-left: 2em;
padding-right: 2em;
padding-bottom: 5em;
}
h1 {
margin-top: 10px;
}
a:visited {
color: cornflowerblue;
}
dt {
margin-top: 0.5em;
}
dd {
margin-bottom: 0;
margin-left: 2em;
text-indent: -2em;
}
dd > ul {
text-indent: 0em;
margin-left: -5em;
}
/* dd::first-line {
text-indent: -2em;
} */
article {
border-radius: 20px;
background-color: whitesmoke;
width: 50%;
min-width: 350px;
box-shadow: 10px 10px 27px 5px rgba(0, 0, 0, 0.3);
}
article > a {
color: black;
text-decoration: none;
}
article > a:hover {
color: black;
}
article > a:visited {
color: black;
}
article > a > img {
width: 100%;
margin: 0;
padding: 0;
border-radius: 20px 20px 0px 0px;
}
article > a > h3 {
text-align: center;
text-decoration: none;
margin: auto 0.25em 0.25em 0.25em;
padding-top: 1.25em;
}
article > a > p {
padding: 0 0.25em 1em 0.25em;
}
#printbutton {
font-size: 150%;
margin: 1.5em;
position: fixed;
bottom: 0;
right: 0;
z-index: 100;
background-color: lightskyblue;
animation: pulse-animation 10s infinite;
}
@keyframes pulse-animation {
0% {
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
}
20%,
100% {
box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
}
}
#onlyprint {
visibility: hidden;
display: none;
}

View File

@@ -1,264 +0,0 @@
<!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 is an aerospace simulation software engineer making humanity multiplanetary as an engineer at Blue Origin"
/>
<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"
media="print"
href="./css/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>"
/>
<link
rel="alternate"
type="application/rss+xml"
title="Less Technical Blog"
href="https://notes.ansonbiggs.com/rss/"
/>
<link
rel="alternate"
type="application/rss+xml"
title="Technical Blog"
href="https://projects.ansonbiggs.com/index.xml"
/>
</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">
Aerospace Simulation Software Engineer
<!--sse-->
<br />
<a href="mailto:anson@ansonbiggs.com" rel="me">anson@ansonbiggs.com</a>
| <a href="tel:+14803228468">(480) 322-8468</a> |
<a href="https://linkedin.com/in/ansonbiggs" rel="me"
>linkedin.com/in/ansonbiggs</a
>
<br />
<a href="https://gitlab.com/MisterBiggs" rel="me"
>gitlab.com/MisterBiggs</a
>
|
<a href="https://ansonbiggs.com" rel="me">ansonbiggs.com</a>
<div
class="h-card"
style="visibility: hidden; position: absolute; top: -999999px"
>
<span class="p-name">Anson Biggs</span>
<span class="p-given-name">Anson</span>
<span class="p-family-name">Biggs</span>
<a class="u-url" href="https://ansonbiggs.com"></a>,
<a class="u-email" href="mailto:anson@ansonbiggs.com"></a>
<abbr class="p-region" title="Colorado">CO</abbr>
<div class="p-country-name">U.S.A</div>
<div class="p-category">engineer</div>
<div class="p-note">Aerospace Simulation Software Engineer</div>
</div>
<!--/sse-->
</h3>
</div>
<br />
<h2>PROFESSIONAL EXPERIENCE</h2>
<dl>
<dt>
Aerospace Applications Software Engineer | Blue Origin | Denver, CO |
June 2023 - April 2025
</dt>
<dd>
<ul>
<li>
Early hire for the Lunar Permanence Business unit, established to
fulfill a NASA contract to build a human-rated lunar lander, where I
served as a core member of the simulation software team.
</li>
<li>
Pathfinded hardware mocking capabilities in C++ that enabled a
completely software simulation environment.
</li>
<li>
Created bespoke test case management software in Python for writing,
publishing and tracking. I solely developed this project and leaned
heavily on the idea of fully automating processes, and working
closely with stakeholders to understand needs and blockers. Final
product led to an immediate 10x increase in productivity month over
month.
</li>
<li>
Owned development environment for flight software teams, eliminating
setup friction and reducing onboarding time from days to an hour.
Consistently pushed for modern tooling and evolved workflows to meet
demands of a growing team.
</li>
<li>
Split time working within customer teams to ensure simulation
software capabilities met testing requirements. Proactively
developed features to eliminate critical roadblocks in the
verification process, and provided ongoing technical guidance.
</li>
<li>
<strong>Technologies used:</strong> Python, Pytest, Pandas, NumPy,
C++, Docker Compose, Docker Dev Containers, GitLab CI/CD, NASA
Trick, Kanban
</li>
</ul>
</dd>
</dl>
<dl>
<dt>
Simulation Software Engineer, Advanced Programs | United Launch Alliance
| Denver, CO | May 2022 - June 2023
</dt>
<dd>
<ul>
<li>
Architected and delivered the first C++ simulation model for
Vulcan-Centaur rocket that was recognized as one of United Launch
Alliance's major technical achievements of 2022.
</li>
<li>
Modernized a legacy monolithic codebase from the 1980s by replacing
~700k lines of unmaintainable FORTRAN with compiled artifacts. This
change massively improved compilation performance of the codebase,
and allowed streamlining tooling to increase developer productivity.
</li>
<li>
Implemented the team's first CI/CD pipeline to enforce code quality
and introduce automated checks.
</li>
<li>
<strong>Technologies used:</strong> C++, gTest, Matlab, FORTRAN,
Simulink, Python, Atlassian Suite, Redhat Linux, Agile
</li>
</ul>
</dd>
</dl>
<h2>PROJECT LEADERSHIP</h2>
<dl>
<dt>
Founder & Lead Developer | Simple Stock Bots | Phoenix, AZ | 2018 - 2024
</dt>
<dd>
<ul>
<li>
Developed a stock market bot in Python that delivers real-time data
and analysis to group chats with tens of thousands of monthly active
users.
</li>
<li>
Managed paid client feature requests with broader platform
improvements to maintain a sustainable business model while keeping
the product entirely free for over 99% of users.
</li>
<li>
Used CI/CD to automatically build, publish, and deploy latest
commits to a Kubernetes Cluster. Canary and stable releases were
automatically managed and rolled out.
</li>
</ul>
</dd>
<dt>
Undergraduate Research Lead | Orbital Debris Classification | Prescott,
AZ | 2021
</dt>
<dd>
<ul>
<li>
Led research applying machine learning to high-resolution 3D scans
of satellite impact debris, developing an innovative Orbital Debris
model in collaboration with the Dean of Engineering, University
Research Institute and NASA.
</li>
<li>
Developed algorithms in Rust to take point clouds from hi-res 3D
scanners and convert them into solid body meshes to compute physical
characteristics of debris fragments.
</li>
<li>
Implemented advanced dimensionality reduction techniques in Julia
that improved classification accuracy and speed by magnitudes over
MATLAB.
</li>
</ul>
</dd>
<dt>
Technical Lead | Capstone: Spacecraft Detail Design | Prescott, AZ |
2021
</dt>
<dd>
Developed a fully dynamic 6 degree of freedom simulation of a rocket
landing that was verified with real hardware. Demonstrated design with
test stand using a real thrust vector control mechanism and a solid
rocket motor.
</dd>
<dt>Leader | The Hub Grill and Bar | Mesa, AZ | 2012 - 2021</dt>
<dd>
Started as a dishwasher and worked my way up to kitchen management and
eventually to project management for new restaurants.
</dd>
<dd>
As project manager, led new location openings from empty buildings
through construction, menu design, vendor setup, staff hiring/training,
and operational handoff.
</dd>
</dl>
<h2>EDUCATION, SKILLS, AND AWARDS</h2>
<dl>
<dt>
B.S. Aerospace Engineering | Embry-Riddle Aeronautical University |
Prescott, AZ | May 2022
</dt>
<dd>
Bachelor of Science in Aerospace Engineering (Astronautics
Concentration) with a minor in Computer Science
</dd>
<dd>
1 Year Data Science Directed Study | Summer Study Abroad for Mathematics
in Iceland
</dd>
</dl>
<!-- <h2>SKILLS AND TOOLS</h2> -->
<dl>
<dt>Languages and Technologies</dt>
<dd>
<ul>
<li>
Python, C++, Julia, Rust, Docker, MATLAB, Simulink, FORTRAN, LaTeX,
Regex, Shell, Markdown, Mermaid
</li>
<li>
Pytest, Plotly, NumPy, Pandas, Matplotlib, Makie, Jupyter, SymPy,
UV, Pip, Requests, Serverless, DASK, CUDA, MkDocs, Ruff, Black,
flake8
</li>
<li>
Linux, WSL, Docker Compose, Development Containers, Kubernetes,
Serverless, GitLab CI/CD, DataDog, NASA Trick, DDS, MQTT, Jira
</li>
</ul>
</dd>
<dt>Awards</dt>
<dd>
<ul>
<li>Discord | Verified Bot Developer 2018</li>
<li>NVIDIA | Tegra K1 CUDA Vision Challenge, Top 50 | 2015</li>
</ul>
</dd>
</dl>
</body>
</html>

1
runtime.txt Normal file
View File

@@ -0,0 +1 @@
3.7

237
style.css Normal file
View File

@@ -0,0 +1,237 @@
* {
margin: 0;
}
abbr,
acronym,
blockquote,
code,
dir,
kbd,
listing,
plaintext,
q,
samp,
tt,
var,
xmp {
hyphens: none;
}
html {
padding: 2em;
font: normal 18px/1.25 Source Sans Pro, sans-serif;
color: #000;
hyphens: auto;
word-wrap: break-word;
background: #fff;
}
body > :first-child {
margin-top: 0;
}
/* @group Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1;
margin: 0;
margin-top: 1.5rem;
text-rendering: optimizeLegibility;
}
h1 {
margin-top: 5rem;
font-size: 2.75rem;
text-align: center;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.65rem;
}
h4 {
font-size: 1.25rem;
}
h5 {
font-size: 1.1rem;
}
h6 {
font-size: 1rem;
}
h2 em,
h3 em {
color: grey;
}
/* @end */
small {
font-size: 65%;
}
p {
margin-top: 0.75rem;
}
hr {
margin: 0.75rem 0;
opacity: 0.5;
}
ol,
ul {
margin-top: 0.75rem;
}
ol ul,
ol ol,
ul ul,
ul ol {
margin-left: 2rem;
margin-bottom: 0.75rem;
}
li {
margin: 0.5em 0;
}
abbr {
font-variant: small-caps;
font-weight: 600;
text-transform: lowercase;
color: #808080;
}
abbr[title]:hover {
cursor: help;
}
/* @group Block Quotes */
blockquote {
border-left: 5px solid #333;
padding-left: 0.75em;
margin-left: calc(-0.75em - 5px);
font-style: italic;
}
blockquote + figcaption {
display: block;
margin-top: -1.5rem;
margin-bottom: 1.5rem;
font-size: 75%;
text-align: right;
}
blockquote + figcaption:before {
content: "— ";
opacity: 0.05;
}
/* @end */
/* @group Pre-formatted and Code */
pre {
overflow: auto;
margin: 0.75rem 0;
padding: 0.5rem;
font-size: 0.875em;
white-space: pre;
background-color: #f8f8f8;
border: 1px solid #ccc;
border-radius: 3px;
}
code {
padding: 0 0.25em;
white-space: pre;
font-family: Source Code Pro, monospace;
background-color: #f8f8f8;
border: 1px solid #ccc;
border-radius: 3px;
}
pre code {
padding: 0;
word-wrap: normal;
white-space: pre-wrap;
}
pre code,
pre tt {
background-color: transparent;
border: none;
}
/* @end */
/* @group Tables */
table {
margin: 0.75rem 0;
padding: 0;
border-collapse: collapse;
}
table tr {
margin: 0;
padding: 0;
border-top: 1px solid #ccc;
background-color: #fff;
}
table tr:nth-child(2n) {
background-color: #f8f8f8;
}
table tr th {
margin: 0;
padding: 0.35em 0.75em;
font-weight: bold;
text-align: left;
border: 1px solid #ccc;
}
table tr td {
margin: 0;
padding: 0.35em 0.75em;
text-align: left;
border: 1px solid #ccc;
}
table tr th :first-child,
table tr td :first-child {
margin-top: 0;
}
table tr th :last-child,
table tr td :last-child {
margin-bottom: 0;
}
/* @end */