Skip to content
View alirezashafii's full-sized avatar

Block or report alirezashafii

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
alirezashafii/README.md
<?php

class ITEngineer {
    private $name;
    private $role;
    private $language_spoken;

    public function __construct() {
        $this->name = "Alireza Shafi'i";
        $this->role = "IT Engineer";
        $this->language_spoken = ["fa_IR", "en_US"];
    }

    public function say_hi() {
        echo "Thanks for dropping by, hope you find some of my work interesting.";
    }
}

$me = new ITEngineer();
$me->say_hi();

?>

Pinned Loading

  1. palindrome palindrome Public

    Python program to check if a string is a Palindrome.

    Python 3

  2. search-filter search-filter Public

    Implementing search and filter products received through API.

    SCSS 2

  3. shopping-cart shopping-cart Public

    JavaScript shopping cart project Based on object oriented programming.

    JavaScript 2

  4. calculator calculator Public

    It's a simple Calculator app that implemented using the JavaScript language.

    JavaScript 1

  5. time time Public

    Simple digital clock using Html, CSS and JavaScript.

    CSS 1

  6. todo-app todo-app Public

    Implementing a todo list app in vuejs with localstorage.

    Vue