Skip to content
View sajaddp's full-sized avatar

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

🦉 SajadDP — Where Code Meets Curiosity

LinkedIn YouTube GitHub


👋 Who am I?

Hey, I’m Sajad — a human who codes, teaches, and sometimes talks to rubber ducks to debug weird bugs faster.

  • 💻 Full-Stack Dev (mainly Laravel, Node.js, JavaScript/React, Next.js, TypeScript)
  • 🔍 SEO Expert (10+ years of experience and still don’t believe in magic keywords)
  • 🧑‍🏫 Programming Mentor (turning confused faces into “aha!” moments)
  • 🏗️ Builder of things — From startup MVPs to real-world products with thousands of users
  • 🤝 Always open to collaboration, honest feedback, and the next “impossible” challenge

🚦 What Drives Me?

  • Writing code that makes lives easier (for real people, not just for “Hello World”)
  • Teaching what I wish someone taught me earlier
  • Demystifying SEO — making search engines love your stuff without shady tricks
  • Turning “it can’t be done” into “wait, it works!”

⚡️ My Stack (Most Days)

TypescriptNode.jsLaravelReactNext.jsPostgreSQLMySQL
DockerLinuxTailwind CSSWordPressGitBash


🧑‍💻 Currently

  • Creating code & content for Bug University
  • Helping others go from tutorial hell to building real things
  • Always learning something a bit outside my comfort zone (lately: AI & data engineering)

🌱 Let’s Connect

  • Want to talk code, teaching, SEO, or building products?
    Find me on LinkedIn.
  • Want dev tutorials, code reviews, or the occasional debugging rant?
    Catch me on YouTube - Bug University.

“Real builders build. The rest just talk — at Bug University, we always build.”
— SajadDP

Pinned Loading

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

    لیست شهرهای ایران به تفکیک استان - با ستاره دار کردن مخزن، قلبم را شاد کنید. ❤

    TypeScript 465 93

  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.8k 301