Last active
February 18, 2023 22:27
-
-
Save enkr1/20dcb4efa7f26cbc45efde809d5e03dd to your computer and use it in GitHub Desktop.
About Me (PHP)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$me = new User([ | |
"first_name" => "Jing Hui", | |
"last_name" => "Pang", | |
"email" => "[email protected]", | |
"pronoun" => "he/him", | |
"status" => "Hired", | |
"company" => "Pixium Digital", | |
"roles" => [ | |
"Software Engineer", | |
"Web & Mobile Developer", | |
"Web Designer", | |
], | |
"hobbies" => [ | |
"Coding", | |
"Debugging", | |
"Beatboxing", | |
"Playing LoL", | |
"Sleeping", | |
], | |
"interests" => [ | |
"Designing Web & Mobile Applications", | |
"Solving Problems & presenting solutions", | |
"Learning more programming languages", | |
"Exploring new technologies and frameworks", | |
], | |
"personal_website" => "https://enkr1.github.io", | |
]); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment