Skip to content
View arvindkumarbadwal's full-sized avatar
  • India
Block or Report

Block or report arvindkumarbadwal

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

Hi there 👋, This is Arvind

I'm currently a Technical Lead in a company. I have been working on web application development.

My Skills

  • Languages: PHP, Javascript
  • Frameworks: Laravel, ExpressJs (Nodejs), Adonisjs, NestJs & ReactJs
  • Databases: MySql, Postgres, MongoDb & Redis
  • Server: Nginx
  • Others: Docker & AWS

Pinned

  1. laravel-dashboard-starter laravel-dashboard-starter Public

    A Laravel dashboard starter with docker.

    PHP

  2. calculate-age calculate-age Public

    This package is use to calculate age of a given date of birth.

    TypeScript 2

  3. react-card-swipe react-card-swipe Public

    A React plugin for reading or capturing card data from magnetic swipe readers.

    JavaScript

  4. Laravel - PHP CS Fixer Config Laravel - PHP CS Fixer Config
    1
    <?php
    2
    
                  
    3
    return PhpCsFixer\Config::create()
    4
    ->setRules([
    5
        '@Symfony' => true,
  5. Axios interceptors for token refresh... Axios interceptors for token refreshing with multipe async api support
    1
    import axios from 'axios';
    2
    import { Auth } from '.';
    3
    
                  
    4
    let isRefreshing = false;
    5
    let refreshSubscribers = [];
  6. Postgres Routine to calculates dista... Postgres Routine to calculates distance between two points (latitude/longitude)
    1
    /*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
    2
    /*::    lat1, lon1 = Latitude and Longitude of point 1 (in decimal degrees)  :*/
    3
    /*::    lat2, lon2 = Latitude and Longitude of point 2 (in decimal degrees)  :*/
    4
    /*::    unit = the unit you desire for results                               :*/
    5
    /*::           where: 'M' is statute miles (default)                         :*/