website/resume.tsx

75 lines
2.5 KiB
TypeScript
Raw Normal View History

2023-07-26 09:09:33 -04:00
export const title = "Resume - Foster Hangdaan";
2023-07-26 16:34:06 -04:00
export const header = {
heading: "Resume",
subheading: <span>Download a copy of my resume <a href="https://static.fosterhangdaan.com/documents/foster-hangdaan-resume.pdf" download>here</a>.</span>,
2023-07-26 16:34:06 -04:00
};
2023-08-01 21:21:22 -04:00
export default function() {
2023-07-26 09:09:33 -04:00
return (
<>
<section>
2023-08-01 21:21:22 -04:00
<h2>Experience</h2>
2023-07-26 21:51:01 -04:00
<div>
<h3 className="inline">Zetane Systems</h3>
<span className="resume--work-position">Full-Stack Developer</span>
<div>October 2021 - present</div>
</div>
2023-07-26 09:09:33 -04:00
<ul>
2023-07-26 21:51:01 -04:00
<li>Develop pages and components in Next.js according to Figma designs.</li>
<li>Create CI/CD pipeline to containerize app and deploy to AWS.</li>
<li>Debug and fix software issues.</li>
<li>Ensure application quality and functionality by writing end-to-end tests using Cypress.</li>
2023-07-26 09:09:33 -04:00
</ul>
2023-07-26 21:51:01 -04:00
<div>
<h3 className="inline">Startup Tech Pros</h3>
<span className="resume--work-position">Tech Lead</span>
<div>June 2022 - present</div>
</div>
<ul>
<li>Set standards and procedures for Engineering department.</li>
<li>Design, maintain and deploy cloud infrastructure.</li>
<li>Manage software development projects.</li>
<li>Determine software tools and services based on company budget and requirements.</li>
<li>Collaborate with clients to create websites and infrastructure based on business needs.</li>
</ul>
</section>
<section>
2023-08-01 21:21:22 -04:00
<h2>Education</h2>
2023-07-26 21:51:01 -04:00
<div>
<h3 className="inline">Computer Engineering Technology</h3>
<span className="resume--education-emphasis">Emphasis in Computer Programming</span>
<div>Seneca College of Applied Arts and Technology</div>
<div>Graduated August 2020</div>
<div>Cumulative GPA 4.0/4.0</div>
</div>
2023-07-26 09:09:33 -04:00
</section>
<section>
2023-08-01 21:21:22 -04:00
<h2>Skills</h2>
2023-07-26 21:51:01 -04:00
<h3>Programming Languages</h3>
<ul>
<li>JavaScript</li>
<li>TypeScript</li>
<li>HTML</li>
<li>CSS</li>
<li>BASH</li>
</ul>
<h3>Frameworks & Libraries</h3>
<ul>
<li>Deno</li>
<li>Fresh</li>
<li>Lume</li>
<li>Next.js</li>
<li>Node.js</li>
<li>Vue.js</li>
</ul>
2023-08-01 21:21:22 -04:00
<h3>Other Tools & Software</h3>
2023-07-26 09:09:33 -04:00
<ul>
2023-07-26 21:51:01 -04:00
<li>Docker</li>
<li>Linux</li>
2023-07-26 09:09:33 -04:00
</ul>
</section>
</>
);
}