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.
|
2019-05-01 21:29:01 +00:00
|
|
|
backend engineer on the transactions and food ordering teams. i work on
|
|
|
|
high performance, realtime python infrastructure that supports a wide
|
|
|
|
variety of features for ordering food on yelp, including driver tracking
|
|
|
|
support to realtime updates and notifications about your order via push.
|
2018-02-08 21:21:28 +00:00
|
|
|
p.has-text-weight-semibold software engineer intern @ yelp: summer 2017
|
|
|
|
p.
|
2019-05-01 21:29:01 +00:00
|
|
|
intern on the transactions team. built a streaming transformation pipeline
|
|
|
|
that leveraged yelp's streaming datapipe (built on kafka technologies) and
|
|
|
|
replicated to elasticsearch for high performance text querying over order
|
|
|
|
data.
|
2018-02-08 21:21:28 +00:00
|
|
|
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
|
2019-05-01 21:29:01 +00:00
|
|
|
p.has-text-weight-semibold strong
|
|
|
|
p python
|
|
|
|
p pyramid, flask, django
|
|
|
|
p unit, integration, and acceptance testing
|
|
|
|
p darwin and linux systems
|
|
|
|
p git, source control
|
|
|
|
p working on a team, agile and "semi-agile" processes
|
2018-02-08 21:21:28 +00:00
|
|
|
p html5, css, javascript
|
|
|
|
.column
|
2019-05-01 21:29:01 +00:00
|
|
|
p.has-text-weight-semibold familiar
|
|
|
|
p haskell
|
|
|
|
p elixir and phoenix
|
|
|
|
p functional programming paradigms
|
|
|
|
p database technology, sql, postgresql, elasticsearch
|
2018-10-15 03:25:55 +00:00
|
|
|
p software deployment
|
2019-05-01 21:29:01 +00:00
|
|
|
p elm, vue.js, react, SPAs, flux
|
|
|
|
p c, systems programming, java, junit testing, ruby on rails
|
|
|
|
.column
|
|
|
|
p.has-text-weight-semibold learning
|
|
|
|
p functional reactive programming, reflex
|
|
|
|
p nix, nixos
|
|
|
|
p type level programming and theory
|
|
|
|
p programming language and compiler theory
|
2018-02-08 21:21:28 +00:00
|
|
|
</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
|
|
|
},
|
2018-10-18 06:19:46 +00:00
|
|
|
layout: 'compact',
|
2018-10-14 06:45:44 +00:00
|
|
|
}
|
|
|
|
</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>
|