--- name: Jun Wei surname: Woon position: "Student at Singapore Institute of Technology (SIT)" address: "Singapore" www: "devblog.periodicc.com" email: "woonjunwei@protonmail.com" github: Devoalda linkedin: woon-jun-wei-893406174 date: "`r format(Sys.time(), '%B %Y')`" headcolor: 990000 aboutme: "I am a student currently persuing a Degree in Computing Science at Singapore Institute of Technology(SIT) and a SHINE Intern at Singtel. I have a deep driven passion for security, electronics and automation." 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 ) ```