Files
modern-cv/template/resume.typ
Paul T c706d87704 feat(template): update resume and coverletter template
Updated template based on feedback from Lemmy and else where. Changes coloring scheme as well as some of the font/font weight and style used. Overall, this makes everything a lot more readable and easier to scan at a glance.
2024-04-01 06:26:47 -07:00

95 lines
2.1 KiB
Typst

#import "@preview/modern-cv:0.2.0": *
#show: resume.with(
author: (
firstname: "John",
lastname: "Smith",
email: "js@example.com",
phone: "(+1) 111-111-1111",
github: "DeveloperPaul123",
linkedin: "Example",
address: "111 Example St. Example City, EX 11111",
positions: (
"Software Engineer",
"Software Architect",
"Developer"
)
),
date: datetime.today().display(),
colored_headers: true
)
= Experience
#resume-entry(
title: "Senior Software Engineer",
location: "Example City, EX",
date: "2019 - Present",
description: "Example, Inc."
)
#resume-item[
- #lorem(20)
- #lorem(15)
- #lorem(25)
]
#resume-entry(
title: "Software Engineer",
location: "Example City, EX",
date: "2011 - 2019",
description: "Previous Company, Inc."
)
#resume-item[
- #lorem(20)
- #lorem(15)
- #lorem(25)
]
= Projects
#resume-entry(
title: "Thread Pool C++ Library",
location: [#github-link("DeveloperPaul123/thread-pool")],
date: "May 2021 - Present",
description: "Designer/Developer"
)
#resume-item[
- Designed and implemented a thread pool library in C++ using the latest C++20 and C++23 features.
- Wrote extensive documentation and unit tests for the library and published it on Github.
]
#resume-entry(
title: "Event Bus C++ Library",
location: github-link("DeveloperPaul123/eventbus"),
date: "Sep. 2019 - Present",
description: "Designer/Developer"
)
#resume-item[
- Designed and implemented an event bus library using C++17.
- Wrote detailed documentation and unit tests for the library and published it on Github.
]
= Skills
#resume-skill-item("Languages", (strong("C++"), strong("Python"), "Java", "C#", "JavaScript", "TypeScript"))
#resume-skill-item("Spoken Languages", (strong("English"), "Spanish"))
#resume-skill-item("Programs", (strong("Excel"),"Word", "Powerpoint", "Visual Studio"))
= Education
#resume-entry(
title: "Example University",
location: "Example City, EX",
date: "August 2014 - May 2019",
description: "B.S. in Computer Science"
)
#resume-item[
- #lorem(20)
- #lorem(15)
- #lorem(25)
]