Compare commits

...

2 Commits

Author SHA1 Message Date
eggy
81e602c98c feat: add arch server 2023-11-01 13:13:24 -04:00
eggy
dd3d479a92 feat: move education to top 2023-10-28 23:11:05 -04:00
2 changed files with 28 additions and 25 deletions

View File

@@ -2,7 +2,7 @@
#import "lib.typ": template, work_entry, project, indent, SMALL_STRONG, DEFAULT_STRONG #import "lib.typ": template, work_entry, project, indent, SMALL_STRONG, DEFAULT_STRONG
// orange!! // orange!!
#let color = rgb("#ff983e") #let color = blue // rgb("#ff983e")
#let name = "Daniel Chen" #let name = "Daniel Chen"
#let contact_data = (( #let contact_data = ((
@@ -27,6 +27,22 @@
// MAIN CONTENT STARTS here // MAIN CONTENT STARTS here
= Education
#indent[
#work_entry(
"University of Waterloo",
"B.A.Sc. in Computer Engineering",
start_date: "Sep 2022",
end_date: "Apr 2027 (expected)",
location: "Waterloo, ON",
tasks: (
[Courses: Object-oriented programming, data structures & algorithms, digital
computers & circuits],
),
)
]
= Skills = Skills
#indent[ #indent[
@@ -123,14 +139,13 @@
plan for each week plan for each week
#project( #project(
"Box Box Revolution", "Arch Linux Server",
"https://github.com/potatoeggy/boxboxrevolution", none,
"Rust, STM32", "Linux, nginx, systemd",
) )
- Created a rhythm game to detect punches with an ultrasonic sensor in line wth // set up ci/cd for automatic personal website deployments via git hooks and self-hosted gitea
notes of popular songs - Created a *self-hosted CI/CD pipeline* with *Gitea* to automatically deploy personal projects behind *nginx*
- Developed firmware to measure from an ultrasonic sensor, tone a buzzer, and show - Set up *Jellyfin* for media streaming, a *Minecraft* server, *Calibre* for ebook syncing, and other services
scrolling notes on an LCD
] ]
= Awards = Awards
@@ -141,19 +156,3 @@
StormHacks 2022 from 350+ participants StormHacks 2022 from 350+ participants
- Winner of the #link("https://github.com/anyuan-chen/perdiem")[IBM Open Source] prize - Winner of the #link("https://github.com/anyuan-chen/perdiem")[IBM Open Source] prize
at YRHacks 2022 from 90+ participants at YRHacks 2022 from 90+ participants
= Education
#indent[
#work_entry(
"University of Waterloo",
"B.A.Sc. in Computer Engineering",
start_date: "Sep 2022",
end_date: "Apr 2027 (expected)",
location: "Waterloo, ON",
tasks: (
[Courses: Object-oriented programming, data structures & algorithms, digital
computers & circuits],
),
)
]

View File

@@ -79,7 +79,11 @@
#let project(title, repo_link, tools) = { #let project(title, repo_link, tools) = {
set strong(delta: DEFAULT_STRONG) set strong(delta: DEFAULT_STRONG)
if repo_link != none {
link(repo_link)[#text(1.1em)[*#title* #fa(github)]] + [ | _ #tools _ ] link(repo_link)[#text(1.1em)[*#title* #fa(github)]] + [ | _ #tools _ ]
} else {
text(1.1em)[*#title*] + [ | _ #tools _ ]
}
} }
// Set name and contact data and format headings // Set name and contact data and format headings