Skip to content
View darshan-craft's full-sized avatar
🚩
Trust Team
🚩
Trust Team
Block or Report

Block or report darshan-craft

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. common git aliases common git aliases
    1
    chs = !git checkout $1 && git status && :
    2
    acp = "!f() { msg=${1-Default message}; git add . && git commit -m \"$msg\" && git push; }; f"
    3
    cmtp = "!f() { msg=${1-Default message}; git commit -m \"$msg\" && git push; }; f"
    4
    co = checkout
    5
    ec = config --global -e
  2. A friendly formatter for curl reques... A friendly formatter for curl requests to help with debugging.
    1
    \n
    2
    =============  HOST:  ==========\n
    3
    \n
    4
               local_ip:  %{local_ip}\n
    5
             local_port:  %{local_port}\n
  3. A simple test to validate an utility... A simple test to validate an utility class is well defined
    1
     /**
    2
         * Verifies that class is well defined.
    3
         * 
    4
         * @param clazz utility class to verify.
    5
         */
  4. telepresenceio/telepresence telepresenceio/telepresence Public

    Local development against a remote Kubernetes or OpenShift cluster

    Go 6.4k 501

  5. JsonParser.java JsonParser.java
    1
    import com.google.common.collect.Sets;
    2
    
                  
    3
    import java.io.InputStream;
    4
    import java.util.Set;
    5
    
                  
  6. tnt-pact-demo tnt-pact-demo Public

    A short repo to demo the pact based contract testing using a pact broker, and a couple clients

    Java