https://github.com/cryptojoma/cryptojoma
https://github.com/cryptojoma/cryptojoma
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cryptojoma/cryptojoma
- Owner: CryptoJoma
- Created: 2024-07-26T01:10:51.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-11-25T05:03:06.000Z (6 months ago)
- Last Synced: 2025-01-18T00:13:32.533Z (4 months ago)
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Howdy Partner! 👽✨
About me
![]()
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.
Contact me
## Tech Stack
- 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 
          \
## Projects
- **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](https://github.com/CryptoJoma/DB_Storage_Manager)** An application to download databases from a PHP API and upload them to Google Drive securely.
📈 Personal Stats
![]()
| Github Stats | Streak | Top Languages |
| --- | --- | --- |
|  ||  |
## Remember
```php
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;```