Skip to content

Instantly share code, notes, and snippets.

@erichsend
erichsend / colors.zsh
Last active March 17, 2023 03:29
Jimux
# Reset
Color_Off='\033[0m' # Text Reset
# Regular Colors
Black='\033[0;30m' # Black
Red='\033[0;31m' # Red
Green='\033[0;32m' # Green
Yellow='\033[0;33m' # Yellow
Blue='\033[0;34m' # Blue
Purple='\033[0;35m' # Purple
GitLab Merge Request #7 : INV-13404/axion-version-plugin => master
[EnvInject] - Loading node environment variables.
[EnvInject] - Preparing an environment for the build.
[EnvInject] - Keeping Jenkins system variables.
[EnvInject] - Keeping Jenkins build variables.
[EnvInject] - Injecting contributions.
Building on master in workspace /var/lib/jenkins/jobs/payment-manager/workspace
[ssh-agent] Using credentials jenkins (autodev_gitlab_rsa)
[ssh-agent] Looking for ssh-agent implementation...
[ssh-agent] Java/JNR ssh-agent
@erichsend
erichsend / gist:5475b05065139ce9908d
Created October 9, 2014 15:47
input stream copy
/**
* Class which is used to wrap a request in order that the wrapped request's input stream can be
* read once and later be read again in a pseudo fashion by virtue of keeping the original payload
* as a string which is actually what is returned by subsequent calls to getInputStream().
*/
public class AuthenticationRequestWrapper
extends HttpServletRequestWrapper {
private static Logger log = Logger.getLogger(AuthenticationRequestWrapper.class.getName());