-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed projects slide and began careers slide
- Loading branch information
1 parent
be4bb0c
commit 0dc6f9b
Showing
6 changed files
with
177 additions
and
13 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
import { | ||
VerticalTimeline, | ||
VerticalTimelineElement, | ||
} from "react-vertical-timeline-component"; | ||
import "react-vertical-timeline-component/style.min.css"; | ||
import react, { useState } from "react"; | ||
import "../styles.css"; | ||
|
||
export default function CareerSlide() { | ||
return ( | ||
<div | ||
style={{ | ||
padding: 50, | ||
height: "50px", | ||
backgroundColor: "#FFFFFF", | ||
minHeight: "2500px", | ||
}} | ||
> | ||
<h1 style={{ fontFamily: "Avenir" }}>EXPERIENCE</h1> | ||
<VerticalTimeline lineColor={"#1F1F1F"}> | ||
<VerticalTimelineElement | ||
className="vertical-timeline-element--work" | ||
contentStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
contentArrowStyle={{ borderRight: "7px solid rgb(33, 150, 243)" }} | ||
date="September 2022 - December 2022" | ||
iconStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
> | ||
<h3 className="vertical-timeline-element-title"> | ||
Software Devloper and Design Intern @ YuJa Inc. | ||
</h3> | ||
<h4 className="vertical-timeline-element-subtitle">Toronto, ON</h4> | ||
<p> | ||
Developed student response system applicaiton called Engage, to | ||
allow educational instructors to provision quizzes and polls to | ||
students during lecture/class time. | ||
</p> | ||
</VerticalTimelineElement> | ||
<VerticalTimelineElement | ||
className="vertical-timeline-element--work" | ||
contentStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
date="January 2022 - May 2022" | ||
iconStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
> | ||
<h3 className="vertical-timeline-element-title"> | ||
Full Stack Developer @ The CEMC | ||
</h3> | ||
<h4 className="vertical-timeline-element-subtitle">Waterloo, ON</h4> | ||
<p> | ||
Developed contest proctoring web application using MySQL and PHP | ||
backend, and vanilla JavaScript frontend. Also created in-house | ||
software to eliminate manual processes for customer service team | ||
(i.e. participant archival system) and the contest creation team | ||
(LaTeX to HTML conversion script). | ||
</p> | ||
</VerticalTimelineElement> | ||
<VerticalTimelineElement | ||
className="vertical-timeline-element--work" | ||
contentStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
date="July 2021 - October 2021" | ||
iconStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
> | ||
<h3 className="vertical-timeline-element-title"> | ||
Volunteer Frontend Developer @ InclusionUI | ||
</h3> | ||
<h4 className="vertical-timeline-element-subtitle">Lambeth, UK</h4> | ||
<p> | ||
Volunteered to work virtually with 5 other developers from the US | ||
and UK to develop a digital calendar/schedule tracker to help a | ||
client with Autism organize his week, and gain digital and personal | ||
independence. I developed the first iteration of the front end of | ||
the app in Vanilla JavaScript, HTML and CSS. It was fulfilling | ||
experience, as I got to see my work actually help someone, and I | ||
learned a lot about the software development cycle in the process. | ||
To learn more about this initiative, please visit: | ||
https://inclusion-ui.com/activity-calendar/. | ||
</p> | ||
</VerticalTimelineElement> | ||
<VerticalTimelineElement | ||
className="vertical-timeline-element--work" | ||
contentStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
date="July 2021 - August 2021" | ||
iconStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
> | ||
<h3 className="vertical-timeline-element-title"> | ||
Junior Machine Learning Developer @ AltaML | ||
</h3> | ||
<h4 className="vertical-timeline-element-subtitle">Calgary, AB</h4> | ||
<p> | ||
Partnered with Rogers Media Team to develop a computer vision model, | ||
using Microsoft Azure Computer Vision Services, to analyze hockey | ||
game footage to track players and pucks, for statistical analysis of | ||
players and game strategies. | ||
</p> | ||
</VerticalTimelineElement> | ||
<VerticalTimelineElement | ||
className="vertical-timeline-element--work" | ||
contentStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
date="July 2021 - August 2021" | ||
iconStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
> | ||
<h3 className="vertical-timeline-element-title"> | ||
Junior Machine Learning Developer @ AltaML | ||
</h3> | ||
<h4 className="vertical-timeline-element-subtitle">Calgary, AB</h4> | ||
<p> | ||
Partnered with Rogers Media Team to develop a computer vision model | ||
to analyze hockey game footage to track players and pucks, for | ||
statistical analysis of players and game strategies. | ||
</p> | ||
</VerticalTimelineElement> | ||
<VerticalTimelineElement | ||
className="vertical-timeline-element--work" | ||
contentStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
date="June 2021 - April 2022" | ||
iconStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} | ||
> | ||
<h3 className="vertical-timeline-element-title"> | ||
Firmware Team Member @ UW Midnight Sun Solar Car Design Team | ||
</h3> | ||
<h4 className="vertical-timeline-element-subtitle">Waterloo, ON</h4> | ||
<p> | ||
Developed firmware in C and ARM Assembly for various parts of a | ||
Solar Powered Car, including the Battery Management System, the | ||
Bootloader, temperature monitors, and more. Worked with and flashed | ||
my code onto STM 32 Microcontrollers, one of my first experiences | ||
with Microcontrollers. | ||
</p> | ||
</VerticalTimelineElement> | ||
</VerticalTimeline> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters