Skip to content
View emfhal's full-sized avatar

Highlights

  • Pro

Block or report emfhal

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
emfhal/README.md

👋 Hello, I'm Emmanuel (@emfhal on GitHub).

🔭 I'm deeply fascinated by the intersection of Technology and Finance, and I'm always eager to explore new advancements in these fields.

🎓 I'm currently expanding my knowledge and skills through an MSc in Computing Science. This journey is not only enhancing my understanding of complex computing concepts but also equipping me with the ability to apply this knowledge in practical scenarios.

🌱 My technical interests are broad, but I have a particular affinity for Java, Python, Node.js, and PHP. I'm always looking to collaborate on projects involving these languages, so feel free to reach out if you have an interesting idea or need a hand with your project.

💡 I'm an expert at ideation and project building, with extensive knowledge in areas such as Language Model (LLM), Cloud Computing, Software as a Service (SaaS). I'm always looking to apply this expertise in new and challenging contexts.

Pinned Loading

  1. Sentiment-Analysis-for-Stock-Price-Prediction-using-Bloomberg-Through-utilizing-Python-and-Machine-L Sentiment-Analysis-for-Stock-Price-Prediction-using-Bloomberg-Through-utilizing-Python-and-Machine-L Public

    Jupyter Notebook 2 2

  2. phpWhois-Domain-Generator phpWhois-Domain-Generator Public

    phpWhois Domain Generator- Search for domains that apply in a flexible format

    PHP

  3. EUROMILLION-Lotto-Prediction-using-LSTM EUROMILLION-Lotto-Prediction-using-LSTM Public

    The purpose of this notebook is to predict the EUROMILLION results by the LSTM model. (For Viewing Euromillions Results: https://www.lottery.ie/draw-games/results/view?game=euromillions&draws=0)

    Jupyter Notebook 5 1

  4. Form-Validation-VueJS-PHP Form-Validation-VueJS-PHP Public

    Form Validation with Bootstrap, Vue JS and PHP

    HTML 1

  5. Convert Number in Hebrew/English Wor... Convert Number in Hebrew/English Words (PHP) - הכתבת מספרים למילים 1500 = אלף וחמש מאות
    1
    function convertNumberToWord($num = false, $lang = "en")
    2
    {
    3
        $num = str_replace(array(',', ' '), '', trim($num));
    4
        if (!$num) {
    5
            return false;
  6. Israeli ID Validator (PHP) - בדיקת ת... Israeli ID Validator (PHP) - בדיקת תעודת זהות ישראלית (מחזיר אמת במידה ותקין
    1
    function isValidIsraeliID($id)
    2
    {
    3
        $id = trim($id);
    4
        if (strlen($id) > 9 or strlen($id) < 5 or !is_numeric($id)) return false;
    5
        $id = strlen($id) < 9 ? str_pad($id, 9, '0', STR_PAD_LEFT) : $id;