Skip to content

Commit 5ec53f7

Browse files
update about page
1 parent 77e0bc2 commit 5ec53f7

File tree

2 files changed

+20
-10
lines changed

2 files changed

+20
-10
lines changed

content/about.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
# This is a page all about me ROFLmao
2-
3-
- Family, friends, fun
4-
- physics
5-
- solar installation
6-
- bootcamp
7-
- lolmeet
8-
- mtbgrouprides => fun tech: dokku, stimulus, apollo[client,server], hasura, ionic, aws cognito
9-
- Mckesson for 6 years
1+
# About Me
2+
3+
What up 🤙
4+
5+
I'm Jeremy and I love long walks on the beach .... JK! But I do love the beach.
6+
7+
I graduated from UNC in 2013 with a degree in physics. I was expecting to launch my career in engineering, however, I didn't have the accreditations needed for most entry-level electrical engineering positions. I took a job installing solar panels on residential rooftops in the triangle area while taking classes to get an Electrical Engineering Degree. A friend told me about The Iron Yard (TIY), a 12-week Coding Bootcamp, and I thought that would be the best launching pad for my career. During the Bootcamp, I would code for 60-80 hours per week, but it was well worth it. I came out of the other end with a great job with Mckesson building products to help oncology doctors make the best decisions for their patients.
8+
9+
I've always worked on side projects to learn more about web development. Right after TIY, I was playing league of legends and decided to create lolmeet.net to help players meet up IRL. This was fun and a blogger in Poland actually helped grow the user base to +1200. I pivoted from this into consultant work. After working on 4-5 consultant gigs, I realized that the happiness of playing with new tech on personal projects far outweighed the monetary benefit of consultant work plus my full time job. As of late, I've come back back to passion projects with MTB Group Rides.
10+
11+
Side projects allow me to play with new tech and new ideas. The first iteration of MBGR was built with [Ruby on Rails](https://rubyonrails.org/) + [Turbolinks](https://github.com/turbolinks/turbolinks) + [Stimulus.js](https://stimulus.hotwire.dev/). With this stack, I was able to create a PWA using a [conference talk by John Beatty][https://speakerdeck.com/johnbeatty/yes-rails-does-support-pwas]. John Beatty talked about not blocking the main thread which gave me the idea to use Stimulus, [ActionCable](https://guides.rubyonrails.org/action_cable_overview.html) and [Sidekiq](https://sidekiq.org/) to asyncronously load pages with background workers. Currently, I'm rewriting it with [Hasura](hasura.io) + [Ionic](ionic.io) + [Apollo](https://www.apollographql.com/) + [AWS Cognito](https://aws.amazon.com/cognito/).
12+
13+
Check out my [Tweeter](https://twitter.com/basicbrogrammer) for random tech thoughts & for just everyday life there's [Instagram](https://instagram.com/basicbrogrammer).

pages/about.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="container">
2+
<div id="about-page">
33
<nuxt-content :document="article" class="my-2" />
44
</div>
55
</template>
@@ -13,3 +13,9 @@ export default {
1313
},
1414
}
1515
</script>
16+
17+
<style>
18+
#about-page p {
19+
@apply my-5;
20+
}
21+
</style>

0 commit comments

Comments
 (0)