From 00416a17242d7f979383bfee0d39825bfd710ef3 Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Thu, 18 Sep 2025 13:24:08 -0400 Subject: Content updates (#394) * config.json: Update email * devcontainer.json: Update devcontainer image for Bookworm, nodejs 22 * devcontainer.json: Support podman with container user settings * index.njk: Update recent technology experience * page.njk: Update copy year to 2025 * fingerprint.svg: Add new fingerprint icon * styles.css: Add fingerprint icon class * index.njk: Switch pantry link for public key link * styles.css: Remove code icon class * code.svg: Remove code icon * index.njk: Fix icon name --- src/pages/index.njk | 8 ++++---- src/static/icons/code.svg | 4 ---- src/static/icons/fingerprint.svg | 4 ++++ src/static/styles.css | 4 ++-- src/templates/layouts/page.njk | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) delete mode 100644 src/static/icons/code.svg create mode 100644 src/static/icons/fingerprint.svg (limited to 'src') diff --git a/src/pages/index.njk b/src/pages/index.njk index ea7a9a2..7b43aa0 100644 --- a/src/pages/index.njk +++ b/src/pages/index.njk @@ -6,7 +6,7 @@ layout: layouts/page.njk

I'm a computer science and math graduate from Millersville University. I work as a Solutions Architect and specialize in development operations and systems validation for web applications.

During my time at Millersville I was the lead Linux admin for the Cyber Defense Organization (CDO). In addition to constructing a new computer lab for our efforts, we participated in NCL and MACCDC.

-

Most of my development experience is focused around full stack development. For the front-end I use TypeScript and ReactJS using create-react-app or NextJS. For back-end systems I have used both Java with Spring Boot and rust with actix-web extensively. To mediate APIs I have used Apache Kafka, OpenAPI, and GraphQL.

+

Most of my development experience is focused around full stack development. For the front-end I use TypeScript and ReactJS using Vite. For back-end systems I have used both Java with Spring Boot and Quarkus frameworks extensively. To mediate APIs I have used Apache Kafka, OpenAPI, and GraphQL.

My free time is spent engaging in general computing hobbies. When I'm not trying out new application frameworks, I am fiddling around with Guix or NixOS. I run a kubernetes cluster at home to manage, maintain, and secure my personal network as well as experimenting with distributed workloads.

- Kevin H.
@@ -17,9 +17,9 @@ layout: layouts/page.njk
- - - Pantry (pet project) + + + OpenPGP Identity
diff --git a/src/static/icons/code.svg b/src/static/icons/code.svg deleted file mode 100644 index ddd0a7d..0000000 --- a/src/static/icons/code.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/src/static/icons/fingerprint.svg b/src/static/icons/fingerprint.svg new file mode 100644 index 0000000..f743804 --- /dev/null +++ b/src/static/icons/fingerprint.svg @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/src/static/styles.css b/src/static/styles.css index a9aa9d5..d1fef16 100644 --- a/src/static/styles.css +++ b/src/static/styles.css @@ -52,8 +52,8 @@ i.icon { filter: invert(37%) sepia(0%) saturate(1906%) hue-rotate(177deg) brightness(97%) contrast(72%); } -i.icon.fa-code { - background-image: url(icons/code.svg); +i.icon.fa-fingerprint { + background-image: url(icons/fingerprint.svg); } i.icon.fa-github { background-image: url(icons/github.svg); diff --git a/src/templates/layouts/page.njk b/src/templates/layouts/page.njk index 488add4..f200102 100644 --- a/src/templates/layouts/page.njk +++ b/src/templates/layouts/page.njk @@ -1,5 +1,5 @@ --- -copyYear: 2024 +copyYear: 2025 author: kjhoerr description: The official website of Kevin Hoerr, developer of websites. themeColor: "#e1e1e1" -- cgit