Updated CV
This commit is contained in:
parent
4ca75babd4
commit
972f77b840
22
CV.Rmd
22
CV.Rmd
|
@ -110,25 +110,3 @@ certifications %>%
|
|||
|
||||
```
|
||||
|
||||
|
||||
## Scholarships
|
||||
```{r SCHOLARSHIPS}
|
||||
|
||||
scholarships %>%
|
||||
detailed_entries(
|
||||
with = scholarship,
|
||||
when = year,
|
||||
where = from
|
||||
)
|
||||
```
|
||||
|
||||
## Competitions
|
||||
```{r COMPETITONS}
|
||||
|
||||
competitions %>%
|
||||
detailed_entries(
|
||||
with = competition,
|
||||
when = year,
|
||||
where = from
|
||||
)
|
||||
```
|
||||
|
|
Binary file not shown.
20
r/data.r
20
r/data.r
|
@ -1,13 +1,27 @@
|
|||
projects <- tribble(
|
||||
~area, ~accomplishment, ~year, ~where, ~detail,
|
||||
"LaDo", "Todo list & Pomodoro Application", 2023, "Singapore", "A todo list developed using Laravel and its technologies",
|
||||
|
||||
"Niryo Ned 2 Development", "Robotic Arm Development", 2023, "Singapore Institute of Technology", "Robot Arm Package(s) development based on Robot Operating System (ROS)",
|
||||
"Niryo Ned 2 Development", "Robotic Arm Development", 2023, "Singapore Institute of Technology", "Skills acuqired: ROS Development, Computer Vision, Scrum Framework",
|
||||
|
||||
"FreeRTOS Car", "An embedded systems project", 2023, "Singapore Institute of Technology", "Maze-solving robot car based on FreeRTOS, employing the use of multiple sensor components",
|
||||
"FreeRTOS Car", "An embedded systems project", 2023, "Singapore Institute of Technology", "Skills acuqired: C, FreeRTOS, Sensor Driver development and integration",
|
||||
|
||||
"Linux Driver Development", "A User & Kernel space communication Application", 2023, "Singapore Institute of Technology", "Linux User-Space and Kernel-Space driver development to allow for hashing and communication",
|
||||
"Linux Driver Development", "A User & Kernel space communication Application", 2023, "Singapore Institute of Technology", "Skills acuqired: C, Linux Kernel Driver Development, Bash",
|
||||
|
||||
"SafeShare", "A safe, distributed file sharing application ", 2023, "Singapore Institute of Technology", "A python-based, scalable and distributed file sharing application coupled with virus scanning technology as a microservice utilising Docker and Kubernetes (K8S)",
|
||||
"SafeShare", "A safe, distributed file sharing application ", 2023, "Singapore Institute of Technology", "Skills acuqired: Docker, Docker Compose, Kubernetes, Distributed Systems, Cloud Computing",
|
||||
|
||||
"LaDo", "Todo list & Pomodoro Application", 2023, "Singapore", "A todo list developed using Laravel and its technologies",
|
||||
"LaDo", "Todo list & Pomodoro Application", 2023, "Singapore", "Skills acuqired: Laravel 10 and toolkit (Breeze, Livewire, Sanctum, Eloquent)",
|
||||
|
||||
"FormBuilder", "PHP formbuilder library", 2023, "Singapore Institute of Technology", "A form builder PHP library for CodeIgniter4 that provides APIs and frontends to developers",
|
||||
"Steganography with Python", "A PoC Application of LSB-based Steganography", 2023, "Singapore Institute of Technology", "Least Significant Bits Steganography application with support for multiple file type Information Hiding",
|
||||
"FormBuilder", "PHP formbuilder library", 2023, "Singapore Institute of Technology", "Skills acuqired: PHP, CodeIgniter4, PHP Library development",
|
||||
|
||||
"Steganography with Python", "A PoC Application of LSB-based Steganography", 2023, "Singapore Institute of Technology", "Least Significant Bits (LSB) Steganography application with support for multiple file type Information Hiding",
|
||||
"Steganography with Python", "A PoC Application of LSB-based Steganography", 2023, "Singapore Institute of Technology", "Skills acuqired: LSB Steganography for multiple file formats",
|
||||
|
||||
"Creality Ender 3 V2 3D Printer", "3D Printer", 2022, "Singapore", "3D Printer powered by a Raspberry Pi to print functional parts for replacement/repair of equipment",
|
||||
"Creality Ender 3 V2 3D Printer", "3D Printer", 2022, "Singapore", "Modified and engineered to print different materials at a higher speed and accuracy",
|
||||
"Home Server", "DOCKER‑BASED SERVER", 2022, "Singapore", "Decommissioned personal computer recommissioned as a docker‑based server that serves applications like bitwarden and Gitea",
|
||||
|
@ -34,6 +48,7 @@ certifications <- tribble(
|
|||
skills <- tribble(
|
||||
~area, ~skills,
|
||||
"Programming Languages", "PYTHON, C, JAVA, SQL, PHP, BASH, RUST, C#",
|
||||
"Cyber Security", "CRYPTOGRAPHY, BASIC REVERSE ENGINEERING, MALWARE ANALYSIS, TRAFFIC ANALYSIS",
|
||||
"Markup Languages", "CSS, HTML, LaTeX, Markdown",
|
||||
"Data Interchange Formats", "CSV, JSON, XML",
|
||||
"Operating Systems", "GNU/LINUX, WiNDOWS, FREEBSD VARIENTS, FreeRTOS, ROBOT OPERATING SYSTEM (ROS)",
|
||||
|
@ -50,6 +65,7 @@ honors <- tribble(
|
|||
edu <- tribble(
|
||||
~degree, ~startYear, ~endYear, ~inst, ~where, ~detail,
|
||||
"BSC (HONS) COMPUTING SCIENCE", 2022, NA, "Singapore Institute of Technology", "Singapore", "Cumulative Grade Point Average: 4.65/5",
|
||||
"BSC (HONS) COMPUTING SCIENCE", 2022, NA, "Singapore Institute of Technology", "Singapore", "StandCon CTF 2023 (Participant)",
|
||||
"Diploma in Cyber Sercurity and Forensics", 2017, 2020, "Nanyang Polytechnic", "Singapore", "Cumulative Grade Point Average: 3.37/4",
|
||||
"Diploma in Cyber Sercurity and Forensics", 2017, 2020, "Nanyang Polytechnic", "Singapore", "Diploma Plus: Linux System Essentials",
|
||||
"Diploma in Cyber Sercurity and Forensics", 2017, 2020, "Nanyang Polytechnic", "Singapore", "NYP Taekwondo Club",
|
||||
|
|
Loading…
Reference in New Issue