Skip to content
View mfalade's full-sized avatar

Block or report mfalade

Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
mfalade/README.md

Hello, World! Welcome to My GitHub.

I'm Mayowa Ayodeji Falade, a Full-Stack Software Engineer passionate about building scalable applications, clean architectures, and delightful developer experiences.

I enjoy working across the stack, from crafting smooth client side applications to architecting robust backend services.

Identity variables:

# Install using npm npm install mfalade # Install using yarn yarn add mfalade 

Pinned Loading

  1. github-to-jira github-to-jira Public

    A simple Chrome extension that allows you to go from a Github pull request to the relevant Jira ticket in a click

    JavaScript 2

  2. github-repo-search github-repo-search Public

    A demo React app that leverages OAuth to search for private and public Github repositories. What better way to see how Github OAuth works that to implement a dummy project?

    JavaScript 1

  3. mfalade.github.io mfalade.github.io Public

    My portfolio website

    Sass 2

  4. A Javascript implementation of the L... A Javascript implementation of the Luhn Algorithm used for validating credit card numbers.
    1
    const isCardNumberValid = cardNumber => {
    2
     const normalizedStr = cardNumber.replace(/\s/g, '');
    3
     const tokens = Array.from(normalizedStr).map(Number);
    4
     const checkDigit = tokens.pop();
    5