Skip to content
View mhdalmajid's full-sized avatar
👋
Hey!
👋
Hey!

Organizations

@Utbah

Block or report mhdalmajid

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

Hey! 👋 I'm Mohammed!

Linkedin: M Almajid

interface Father{
  children: number 
  isHappy: "Alhamdu llah"
  [key:string]: unknown
}
interface Developer<T extends any> extends Father {
    stack: T
    company: string
}

type TStatus<T extends Developer<T> | Father> = T extends Father
  ? Father
  : Developer<T>;
  • 🧡 In love wih TypeScript
  • 🔭 I’m currently working on Private project with DOE 🙃
  • 💬 Ask me about Reactjs - Typescript - Javascript - css - Graphql
  • 🌱 I’m currently 👀 Into Fullstack-Development & DevOps
  • 📫 How to reach me: 🤷‍♂️

Things I code with

React Typescript NodeJS NextJS npm html5 git Prettier

GraphQL Apollo-GraphQL Prisma Figma Vercel AWS

Top Langs

Pinned Loading

  1. 3d-wall-decoraction 3d-wall-decoraction Public

    JavaScript

  2. Bakery Bakery Public

    Cyprus bakery website

    HTML

  3. blog-theme blog-theme Public

    first commit

    SCSS 1

  4. fill down google sheet column fill down google sheet column
    1
    function fillValuesDown() {
    2
      var spreadsheet = SpreadsheetApp.getActive()
    3
      var currentRange = spreadsheet.getRange("A2:A" + spreadsheet.getLastRow())
    4
      var newRange = []
    5
      var newFillValue
  5. My setup guide for installing Cgywin... My setup guide for installing Cgywin, Mintty, Cmder, and ZSH.
    1
    # What's this?
    2
    Instructions to obtain ZSH on a windows environment, without the input funny business presented by some other attempted solutions.
    3
    
                  
    4
    The final result is ZSH running on a mintty terminal, emulated by cygwin, and being handled by the popular cmder. 
    5
    
                  
  6. convert json to csv convert json to csv
    1
    const convertObjectToCsv = (data: { [key: string]: any }[]) => {
    2
      /**
    3
       * specify how you want to handle null values here
    4
       * */
    5