blob: fe407c400a4cfc3377deec63986a018bbfca3b04 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
import React from "react";
import { StaticImage } from "gatsby-plugin-image";
import { FaCode, FaGithub, FaMastodon } from "react-icons/fa";
import { BlockLink, Layout } from "../components";
import { BlockBody, BlockHeader } from "../styles";
const IndexPage = (): React.ReactElement => {
return (
<Layout>
<div>
<StaticImage
src="../images/main.png"
alt="Picture of Kevin Hoerr"
placeholder="blurred"
layout="fixed"
width={350}
height={350}
/>
</div>
<BlockHeader>Hello!</BlockHeader>
<BlockBody>
<p>
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.
</p>
<p>
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.
</p>
<p>
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.
</p>
<p>
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.
</p>
<em>- Kevin H.</em>
</BlockBody>
<BlockLink
href="https://github.com/kjhoerr"
rel="me"
aria-label="My GitHub account with my most active personal projects"
>
<FaGithub /> kjhoerr on GitHub
</BlockLink>
<BlockLink
href="https://github.com/kjhoerr/pantry"
aria-label="Source code repository of Kevin's current pet project Pantry"
>
<FaCode /> Pantry (pet project)
</BlockLink>
<BlockLink
href="https://cybr.es/@kjhoerr"
rel="me"
aria-label="My Mastodon account"
>
<FaMastodon /> @kjhoerr@cybr.es
</BlockLink>
</Layout>
);
};
export default IndexPage;
export { Head } from "../components/SEO";
|