Skip to content

Commit

Permalink
chore: update resume
Browse files Browse the repository at this point in the history
  • Loading branch information
katlyn committed Jan 26, 2024
1 parent baa232b commit c76bbc3
Showing 1 changed file with 104 additions and 92 deletions.
196 changes: 104 additions & 92 deletions src/resume.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,98 +63,110 @@ interface ResumeData {

const resumeData: ResumeData = {
contact: env.contact,
skills: [{
name: "Full Stack Development",
values: [
"Vue.JS",
"React",
"JQuery",
"Javascript and Typescript",
"Node.js",
"Python",
"CSS / SASS"
]
}, {
name: "Software",
values: [
"OmniCMS",
"Docker",
"Linux Server Administration",
"Dell CMC & iDRAC",
"Figma"
]
}],
education: [{
award: "Bachelor of Computer Science",
school: "University of Alaska Fairbanks",
startDate: "2019",
blurb: "Covers the fundamentals of programming, hardware, and theory; with an emphasis on real-world application. Completed courses include Computer Science I & II, Data Structures and Algorithms, Computer Hardware Concepts, Programming Languages, Computer and Network Security."
}, {
award: "High School Diploma",
school: "Frederick High School",
endDate: "2018"
}],
experience: [{
title: "Student Assistant",
company: "University of Alaska, OIT Platforms, Applications, & Web Services Team",
startDate: "Nov 2019",
description: "Support staff, faculty, and student requests through web development and server administration.",
skills: [
"OmniCMS",
"Javascript",
"Typescript",
"Python",
"API Development"
],
bullets: [
"Architect, design, and implementation of a web application for internal use in managing data for the UA Scholars scholarship designation.",
"Facilitate research of teacher retention in rural Alaska through maintenance of K-12 Platform, allowing to better prepare incoming education staff for their positions.",
"Maintain and build out the University website to increase usability and accessibility."
]
}],
projects: [{
name: "UAF Students Discord",
topic: "Education community management",
skills: [
"TypeScript",
"Ruby",
"Docker"
],
description: "Moderation and maintenance of a Discord group and associated tools that provides communication tools for UAF students and professors",
bullets: [
"Completed the migration of a Ruby-based chatbot to TypeScript running within Docker",
"Created a web interface that allows students to select courses they are participating in and would like receive updates for.",
"Communicated with departments and faculty across UAF to determine and satisfy user needs and wants."
],
startDate: "Oct 2019"
}, {
name: "UAF Cyber Security Club",
topic: "Education",
skills: [
"VMware vSphere",
"ESXi",
"Dell CMC",
"Networking",
"Communication"
],
description: "Creation and presentation of lectures regarding cyber Security, as well as maintenance of club infrastructure.",
bullets: [
"Configuration of a Dell M1000e and associated blade servers.",
"Configuration of VMware software for a virtual machine cluster.",
"Creation instructional material on how to secure and maintain business critical services and applications.",
"Participate in competitions, such as the Collegiate Cyber Defense Competition.",
"Plan and lead events to educate club members on Cyber Security."
],
startDate: "Aug 2019",
endDate: "Dec 2022"
}],
awards: [{
name: "Outstanding Student Employee",
presenter: "University of Alaska",
date: "2023",
blurb: "Awarded to one student each year in recognition of their contributions and effort put towards their position.",
quote: "[Katlyn's] highly valuable and much-needed web programming and systems administration skills and can-do attitude have been a great asset to the university."
}]
skills: [
{
name: "Full Stack Development",
values: [
"Vue.JS",
"React",
"JQuery",
"Javascript and Typescript",
"Node.js",
"Python",
"CSS / SASS"
]
}, {
name: "Software",
values: [
"OmniCMS",
"Docker",
"Linux Server Administration",
"Dell CMC & iDRAC",
"Figma"
]
}
],
education: [
{
award: "Bachelor of Computer Science",
school: "University of Alaska Fairbanks",
startDate: "2019",
blurb: "Covers the fundamentals of programming, hardware, and theory; with an emphasis on real-world application."
}, {
award: "High School Diploma",
school: "Frederick High School",
endDate: "2018"
}
],
experience: [
{
title: "Full Stack Engineer - Student Position",
company: "University of Alaska, OIT Platforms, Applications, & Web Services Team",
startDate: "Nov 2019",
description: "Support staff, faculty, and student requests through web development and server administration.",
skills: [
"OmniCMS",
"Javascript",
"Typescript",
"Python",
"API Development"
],
bullets: [
"Architecture, design, and implementation of a web application for internal use in managing data relevant to the UA Scholars scholarship.",
"Facilitate research of teacher retention in rural Alaska through maintenance of K-12 Platform, a Django application allowing mentors to better prepare incoming education staff for their positions.",
// "Creation of tools to facilitate semi-automated migration of web content into the University's content management system.",
// "Implementation of front-end tooling to allow data from Google Sheets to be easily displayed within web pages.",
"Maintenance and expansion of the University website to increase usability and accessibility."
]
}
],
projects: [
{
name: "UAF Students Discord",
topic: "Education community management",
skills: [
"TypeScript",
"Ruby",
"Docker"
],
description: "Moderation and maintenance of a Discord group and associated tools that provides communication tools for UAF students and professors",
bullets: [
"Completed the migration of a Ruby-based chat bot to TypeScript running within Docker",
"Created a web interface that allows students to select courses they are participating in and would like receive updates for.",
"Communicated with departments and faculty across UAF to determine and satisfy user needs and wants."
],
startDate: "Oct 2019"
}, {
name: "UAF Cyber Security Club",
topic: "Education",
skills: [
"VMware vSphere",
"ESXi",
"Dell CMC",
"Networking",
"Communication"
],
description: "Creation and presentation of lectures regarding cyber Security, as well as maintenance of club infrastructure.",
bullets: [
"Configuration of a Dell M1000e and associated blade servers.",
"Configuration of VMware software for a virtual machine cluster.",
"Creation instructional material on how to secure and maintain business critical services and applications.",
"Participate in competitions, such as the Collegiate Cyber Defense Competition.",
"Plan and lead events to educate club members on Cyber Security."
],
startDate: "Aug 2019",
endDate: "Dec 2022"
}
],
awards: [
{
name: "Outstanding Student Employee",
presenter: "University of Alaska",
date: "2023",
blurb: "Awarded to one student each year in recognition of their contributions and effort put towards their position.",
quote: "[Katlyn's] highly valuable and much-needed web programming and systems administration skills and can-do attitude have been a great asset to the University."
}
]
}

export default resumeData

0 comments on commit c76bbc3

Please sign in to comment.