mat.services/pages/resume.vue

65 lines
1.7 KiB
Vue
Raw Normal View History

2018-02-08 21:21:28 +00:00
<template lang="pug">
2018-02-09 01:31:59 +00:00
#resume.is-half.has-text-centered-mobile
2018-02-08 21:21:28 +00:00
.content
h1.title matthew ess
h2.subtitle software developer
2018-02-09 02:02:30 +00:00
hr.is-three-quarters
2018-02-08 21:21:28 +00:00
h2.subtitle education
p.
purdue university, west lafayette, IN #[br]
B.S. in computer science, minor in political science #[br]
may 2018 #[br]
3.90 gpa
2018-02-09 02:02:30 +00:00
hr.is-three-quarters
2018-02-08 21:21:28 +00:00
h2.subtitle experience
p.has-text-weight-semibold software engineer @ yelp: summer 2018 - present
p.
transactions backend engineer.
p.has-text-weight-semibold software engineer intern @ yelp: summer 2017
p.
i joined the transactions team and worked on restructuring ordering data
to make it more efficient to query.
p.has-text-weight-semibold developer intern @ school datebooks: summer 2016 - winter 2016
p.
i worked on a very small team of talented engineers writing backend
PHP and javascript microservices for an athletic and educational
scheduling web app.
2018-02-09 02:02:30 +00:00
hr.is-three-quarters
2018-02-08 21:21:28 +00:00
h2.subtitle skills
.columns
.column
p python 2 and 3
p flask, django, pyramid
2018-10-15 03:25:55 +00:00
p elixir and phoenix
2018-02-08 21:21:28 +00:00
p java, junit testing, ruby on rails
.column
p html5, css, javascript
p vue.js, react
2018-10-15 03:25:55 +00:00
p elm, reactive frontend programming
2018-02-08 21:21:28 +00:00
p single page apps, components, flux
.column
p c, unix programming
2018-10-15 03:25:55 +00:00
p software deployment
2018-02-08 21:21:28 +00:00
p macOS, linux, windows
p source control, git
</template>
2018-10-14 06:45:44 +00:00
<script>
export default {
head() {
2018-10-18 05:13:18 +00:00
return { title: 'resume' }
2018-10-14 06:45:44 +00:00
},
layout: 'compact'
}
</script>
2018-02-08 21:21:28 +00:00
<style lang="sass" scoped>
2018-10-18 05:13:18 +00:00
@import '~assets/sass/utilities'
2018-02-09 01:31:59 +00:00
+desktop
2018-02-09 02:02:30 +00:00
.is-three-quarters
width: 75%
2018-02-09 01:31:59 +00:00
.is-half
width: 50%
2018-02-08 21:21:28 +00:00
</style>