diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..262e537 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,19 @@ +image: nixos/nix:latest + +stages: + - build + +variables: + NIX_CONFIG: "experimental-features = nix-command flakes" + +before_script: + - git submodule update --init --recursive + +build-zola-site: + stage: build + script: + - nix develop --command zola build + artifacts: + paths: + - public/ + expire_in: 1 week diff --git a/content/resume/_index.md b/content/resume/_index.md index 76876be..df3d445 100644 --- a/content/resume/_index.md +++ b/content/resume/_index.md @@ -1,8 +1,49 @@ +++ -title = "Aaron Honeycutt Resume" -description = "My resume." -template = "projects.html" +title = "Resume of Aaron Honeycutt" +description = "resume" +template = "prose.html" +insert_anchor_links = "none" [extra] lang = 'en' + +title = "Resume" + +math = false +mermaid = false +copy = false +comment = false +reaction = false +++ + +# [York Space Systems](https://www.yorkspacesystems.com/) +## Flight Software Developer 1 (Mar 2025 - Current) +- Maintaining Linux distro + - Update software to address CVEs + - Manually apply patches to address CVEs +- Update documentation such as... + - Build systems + - Release processes + - Testing processes + +# [System76 Inc](https://system76.com/) +## Happiness Architect (May 2022 - Mar 2025) +### Tier 2 Tech Support +- Provide technical support over the phone and ticket system for Tier 2 issues + - Assist with printer/scanner setup + - Assist with firmware update issues + +- Fill in for manager when needed + +## Happiness Engineer (Sept 2017 - May 2022) +### Tier 1 Tech Support +- Provide technical support over the phone and ticket system for Tier 1 issues + - Assist with printer/scanner setup + +- Assist with computer building and testing with hardware team + +- Update documenation such as... + - Upgrading OS and install software + - Using their new desktop, laptop + - Using new software such as replacements for Microsoft Office + diff --git a/content/resume/data.toml b/content/resume/data.toml deleted file mode 100644 index 332e081..0000000 --- a/content/resume/data.toml +++ /dev/null @@ -1,23 +0,0 @@ -[[project]] - name = "Flight Software Developer 1" - desc = "Maintaining Linux distro" - tags = [ "latest" ] - links = [ - { name = "York Space Systems", url = "https://www.yorkspacesystems.com/" } - ] - -[[project]] - name = "Happiness Architect" - desc = "Tier 2 : Supporting humans who support humans with Linux" - tags = [ "previously" ] - links = [ - { name = "System76", url = "https://system76.com/" } - ] - -[[project]] - name = "Happiness Engineer" - desc = "Tier 1 : Supporting humans with Linux" - tags = [ "previously" ] - links = [ - { name = "System76", url = "https://system76.com" } - ] diff --git a/flake.nix b/flake.nix index 25d9d18..f5b2592 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "Flake to build and develop Nyxi"; + description = "Flake to build and work on my zola blog"; inputs = { flake-utils.url = "github:numtide/flake-utils";