--- name: Jun Wei surname: Woon position: "Security Engineer at Singtel" address: "Singapore" www: "synthyze.com" email: "woonjunwei@protonmail.com" github: Devoalda linkedin: woon-jun-wei-893406174 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, passionate about cybersecurity, automation, and embedded systems, with hands-on experience in security analysis and system defense." 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")) ``` # 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 ) ``` # Skills ```{r SKILLS} skills %>% detailed_entries( with = area, what = skills ) ``` # 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 ) ```