blob: 71287208bcd8b74c03cc6d1cc660ecf590e20eba (
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
|
import React from "react";
import { StaticImage } from "gatsby-plugin-image";
import { 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 experience
using Java with Spring Boot and rust with actix-web. To mediate APIs I
have used Apache Kafka, OpenAPI, and GraphQL.
</p>
<p>
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.
</p>
<em>- Kevin H.</em>
</BlockBody>
<BlockLink
href="https://cybr.es/@kjhoerr"
rel="me"
aria-label="My Mastodon account"
>
<FaMastodon /> @kjhoerr@cybr.es
</BlockLink>
<BlockLink
href="https://github.com/kjhoerr"
rel="me"
aria-label="My GitHub account with my most active personal projects"
>
<FaGithub /> kjhoerr on GitHub
</BlockLink>
</Layout>
);
};
export default IndexPage;
export { Head } from "../components/SEO";
|