--- 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 Institude of Technology(SIT). 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 ) 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 ) ``` # Education ```{r EDUCATION} edu %>% detailed_entries( with = inst, what = degree, why = detail, when = glue::glue("{startYear} --> {endYear}",.na = ""), where = where ) ``` \pagebreak # Skills ```{r SKILLS} skills %>% detailed_entries( with = area, what = skills ) ``` # Projects ```{r PROJECTS} projects %>% detailed_entries( with = area, what = accomplishment, why = detail, when = year, where = where ) ``` # Awards and Certifications ## Certifications ```{r CERTIFICATIONS} certifications %>% detailed_entries( with = area, what = accomplishment, why = detail, when = year, where = where ) ``` ## Scholarships ```{r SCHOLARSHIPS} scholarships %>% detailed_entries( with = scholarship, when = year, where = from ) ``` ## Competitions ```{r COMPETITONS} competitions %>% detailed_entries( with = competition, when = year, where = from ) ```