-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
115 lines (115 loc) · 4.46 KB
/
resume.html
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
<!DOCTYPE html>
<html>
<head>
<title>Kyle's Resume</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Kyle Taschek</a>
<link rel="stylesheet" href="style.css" />
</h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</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>
</ul>
</nav>
<main>
<h1 class="page-title">Resume</h1>
<div class="resume-button">
<a href="files/resume.pdf" download>Download Resume</a>
</div>
<div class="resume-container">
<div class="resume">
<section class="sections">
<h2 class="section-title">Education</h2>
<div class="entry">
<h3 class="entry-title">
California Polytechnic State University, San Luis Obispo
</h3>
<p class="entry-info">
<strong>Computer Science </strong><br />
<strong>Expected Graduation:</strong> June 2025<br />
<strong>GPA:</strong> 3.93/4.00
</p>
</div>
</section>
<section class="sections">
<h2 class="section-title">Course Work</h2>
<ul class="course-list">
<li>Data Structures</li>
<li>Introduction to Computer Organization</li>
<li>Project-Based Object-Oriented Programming and Design</li>
<li>Systems Programming</li>
<li>Design and Analysis of Algorithms,</li>
<li>Introduction to Software Engineering</li>
</ul>
</section>
<section class="sections">
<h2 class="section-title">Skills</h2>
<ul class="course-list">
<li>CSS3 and HTML5</li>
<li>Java</li>
<li>Python</li>
<li>C</li>
<li>Javascript</li>
<li>streamlit</li>
</ul>
</section>
<section class="sections">
<h2 class="section-title">Experience</h2>
<div class="entry">
<h3 class="entry-title">
Persistent Systems Software Engineer Intern
</h3>
<p class="entry-info">
Languages and Technologies: Python, Streamlit, PandasAI,
Langchain | August-September 2023
</p>
<p class="entry-description">
- Developed WebApp for conversational interaction with Instacart
data.<br />
- Employed Streamlit as the web application framework to develop
an interactive user interface.<br />
- Used Langchain’s Pandas dataframe agent to handle data queries
with OpenAI’s gpt-4.
</p>
</div>
</section>
<section class="sections">
<h2 class="section-title">Projects</h2>
<div class="entry">
<h3 class="entry-title">SLO Hacks 2023 Hackathon</h3>
<p class="entry-info">Space Ops Game Design | May 2023</p>
<p class="entry-description">
- Created Rock Paper Scissors Web Application using computer
vision through Google Teachable Machine to use body positions to
determine correct move.<br />
- Used React.js, Socket.IO, and various UI libraries
</p>
</div>
<div class="entry">
<h3 class="entry-title">Personal Website</h3>
<p class="entry-info">October 2023</p>
<p class="entry-description">
- Created Stylized personal website usinng HTML and CSS<br />
- Focused on semantic HTML design <br />
- Implemented best practices for Git and Github
</p>
</div>
</section>
</div>
</div>
</main>
<footer class="footer">"© 2023 Kyle Taschek | All Rights Reserved"</footer>
</body>
</html>