Skip to content
View emfhal's full-sized avatar

Highlights

  • Pro
Block or Report

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
  • ๐Ÿ‘‹ Hi, Iโ€™m @emfhal
  • ๐Ÿ‘€ Iโ€™m interested in Technology and Finance
  • ๐ŸŒฑ Iโ€™m currently learning MSc in Computing Science
  • ๐Ÿ’ž๏ธ Iโ€™m looking to collaborate on Java/Python/PHP projects

Pinned

  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;