Adding resume and work pages to website
This commit is contained in:
parent
cb0e2f376a
commit
380fbcd437
5 changed files with 178 additions and 1 deletions
|
|
@ -18,7 +18,8 @@ use super::{
|
|||
garden,
|
||||
templates::{
|
||||
AboutTemplate, AiTemplate, BlogrollTemplate, ContactTemplate, GiftsTemplate, HomeTemplate,
|
||||
HtmlTemplate, InterestsTemplate, LinksPageTemplate, NowTemplate, UsesTemplate,
|
||||
HtmlTemplate, InterestsTemplate, LinksPageTemplate, NowTemplate, ResumeTemplate,
|
||||
WorkTemplate, UsesTemplate,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
@ -40,7 +41,9 @@ pub fn get_router(pool: PgPool) -> Router {
|
|||
.route("/blogroll", get(blogroll))
|
||||
.route("/links", get(links))
|
||||
.route("/interests", get(interests))
|
||||
.route("/resume", get(resume))
|
||||
.route("/gifts", get(gifts))
|
||||
.route("/hire", get(work))
|
||||
.route(
|
||||
"/robots.txt",
|
||||
get(|| async { Redirect::permanent("/assets/robots.txt") }),
|
||||
|
|
@ -80,6 +83,14 @@ async fn interests() -> impl IntoResponse {
|
|||
HtmlTemplate(InterestsTemplate {})
|
||||
}
|
||||
|
||||
async fn resume() -> impl IntoResponse {
|
||||
HtmlTemplate(ResumeTemplate {})
|
||||
}
|
||||
|
||||
async fn work() -> impl IntoResponse {
|
||||
HtmlTemplate(WorkTemplate {})
|
||||
}
|
||||
|
||||
async fn gifts() -> impl IntoResponse {
|
||||
HtmlTemplate(GiftsTemplate {})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -132,3 +132,11 @@ pub struct BlogFooterTemplate {
|
|||
pub previous: String,
|
||||
pub next: String,
|
||||
}
|
||||
|
||||
#[derive(Template)]
|
||||
#[template(path = "resume.html")]
|
||||
pub struct ResumeTemplate {}
|
||||
|
||||
#[derive(Template)]
|
||||
#[template(path = "work.html")]
|
||||
pub struct WorkTemplate {}
|
||||
|
|
|
|||
|
|
@ -90,6 +90,14 @@
|
|||
</p>
|
||||
</section><br>
|
||||
|
||||
<section id="contact">
|
||||
<h2>Hire Me</h2>
|
||||
<p>
|
||||
Currently looking for a new challenge.
|
||||
My criteria for work and my resume can be found <a href="hire">here</a>.
|
||||
</p>
|
||||
</section><br>
|
||||
|
||||
<section id="contact">
|
||||
<h2>Contact Me</h2>
|
||||
<p>
|
||||
|
|
|
|||
81
templates/resume.html
Normal file
81
templates/resume.html
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
<!-- prettier-ignore -->
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Awstin Chubb</h1>
|
||||
<p>
|
||||
<a href="mailto:awstin@achubb.com" target="_blank">awstin@achubb.com</a>
|
||||
</p>
|
||||
<h3>Summary</h3>
|
||||
<p>
|
||||
Fullstack automation and testing engineer, self-hoster, tinkerer, lifelong student.
|
||||
For work I build configuration automation and testing tools, from backend database interactions to frontend UI.
|
||||
At home I manage my own server, spend time on side projects, and study/read a wide variety of subjects.
|
||||
</p>
|
||||
<h3>Work Experience</h3>
|
||||
<p>
|
||||
<strong>Amazon</strong> Software Development Engineer II, February 2022 – Present
|
||||
</p>
|
||||
<ul>
|
||||
<li>Designed and migrated our platform to modern infrastructure (AWS) using modern tooling (React, ECS, Lambdas)</li>
|
||||
<li>Led design and implementation to onboard a tier 1 worldwide service to our configuration management platform</li>
|
||||
<li>Implemented testing improvements resulting in ~$10M/year savings by reducing labor requirements and increasing granularity of testing controls</li>
|
||||
<li>Provided regular oncall support for high severity events, assisting site teams in diagnosing issues and implementing fixes</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<strong>CMIC</strong> Product Analyst, August 2021- January 2022
|
||||
</p>
|
||||
<ul>
|
||||
<li>Provided customer support, both live support of issues and asynchronously through tickets</li>
|
||||
<li>Worked with the development team to find bugs and improve the software</li>
|
||||
<li>Educated customers in the functionality and use of the software</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<strong>ALS Environmental</strong>, Burnaby, British Columbia
|
||||
Laboratory Analyst Trace Metals, March 2018 - July 2020
|
||||
</p>
|
||||
<p>
|
||||
<strong>Barry Lab Carleton University</strong>, Ottawa, Ontario
|
||||
Research Assistant, May 2016 - September 2016
|
||||
</p>
|
||||
<p>
|
||||
<strong>Chinook Hot Tubs and Saunas</strong>, Ottawa, Ontario
|
||||
Service Technician, June 2011-September 2014, May 2017 - Nov 2017
|
||||
</p>
|
||||
<p>
|
||||
<strong>Ottawa Gymnastics Centre</strong>, Ottawa, Ontario
|
||||
Men’s Competitive and Pre-competitive Gymnastics Coach, September 2009 - June 2014
|
||||
</p>
|
||||
|
||||
<h3>Education and Training</h3>
|
||||
<p>
|
||||
<strong>Masters of Computer Science</strong><br>
|
||||
Wilfrid Laurier University, Waterloo, Ontario, 2020-2021
|
||||
</p>
|
||||
<p>
|
||||
<strong>Honours B.Sc.</strong><br>
|
||||
Carleton University, Ottawa, Ontario, 2010-2017<br>
|
||||
Major in Chemistry with a focus in Nanotechnology and a Minor in Mathematics
|
||||
</p>
|
||||
|
||||
<h3>Additional Information</h3>
|
||||
<ul>
|
||||
<li>Programming experience in Rust, Python, Java, Javascript, and Typescript</li>
|
||||
<li>
|
||||
Across both cloud and home server I self host
|
||||
<ul>
|
||||
<li>Personal website</li>
|
||||
<li>Wedding website</li>
|
||||
<li>Personal git server/code forge</li>
|
||||
<li>Contacts, calendar, device synchronization</li>
|
||||
<li>VPN, DHCP server, DNS based ad blocking</li>
|
||||
<li>Financial management, media streaming/management software</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Builder: furniture, electronics</li>
|
||||
<li>Competitive athlete: Brazillian Jiu Jitsu</li>
|
||||
<li>Languages: English (native), French, Japanese (learning), Portuguese (learning)</li>
|
||||
</ul>
|
||||
{% endblock %}
|
||||
69
templates/work.html
Normal file
69
templates/work.html
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
<!-- prettier-ignore -->
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h2>Work</h2>
|
||||
<p>
|
||||
I am open to new opportunities for work, and currently actively looking.
|
||||
If you have something that you think that I can contribute to then please <a href="/contact">reach out</a>.
|
||||
Here is my <a href="/resume">resume</a>.
|
||||
</p>
|
||||
<p>
|
||||
I have some musts, and some nice to haves about work.
|
||||
A compensation of at least $130k CAD (~95k USD) that fits the must haves.
|
||||
I am willing to forgo some compensation to get some of the nice to haves.
|
||||
That is something to discuss and come to an agreement on.
|
||||
</p>
|
||||
|
||||
<h3>Must Have/Must Not Have</h3>
|
||||
<ul>
|
||||
<li>
|
||||
Decent benefits.
|
||||
Health, dental, RRSP match, the standard stuff.
|
||||
</li>
|
||||
<li>
|
||||
I am not interested in working on cryptocurrency projects.
|
||||
Cryptography in general and security certainly but not cryptocurrencies.
|
||||
</li>
|
||||
<li>
|
||||
I am not interested in working in or with <a href="/ai">generative AI</a>.
|
||||
More classical predictive/pattern recognition projects I would be very interested in.
|
||||
</li>
|
||||
<li>
|
||||
Freedom to work on my own projects outside of work.
|
||||
Development for people in my community (for pay if that is what we decide).
|
||||
Make and sell things that I may make.
|
||||
</li>
|
||||
<li>
|
||||
No MAANG companies.
|
||||
I have been at Amazon nearly 3 years now and I am looking for a different sort of challenge.
|
||||
All of the large tech companies seem very similar from what I can see so I am looking for something different.
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Nice to haves</h3>
|
||||
<ul>
|
||||
<li>
|
||||
Working on open source software.
|
||||
It is important to me that I be able to share the work that I do.
|
||||
</li>
|
||||
<li>
|
||||
Less than standard work week.
|
||||
I do enjoy doing a wide variety of things, and a 4 day workweek would be wonderful to free up more time for learning and other projects.
|
||||
</li>
|
||||
<li>
|
||||
Non Java tech stack.
|
||||
Have worked primarily in Java for the last 3 years and have discovered that it does not fit that well with how I like to program.
|
||||
Would ideally like to work in a language that I enjoy working with and am always interested in learning something new.
|
||||
</li>
|
||||
<li>
|
||||
Remote or hybrid work.
|
||||
This greatly widens the area of possible employers as I am currently based in Toronto.
|
||||
</li>
|
||||
<li>
|
||||
Work where I get to as directly as possible help people.
|
||||
Some of the most fulfillment that I get from working is helping someone directly with a problem.
|
||||
Being able to directly interact with users of the product that I work on is important to me.
|
||||
</li>
|
||||
</ul>
|
||||
{% endblock %}
|
||||
Loading…
Reference in a new issue