I am an AI engineer with a Bachelor's in Animation, Interactive Technology, Video Graphics, and Special Effects. I am passionate about creating apps and automation tools.
I also have experience in video editing and social media management, using Adobe Premiere Pro, Adobe After Effects, CapCut, Instagram, Twitter, and Facebook to create and manage client projects.
- Programming Languages (Most Used): JavaScript, Python, PHP
- Technologies (Most Used): TailwindCSS, MYSQL, WordPress, Express.js, Nginx, Apache2
- Cloud Engineering: Oracle Cloud
- Tools: Git, GitHub, VSCode, PHPMailer, Postman
- Soft Skills: Communication, teamwork, problem-solving, marketing, social media management
- Most of my projects are kept confidential due to their association with my earlier experiences in youth entrepreneurship, or other ventures I choose to keep discreet.
- DB Storage Manager An application to download databases from a PHP API and upload them to Google Drive securely.
function work_life_balance($task, $mood = 'neutral') {
// Fun emojis based on mood
$fun_emojis = array(
'happy' => '😄',
'neutral' => '😐',
'sad' => '😞'
);
// Professional advice based on mood
$professional_advice = array(
'happy' => "Great! But don't forget your responsibilities.",
'neutral' => "Stay balanced, don't overwork or overplay.",
'sad' => "Maybe take a short break and come back stronger."
);
// Check if mood is valid
if (!array_key_exists($mood, $fun_emojis)) {
return "Invalid mood! Please choose between 'happy', 'neutral', or 'sad'.";
}
// Construct the message
return "Task to complete: $task " . $fun_emojis[$mood] . ". "
. "Advice: " . $professional_advice[$mood];
}
// Example usage
$message = work_life_balance("Complete PHP project", "happy");
echo $message;