From 4121d833717f0ec4043cdf054e7bdcd3f7e07858 Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Wed, 22 Feb 2023 17:04:52 -0500 Subject: Updates for 2023 (#102) * Updates for 2023 * Additional tweaks --- package-lock.json | 2 +- src/components/Layout.tsx | 2 +- src/pages/index.tsx | 36 +++++++++++++++++++++--------------- 3 files changed, 23 insertions(+), 17 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9d7d351..6f0b0a7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -36,7 +36,7 @@ "eslint-config-prettier": "^8.6.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.32.1", - "typescript": "*" + "typescript": "latest" } }, "node_modules/@ampproject/remapping": { diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4f93fec..fec336f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -22,7 +22,7 @@ const Layout = ({ children }: LayoutProps) => { diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 7128720..fe407c4 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,6 +1,6 @@ import React from "react"; import { StaticImage } from "gatsby-plugin-image"; -import { FaGithub, FaMastodon } from "react-icons/fa"; +import { FaCode, FaGithub, FaMastodon } from "react-icons/fa"; import { BlockLink, Layout } from "../components"; import { BlockBody, BlockHeader } from "../styles"; @@ -32,32 +32,38 @@ const IndexPage = (): React.ReactElement => {

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 experience - using Java with Spring Boot and rust with actix-web. To mediate APIs I - have used Apache Kafka, OpenAPI, and GraphQL. + 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.

- My free time is spent around 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 in conjunction with experimenting with - distributed workloads. + 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. - @kjhoerr@cybr.es + kjhoerr on GitHub + Pantry (pet project) + + - kjhoerr on GitHub + @kjhoerr@cybr.es ); -- cgit