Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cryptojoma/cryptojoma


https://github.com/cryptojoma/cryptojoma

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

Howdy Partner! 👽✨





About me



Visitors

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



Telegram

## 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

![Python](https://img.shields.io/badge/-Python-05122A?style=flat&logo=python)  ![JavaScript](https://img.shields.io/badge/-JavaScript-05122A?style=flat&logo=javascript) 
![C](https://img.shields.io/badge/-C-05122A?style=flat&logo=C&logoColor=A8B9CC)  ![R (Statistics)](https://img.shields.io/badge/-R-05122A?style=flat&logo=R&logoColor=276DC3)  ![React](https://img.shields.io/badge/-React-05122A?style=flat&logo=react)  ![Django](https://img.shields.io/badge/-Django-05122A?style=flat&logo=django&logoColor=092E20)  ![Flask](https://img.shields.io/badge/-Flask-05122A?style=flat&logo=flask)  ![Bootstrap](https://img.shields.io/badge/-Bootstrap-05122A?style=flat&logo=bootstrap&logoColor=563D7C)  ![HTML](https://img.shields.io/badge/-HTML-05122A?style=flat&logo=HTML5)  ![CSS](https://img.shields.io/badge/-CSS-05122A?style=flat&logo=CSS3&logoColor=1572B6)  ![Git](https://img.shields.io/badge/-Git-05122A?style=flat&logo=git)  ![GitHub](https://img.shields.io/badge/-GitHub-05122A?style=flat&logo=github)  ![Markdown](https://img.shields.io/badge/-Markdown-05122A?style=flat&logo=markdown)\
![Visual Studio Code](https://img.shields.io/badge/-Visual%20Studio%20Code-05122A?style=flat&logo=visual-studio-code&logoColor=007ACC) 

## 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**.

* **[LicenseChain Telegram Bot](https://github.com/CryptoJoma/LicenseChain-TG-Bot/)** An unofficial LicenseChain open-source Telegram Bot for authenticating and interacting with the Seller API, including tasks such as generating licenses, managing subscriptions, and handling affiliates. (Developed by a team member, not an official product.)
* **[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 |
| --- | --- | --- |
| ![CryptoJoma's github stats](https://github-readme-stats.vercel.app/api?username=CryptoJoma&show_icons=true&title_color=f6c32c&icon_color=f6c32c&text_color=9f9f9f&bg_color=151515&count_private=true) | Streak | ![CryptoJoma's top languages](https://github-readme-stats.vercel.app/api/top-langs/?username=CryptoJoma&show_icons=true&title_color=f6c32c&icon_color=f6c32c&text_color=9f9f9f&bg_color=151515&count_private=true&layout=compact) |

## 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;

```