Skip to content

Instantly share code, notes, and snippets.

@enkr1
Last active February 18, 2023 22:27
Show Gist options
  • Save enkr1/20dcb4efa7f26cbc45efde809d5e03dd to your computer and use it in GitHub Desktop.
Save enkr1/20dcb4efa7f26cbc45efde809d5e03dd to your computer and use it in GitHub Desktop.
About Me (PHP)
<?php
$me = new User([
"first_name" => "Jing Hui",
"last_name" => "Pang",
"email" => "enkr99@gmail.com",
"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