Skip to content
View chernjie's full-sized avatar

Organizations

@hackerspacesg @PayPalLabs @GrumpyGits
Block or Report

Block or report chernjie

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

Pinned

  1. hashable hashable Public

    Generate consistent hashable JSON payload, great for piping through hash functions.

    JavaScript 1

  2. Fetch Github's Pull Request as a rem... Fetch Github's Pull Request as a remote branch
    1
    #!/usr/bin/env bash
    2
     
    3
    git remote -v | grep fetch | grep github | \
    4
        while read remote url _; do
    5
            if ! git config --get-all "remote.$remote.fetch" | grep -q refs/pull
  3. sshp sshp Public

    Host chaining, search available configuration and other helpful commands for everyday ssh-related task.

    Shell 2 3

  4. git-remote-ssh git-remote-ssh Public

    Using git-remote configuration to perform SSH tasks

    Shell 1

  5. github-release-notes github-release-notes Public

    Generate release notes based on Github pull request title from given two git-refs

    Shell 1

  6. Find redundant branches and print co... Find redundant branches and print commands to delete them
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    COLOR_YELLOW(){ echo -en "\033[33m"; }
    4
    COLOR_RESET() { echo -en "\033[0m";  }
    5