-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (121 loc) · 3.53 KB
/
index.html
File metadata and controls
126 lines (121 loc) · 3.53 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Kyle Ketterer | Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/png" href="/assets/k_logo.png" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-X5RCT38WQT"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-X5RCT38WQT");
</script>
</head>
<body>
<header>
<h1>Kyle Ketterer</h1>
<p>
Computer Science | Full Stack Developer | AI | Cybersecurity | Software
Engineer
</p>
</header>
<section id="about">
<h2>About Me</h2>
<p>
I'm a recent Penn State CS graduate with experience in full stack
development, machine learning, and Cybersecurity. I enjoy building tools
that solve real-world problems.
</p>
</section>
<section id="projects">
<h2>Projects & Accomplishments</h2>
<ul>
<li>
<strong
><a
href="https://nittanyai.psu.edu/alliance-programs/nittany-ai-challenge/results/"
target="_blank"
>Nittany AI Challenge Winner</a
>:</strong
>
BioWatch, a tool for invasive species detection.
</li>
<li>
<strong
><a
href="https://www.trb.org/ACRP/designwinners2024.aspx"
target="_blank"
>ACRP Challenge Winner</a
>:</strong
>
Reduced airplane taxiing time with AI predictions.
</li>
<li>
<strong
><a
href="https://csrai.psu.edu/initiatives/cheat-a-thon"
target="_blank"
>Cheat-a-Thon Winner</a
>:</strong
>
Evaluated generative AI answering capabilities
</li>
<li>
<strong>Penn State Division 1 Men's Soccer:</strong> Walked on to the
team in 2023.
</li>
<li>
<strong>FTC Robotics - Team Two Eyed Illuminati:</strong>
Reached the Pennsylvania State Championship for designing and
programming autonomous & driver-controlled robots.
</li>
</ul>
</section>
<section id="links">
<h2>Links</h2>
<ul>
<li>
<!-- LinkedIn Click -->
<a
href="https://www.linkedin.com/in/kyle-ketterer"
target="_blank"
onclick="gtag('event', 'click_linkedin', {
event_category: 'engagement',
event_label: 'linkedin_profile'
});"
>
LinkedIn
</a>
</li>
<li>
<!-- Resume Click -->
<a
href="/assets/Kyle_Ketterer_Resume.pdf"
target="_blank"
onclick="gtag('event', 'click_resume', {
event_category: 'engagement',
event_label: 'resume.pdf'
});"
>
Resume
</a>
</li>
<li>
<a href="https://github.com/Porkroll7" target="_blank">GitHub</a>
</li>
</ul>
</section>
<footer>
<p>© 2025 • <a href="/privacy.html">Privacy Policy</a></p>
</footer>
</body>
</html>