2018-02-08 21:21:28 +00:00
|
|
|
<template lang="pug">
|
2018-02-09 01:31:59 +00:00
|
|
|
#projects.is-half.has-text-centered-mobile
|
2018-10-15 03:25:55 +00:00
|
|
|
h2.subtitle.has-text-centered older projects
|
2018-10-14 06:45:44 +00:00
|
|
|
hr
|
2018-10-15 03:25:55 +00:00
|
|
|
h2.subtitle #[a(href='https://github.com/matthewess/boilertalk-frontend') boilertalk]
|
2018-02-08 21:21:28 +00:00
|
|
|
p.content.
|
2018-10-15 03:25:55 +00:00
|
|
|
boilertalk is a project i'm working on with my fiancée to enable social
|
2018-02-08 21:21:28 +00:00
|
|
|
psychology researchers to easily simulate a social media platform to
|
|
|
|
garner realistic interactions and behaviors from students for the purpose
|
|
|
|
of research studies.
|
2018-10-15 03:25:55 +00:00
|
|
|
h2.subtitle #[a(href='https://github.com/purdue-csusb/openideas') openideas]
|
2018-02-08 21:21:28 +00:00
|
|
|
p.content.
|
2018-10-15 03:25:55 +00:00
|
|
|
openideas is a platform i worked on with jay hankins for
|
2018-02-08 21:21:28 +00:00
|
|
|
#[a(href='https://purdueusb.com') Purdue USB] and the Purdue
|
2018-10-15 03:25:55 +00:00
|
|
|
Undergraduate CS Community. we hoped to implement it
|
2018-02-08 21:21:28 +00:00
|
|
|
to give students a way to voice concerns or improvements for
|
|
|
|
the department, then vote on and discuss them.
|
2018-10-15 03:25:55 +00:00
|
|
|
h2.subtitle #[a(href='https://github.com/lemming-online/mischief') lemming]
|
2018-02-08 21:21:28 +00:00
|
|
|
p.content.
|
2018-10-15 03:25:55 +00:00
|
|
|
i worked on the backend component of the lemming project, a group
|
2018-02-08 21:21:28 +00:00
|
|
|
project for Purdue's senior design class that was meant as a queuing
|
|
|
|
system to help lab TAs or group leaders manage large groups of students
|
|
|
|
or members who need help with an assignment or project.
|
2018-10-15 03:25:55 +00:00
|
|
|
h2.subtitle #[a(href='https://github.com/projectkuva/kuva-frontend') kuva]
|
2018-02-08 21:21:28 +00:00
|
|
|
p.content.
|
2018-10-15 03:25:55 +00:00
|
|
|
kuva was a small iOS app meant as a regional, location centric clone
|
|
|
|
of instagram that would allow you to see and interact with popular photos
|
2018-02-08 21:21:28 +00:00
|
|
|
taken by users nearby you.
|
2018-10-14 06:45:44 +00:00
|
|
|
|
|
|
|
hr
|
|
|
|
p.content.
|
|
|
|
check out my #[a.has-text-info(href='https://gitlab.com/matthewess') gitlab account],
|
2018-10-15 03:25:55 +00:00
|
|
|
or my older #[a.has-text-info(href='https://github.com/matthewess') github account].
|
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: 'projects' }
|
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-10-18 05:13:18 +00:00
|
|
|
|
|
|
|
<style lang="sass" scoped>
|
|
|
|
@import '~assets/sass/utilities'
|
|
|
|
|
|
|
|
+desktop
|
|
|
|
.is-half
|
|
|
|
width: 50%
|
|
|
|
</style>
|