Skip to content
View sajaddp's full-sized avatar
Block or Report

Block or report sajaddp

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
sajaddp/README.md

Hey 👋, I'm SajadDP

github twitter devto linkedin youtube

Glad to see you here

I have professional and considerable experience working with PHP, Laravel, and NodeJs in the back-end. I am a self-taught INTJ (my latest MBTI test result) full-stack developer with M.S. in intelligent systems. In addition, I have worked as a web developer, Javascript / ReactJs / VueJs as a front-end.

Moreover, I have been working as an SEO proficiently for over ten years. I have taught people how to design a Holistic SEO strategy.

Over the past few years, I have been the CEO of VasetKala, which has a creative and dynamic team. As a result, I have spent hours studying and researching leadership. Today, the secret that teams can succeed in business is respecting people, whether they are customers, competitors, and employees.

Github Stats

Trophies

trophy

Languages and Tools

React Bootstrap CSS3 HTML5 JavaScript Docker TypeScript PHP MySQL MongoDB Python Nginx Express.js Bash Chart.js Linux Sass Git WordPress GraphQL Node.js Vue.js Laravel PostgreSQL Webpack WooCommerce jQuery GitLab Tailwind CSS Ionic Cordova NextJS

Pinned

  1. list-of-cities-in-Iran list-of-cities-in-Iran Public

    List of cities in Iran - فهرست شهرهای ایران. اگر این مخزن را مفید می دانید، لطفاً آن را ستاره دار کنید.

    Python 300 79

  2. Git: Remove all local branches that ... Git: Remove all local branches that are not on remote
    1
    # Git: Remove all local branches that are not on remote
    2
    
                  
    3
    Method 1:
    4
    ```bash
    5
    git fetch -p && for branch in $(git branch -vv | grep ': gone]' | awk '{print $1}'); do git branch -D $branch; done
  3. Convert Persian and Arabic digits of... Convert Persian and Arabic digits of a string to English using JavaScript
    1
    const converter = (text) => text.replace(/[٠-٩۰-۹]/g,a=>a.charCodeAt(0)&15);
    2
    
                  
    3
    console.log(converter("۳٣۶٦۵any٥۵٤۶32٠۰"));
    4
    // Output: "33665any55453200"
    5
    //[Reference](https://stackoverflow.com/a/63133882/6390834)
  4. laravel/sanctum laravel/sanctum Public

    Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.

    PHP 2.7k 284