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

Block or report sbmadhav

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

Hi there πŸ‘‹

I am Madhav. A developer at heart; trying to learn and contribute to the society as best as I can.

  • πŸ”­ I’m currently working on React Redux GraphQL Node & GCP

  • 🌱 I’m currently learning Python AI & ML

  • πŸ’¬ Ask me about Frontend development and Architecting Frontend applications

  • πŸ˜„ Pronouns: He / Him πŸ‘¨β€πŸ’Ό

⚑ My Most Used Language

Madhav's Top Languages

πŸ“ˆ My Github stats

Madhav's Stats

⌨️ My OSS / Personal project contribution this week

Madhav's WakaTime

Pinned Loading

  1. Delete git branches that did not rec... Delete git branches that did not receive any commits in the last two months
    1
    #!/bin/bash
    2
    for k in $(git branch -r | sed /\*/d); do 
    3
      if [ -z "$(git log -1 --since='2 months' -s $k)" ]; then
    4
        branch_name_with_no_origin=$(echo $k | sed -e "s/origin\///")
    5
        # echo deleting branch: $branch_name_with_no_origin
  2. VS code Extensions you need VS code Extensions you need
    1
    # The VS code extensions I use all the time #
    2
    
    
    3
    ## Code ##
    4
    
    
    5
    ### Formatter ###
  3. Errors I have encountered and resolved Errors I have encountered and resolved
    1
    # Errros I have encountered and resolved #
    2
    ## NVM and VSCode ##
    3
    
    
    4
    VSCode would throw error like below:
    5
    
    
  4. Life saver git commands Life saver git commands
    1
    # Delete branches that did not receive commits more than 4 weeks
    2
            for k in $(git branch | sed /\*/d); do 
    3
              if [ -n "$(git log -1 --since='12 weeks ago' -s $k)" ]; then
    4
                git branch -D $k
    5
              fi
  5. Front-End-Architecture-Checklist Front-End-Architecture-Checklist Public

    Forked from rcherny/Front-End-Architecture-Checklist

    Checklist of front end development centric technology structure considerations on a Web site or Web application project.