Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add template for jobuary resume reviewers 2025 #563

Merged
merged 20 commits into from
Jan 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 78 additions & 0 deletions assets/scss/components/_jobuary.scss
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,81 @@
background-position: 20vw;
}
}

#resume_team_flex_box {
display: flex;
justify-content: space-evenly;
align-items: stretch;
flex-wrap: wrap;
flex-basis: 0;
gap: 2rem;
max-width: 85rem;
margin: auto;
width: 100%;

p {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.5555555556;
margin-bottom: 24px;
margin-bottom: 1.5rem;
}
}

.profile {
text-align: center;
max-width: 700px;
flex: 1 1 calc(33.33% - 1rem);
margin: 1rem;
margin-bottom: 32px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}

@media only screen and (max-width: 900px) {
.profile {
flex: 1 1 calc(50% - 1rem);
}
}

.profile p {
flex-grow: 1; /* Make the paragraph take up extra space */
margin: 1rem 0;
}

.profile img {
display: block;
margin: 0 auto;
border-radius: 50%;
width: 192px;
height: 192px;
object-fit: cover;
}

.profile h2 {
text-align: center;
margin-top: 0.5rem;
}

.max-width-700 {
max-width: 700px;
text-align: center;
}

.centered {
margin: 0 auto;
}

.padded-top {
padding-top: 32px;
}

.padded-between {
padding-top: 8px;
}

.book-link {
margin-top: auto;
}
8 changes: 8 additions & 0 deletions content/jobuary_resume_reviews/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: "Jobuary Resume Reviewers 2025"
date: 2023-09-01T23:11:13Z
draft: false
url: "/jobuary/resume-reviewers-2025"
layout: jobuary-resume-reviewers-2025
preview: "images/event_posters/2023-2024/jobuary.jpg"
---
29 changes: 29 additions & 0 deletions data/resume_reviewers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
- name: Matthew MacRae-Bovell
firstname: Matthew
intro: "Previous President of the Carleton Computer Science Society and Software Developer with 5+ years of experience across freelance, internships, and more. Interned with various startups as well as The Bank of Canada, Kinaxis, and RBC, followed by a two-year tenure at Shopify. Currently working as a Software Developer II at Jobber (a SAAS for service providers)."
image: images/jobuary-2025-resume-reviewers/matthew.png
link: "https://calendly.com/matthewmacraebovell/chats?month=2025-01"

- name: Mumtahin Farabi
firstname: Farabi
intro: "Self-taught developer with internships at Ciena(2x), and Emids. Avid hackathon attendee passionate about open-source software. Experience spans networking embedded software development, full-stack development, and DevOps. Former President of Hack the Hill, and the Carleton Systems and Computer Engineering Society (SCESoc). Former Director of Technology for CUSEC 2024. Former developer for SPAC 2024, and IEEE Canada. Currently involved with cuHacking as an architect."
image: images/jobuary-2025-resume-reviewers/farabi.png
link: "https://calendly.com/mfarabi/resume-review-session"

- name: Rebecca Kempe
firstname: Rebecca
intro: "Fourth year, cybersecurity stream. Formerly President of Carleton Cybersecurity Club, former Cyber Team Canada member. Most recent internships: Data Analyst @ Bank of Canada, NSERC USRA @ Carleton (Data Science Research), Cyber Security Analyst @ Bank of Canada. I also have extensive experience with writing and communications."
image: images/jobuary-2025-resume-reviewers/rebecca.jpg
link: "https://calendly.com/rebecca-kempe/resume-review-session"

- name: Ryan Chung
firstname: Ryan
intro: "Third year in the Software Engineering stream, and the current Director of Finance for the Carleton Computer Science Society. Has 2+ years of developer experience, including internships at RBC and an early-stage startup, Decipad. Currently interning at RBC for a second time in payment systems."
image: images/jobuary-2025-resume-reviewers/ryan.jpg
link: "https://calendly.com/ryan-chung-cs/resume-review"

- name: Victor Li
firstname: Victor
intro: "Victor is a former President of the Carleton Computer Science Society and is set to begin his Master’s degree in Computer Science with a specialization in Data Science in September 2025. His experience includes software development, maritime research, IT support, and university-level teaching. He has gained practical experience through internships at Defence Research and Development Canada (DRDC), Cerio, and the RCMP. Additionally, he served as a Teaching Assistant at Carleton University for three semesters and has contributed to academic research projects focused on game theory, reinforcement learning, and multi-agent systems."
image: images/jobuary-2025-resume-reviewers/victor.jpeg
link: "https://calendly.com/livictor146/resume-review-session"
20 changes: 20 additions & 0 deletions layouts/_default/jobuary-resume-reviewers-2025.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{{ define "main" }}
{{- partial "navbar_temp.html" . -}}
<link
rel="stylesheet"
href="{{ " assets/scss/components/_jobuary.scss" | relURL }}"
/>
<h1 class="max-width-700 centered padded-top">Meet the Resume Reviewers!</h1>
<div id="resume_team_flex_box">
{{ range .Site.Data.resume_reviewers }}
<div class="profile">
<img src="{{ .image | relURL }}" alt="{{ .name }}" />
<h2>{{ .name }}</h2>
<p>{{ .intro }}</p>
<a class="book-link" href="{{ .link }}"
>{{- partial "button.html" (dict "label" (printf "Book a Resume Review with %s" .firstname)) -}}</a
>
</div>
{{ end }}
</div>
{{ end }}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading