-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
151 lines (150 loc) · 5.26 KB
/
index.html
File metadata and controls
151 lines (150 loc) · 5.26 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!doctype html>
<html lang="en">
<head>
<title>Ryan Schmitt</title>
<link rel="stylesheet" href="styles.css" />
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
</head>
<body>
<nav class="navbar">
<h1 class="logo"><a href="index.html">Ryan Schmitt</a></h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
<li>
<a
class="nav-icon"
href="https://github.com/RyanSchmit"
target="_blank"
rel="noopener"
aria-label="GitHub"
><i class="fa-brands fa-github"></i
></a>
</li>
<li>
<a
class="nav-icon"
href="https://www.linkedin.com/in/ryan-schmitt-cp/"
target="_blank"
rel="noopener"
aria-label="LinkedIn"
><i class="fa-brands fa-linkedin"></i
></a>
</li>
<li>
<a
class="nav-icon"
href="mailto:rtschmit@calpoly.edu"
aria-label="Email"
><i class="fa-solid fa-envelope"></i
></a>
</li>
</ul>
</nav>
<main>
<div class="about">
<div class="about-image">
<img src="ryan.jpg" alt="A picture of Ryan Schmitt" />
</div>
<div class="about-text">
<h1 class="about-name">Ryan Schmitt</h1>
<p class="tagline">
Software engineer focused on AI-powered full-stack products
</p>
<p>
I'm a 4th-year Computer Science student at Cal Poly SLO, originally
from Long Island, New York. I'm drawn to problems at the
intersection of AI and practical tooling — particularly building
systems that make complex data fast to query and easy to act on.
</p>
<p>
My strongest skills span Python, TypeScript, React, and cloud
services like AWS S3, Amazon Bedrock, and OpenSearch. I've applied
them across internships in product management and software
engineering, and I led the cybersecurity track of a team that won
first place at the Digital Transformation AI Hackathon. Most
recently, I've been working on a full-stack web application that
allows users to track their spending and savings goals, and a
finance chatbot that allows users to ask questions about their
finances in a natural language interface.
</p>
<p>
I enjoy the full arc of a product — from whiteboarding the data
model to shipping a clean UI. Outside of code, you'll find me
surfing, lifting, or on the golf course.
</p>
<p class="seeking">
Currently seeking new grad software engineering roles.
</p>
<div class="social-links">
<a
href="https://github.com/RyanSchmit"
target="_blank"
rel="noopener"
aria-label="GitHub"
>
<i class="fa-brands fa-github"></i>
</a>
<a
href="https://www.linkedin.com/in/ryan-schmitt-cp/"
target="_blank"
rel="noopener"
aria-label="LinkedIn"
>
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="mailto:rtschmit@calpoly.edu" aria-label="Email">
<i class="fa-solid fa-envelope"></i>
</a>
</div>
</div>
</div>
<section class="skills-section">
<h2>Skills</h2>
<div class="skills-grid">
<div class="skill-category">
<h3>Languages</h3>
<div class="taglist">
<span class="tag">Python</span>
<span class="tag">JavaScript</span>
<span class="tag">Java</span>
<span class="tag">SQL</span>
<span class="tag">HTML</span>
<span class="tag">CSS</span>
</div>
</div>
<div class="skill-category">
<h3>Frameworks & Libraries</h3>
<div class="taglist">
<span class="tag">React</span>
<span class="tag">TypeScript</span>
<span class="tag">Flutter</span>
<span class="tag">Firebase</span>
</div>
</div>
<div class="skill-category">
<h3>Cloud & Tools</h3>
<div class="taglist">
<span class="tag">AWS S3</span>
<span class="tag">Amazon Bedrock</span>
<span class="tag">OpenSearch</span>
<span class="tag">Git</span>
<span class="tag">GitHub</span>
<span class="tag">Figma</span>
<span class="tag">Excel</span>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
© 2025–2026 Ryan Schmitt | All Rights Reserved
</footer>
</body>
</html>