Skip to content

Commit

Permalink
feat(resume): first finalized typst resume
Browse files Browse the repository at this point in the history
  • Loading branch information
tinnamchoi committed Jun 28, 2024
1 parent cb9307b commit df15cd6
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 6 deletions.
Binary file modified resume.pdf
Binary file not shown.
59 changes: 58 additions & 1 deletion src/resume.typ
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,61 @@

= Volunteering

= Skills & Achievements
// \section{Volunteering}
// \cventry{2023 Jul -- }{Software Developer}{Adelaide Rover Team (\href{https://set.adelaide.edu.au/atcsr/australian-rover-challenge/}{\texttt{set.adelaide.edu.au/atcsr/australian-rover-challenge}})}{Adelaide, Australia}{}{}
// \cventry{2023 Apr -- }{Organizer}{UNIHACK (\href{https://www.unihack.net/}{\texttt{unihack.net}})}{Australia (remote)}{}{}
// \cventry{2022 Dec -- }{Committee member}{The University of Adelaide Computer Science Club (\href{https://www.csclub.org.au/}{\texttt{csclub.org.au}})}{Adelaide, Australia}{}{}

#experience(
company: "Adelaide Rover Team",
role: "Software Developer",
location: "Adelaide, Australia",
technologies: "C++, ROS, Git, Linux",
from: "2023 Jul",
)
- Participating in the Australian Rover Challenge, an annual competition where university students compete in a simulated lunar mission using semi-autonomous rovers that we design and build. Sponsored by Boeing, Caterpillar Inc. (CAT), and more.

#experience(
company: "UNIHACK",
role: "Organizer",
location: "Australia (remote)",
technologies: "Slack",
from: "2023 Apr",
)
- We are the largest hackathon in Australia, where students from all over the country come together to build projects in a weekend, with sponsors from Atlassian, AWS, and more

#experience(
company: "The University of Adelaide Computer Science Club",
role: "Committee member",
location: "Adelaide, Australia",
technologies: "Web Development",
from: "2022 Dec",
)
- As the only club in the university with a dedicated club room on campus, we frequently organize workshops and social events for over 500 members with sponsors from Jane Street, Citadel, VivCourt, and more.

= Skills & Achievements

== Skills & Technologies

#technologies(
daily_drivers: "C++, Linux, Git, Just, Typst, GitHub",
others: "Python, JavaScript, Atlassian suite, Rust, LaTeX, HTML, CSS",
)

#skill(title: "Human languages")[English (native), Cantonese (native), Mandarin (C1), German (A2)]

== Prizes & Achievements

#achievement(
title: "Subject prize",
subtitle: "Information and Communication Technology 2021"
)[
Achiever of the best results amongst peers
]

#achievement(
title: "University of Adelaide Scholarship",
subtitle: "30% Global Citizens Scholarship"
)[
Best possible scholarship for international students
]
47 changes: 42 additions & 5 deletions src/template.typ
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#import "@preview/fontawesome:0.2.1": *

#let color = rgb("#213983")
#let lightcolor = rgb("#6c88da")

#let display_name(name: "") = {
text(size: 24pt, fill: rgb(color))[#name]
Expand Down Expand Up @@ -51,15 +52,18 @@
#show par: set block(spacing: 1em)
#display_header(name: name, links: links)
#show heading: it => {
set text(fill: rgb(color))
let current_color = color
if it.depth == 2 {
current_color = lightcolor
}
set text(fill: current_color)
v(-0.5em)
it
v(-1em)
line(length: 100%, stroke: rgb(color))
line(length: 100%, stroke: current_color)
}
// #v(1fr)
#doc
#v(1fr)
#doc
]

#let display_title(
Expand Down Expand Up @@ -197,4 +201,37 @@
center: technologies,
right: link("https://" + project_link)[#raw(project_link)]
)
]
]

#let skill(
body,
title: "",
) = {
box[
#text(weight: "semibold")[#title: ]
#body
]
}

#let technologies(
daily_drivers: "",
others: "",
) = {
skill(title: "Daily drivers")[#daily_drivers]
h(1fr)
skill(title: "Familiar")[#others]
}

#let achievement(
body,
title: "",
subtitle: "",
) = {
box[
// #text(weight: "semibold")[#title: ]
// #subtitle
#skill(title: title)[#subtitle]
#h(1fr)
#text(style: "italic")[#body]
]
}

0 comments on commit df15cd6

Please sign in to comment.