119 lines
2.2 KiB
Plaintext
119 lines
2.2 KiB
Plaintext
---
|
|
name: Jun Wei
|
|
surname: Woon
|
|
position: "Security Engineer at Singtel"
|
|
address: "Singapore"
|
|
www: "synthyze.com"
|
|
email: "woonjunwei@protonmail.com"
|
|
github: Devoalda
|
|
linkedin: woonjunwei
|
|
date: "`r format(Sys.time(), '%B %Y')`"
|
|
headcolor: 990000
|
|
aboutme: "Computing Science student at Singapore Institute of Technology (SIT) and Security Engineer Intern at Singtel with hands-on experience in cybersecurity, threat analysis, incident response, and system defense. Skilled in cryptography, reverse engineering, SIEM, and automation for security operations."
|
|
docname: CV
|
|
output: vitae::awesomecv
|
|
---
|
|
|
|
```{r setup, include=FALSE}
|
|
knitr::opts_chunk$set(echo = FALSE,
|
|
warning = FALSE,
|
|
message = FALSE)
|
|
|
|
require(xfun)
|
|
|
|
packages <- c('vitae' # The CV's LaTeX Template
|
|
,'tibble' # Data structure for tribbles
|
|
,'magrittr' # The Pipe %>%
|
|
,'here' # Relative File Paths
|
|
,'readr' # Data Loading
|
|
,'glue' # String Manipulation
|
|
,'tinytex' # Tex Manipulation
|
|
)
|
|
|
|
xfun::pkg_attach2(packages, message = FALSE)
|
|
|
|
source(file = here("r","data.r"))
|
|
|
|
```
|
|
|
|
# Key Skills
|
|
|
|
```{r SKILLS}
|
|
|
|
skills %>%
|
|
detailed_entries(
|
|
with = area,
|
|
what = skills
|
|
)
|
|
|
|
```
|
|
|
|
|
|
# Employment
|
|
|
|
```{r EMPLOYMENT}
|
|
|
|
work %>%
|
|
detailed_entries(
|
|
with = title,
|
|
what = unit,
|
|
why = detail,
|
|
when = glue::glue("{startMonth} {startYear} --> {endMonth} {endYear}",.na = ""),
|
|
where = where
|
|
)
|
|
|
|
```
|
|
|
|
# Publications
|
|
|
|
```{r peerreviewed}
|
|
vitae::bibliography_entries("references.bib") %>%
|
|
arrange(desc(issued))
|
|
```
|
|
|
|
# Education
|
|
|
|
```{r EDUCATION}
|
|
|
|
edu %>%
|
|
detailed_entries(
|
|
with = inst,
|
|
what = degree,
|
|
why = detail,
|
|
when = glue::glue("{startYear} --> {endYear}",.na = ""),
|
|
where = where
|
|
)
|
|
|
|
```
|
|
|
|
# Awards and Certifications
|
|
|
|
## Certifications
|
|
|
|
```{r CERTIFICATIONS}
|
|
|
|
certifications %>%
|
|
detailed_entries(
|
|
with = area,
|
|
what = accomplishment,
|
|
why = detail,
|
|
when = year,
|
|
where = where
|
|
)
|
|
|
|
```
|
|
|
|
# Projects
|
|
|
|
```{r PROJECTS}
|
|
|
|
projects %>%
|
|
detailed_entries(
|
|
with = area,
|
|
what = accomplishment,
|
|
why = detail,
|
|
when = year,
|
|
where = where
|
|
)
|
|
|
|
``` |