Skip to content
View yaneshtyagi's full-sized avatar
💭
I may be slow to respond.
💭
I may be slow to respond.

Block or report yaneshtyagi

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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

Pinned Loading

  1. Indian Number Format - Google Sheet ... Indian Number Format - Google Sheet and Excel
    1
    Indian currency format displays numbers like below
    2
    
                  
    3
    ```
    4
    1 - One Rupee
    5
    10 - Ten Rupee
  2. git credentials management git credentials management
    1
    #run in the git woring folder
    2
    git credential-manager ininstall
    3
    git config list #shows the credential infotmation
    4
    #next when git need credentials, it will prompt you to enter. For public repos, it happens  during push 
    5
    #and on private repos, this happens during push and pull.
  3. See windows 10 wifi password : For c... See windows 10 wifi password : For connected wifi
    1
    netsh wlan show profile name=ssid key=clear
  4. Git fetch and pull all git branches ... Git fetch and pull all git branches locally
    1
    git branch -r | grep -v '\->' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
    2
    git fetch --all
    3
    git pull --all
  5. RemoveDuplicates.regex RemoveDuplicates.regex
    1
    ^(.*?)$\s+?^(?=.*^\1$)
    2
    
                  
    3
    Since Notepad++ Version 6 you can use this regex in the search and replace dialogue:
    4
    
                  
    5
    ^(.*?)$\s+?^(?=.*^\1$)
  6. gui.cs gui.cs Public

    Forked from gui-cs/Terminal.Gui

    Console-based user interface toolkit for .NET applications.

    C#