From 33524298fd0f8dce67cab0d803ebf94e6a3097bc Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 19 Nov 2025 16:07:57 -0700 Subject: [PATCH 1/5] use about page instead --- content/resume/_index.md | 29 ++++++++++++++++++++++++++--- content/resume/data.toml | 23 ----------------------- 2 files changed, 26 insertions(+), 26 deletions(-) delete mode 100644 content/resume/data.toml diff --git a/content/resume/_index.md b/content/resume/_index.md index 76876be..f9d9cb7 100644 --- a/content/resume/_index.md +++ b/content/resume/_index.md @@ -1,8 +1,31 @@ +++ -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 +- Maintaining Linux distro + +# [System76 Inc](https://system76.com/) +## Happiness Architect +### Tier 2 Tech Support +- Supporting humans who support humans with Linux + +## Happiness Engineer +### Tier 1 Tech Support +- Supporting humans with Linux + 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" } - ] From be3dd2a6ecf572eb8b0b23b3068577c8e5342e49 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 19 Nov 2025 16:16:11 -0700 Subject: [PATCH 2/5] add more info --- content/resume/_index.md | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/content/resume/_index.md b/content/resume/_index.md index f9d9cb7..df3d445 100644 --- a/content/resume/_index.md +++ b/content/resume/_index.md @@ -17,15 +17,33 @@ reaction = false +++ # [York Space Systems](https://www.yorkspacesystems.com/) -## Flight Software Developer 1 +## 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 +## Happiness Architect (May 2022 - Mar 2025) ### Tier 2 Tech Support -- Supporting humans who support humans with Linux +- 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 +## Happiness Engineer (Sept 2017 - May 2022) ### Tier 1 Tech Support -- Supporting humans with Linux +- 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 From bb35416fd6fd96553b40de1e4f141ade3de69b07 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 19 Nov 2025 16:19:26 -0700 Subject: [PATCH 3/5] add CI --- .gitlab-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..3fdac5f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +image: nixos/nix:latest + +stages: + - build + +variables: + NIX_CONFIG: "experimental-features = nix-command flakes" + +before_script: + - git submodule update --init --recursive + +build-zola-theme: + stage: build + script: + - nix develop + - zola build + artifacts: + paths: + - public/ + expire_in: 1 week From 7f6fbc76a07ca3837473a332e776159a8ce8b227 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 19 Nov 2025 16:27:26 -0700 Subject: [PATCH 4/5] update desc for flake --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; From 404be26e7276cfe0d933f7867602fb02df6c1c97 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 19 Nov 2025 16:28:51 -0700 Subject: [PATCH 5/5] fix CI --- .gitlab-ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3fdac5f..262e537 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,11 +9,10 @@ variables: before_script: - git submodule update --init --recursive -build-zola-theme: +build-zola-site: stage: build script: - - nix develop - - zola build + - nix develop --command zola build artifacts: paths: - public/