I hereby claim:
- I am kumichou on github.
- I am kumichou (https://keybase.io/kumichou) on keybase.
- I have a public key whose fingerprint is ADAB 5062 C603 314C 51D4 5B6F F9DF AE60 0790 3A79
To claim this, I am signing this object:
| [CmdletBinding()] | |
| Param( | |
| [Parameter(Mandatory=$True,Position=1)] | |
| [string]$bumpKind | |
| ) | |
| function getVersion() { | |
| $tag = Invoke-Expression "git describe --tags --always 2>&1" | |
| $tag = $tag.Split('-')[0] |
| MIT License | |
| Copyright (c) 2018 Eric Hankinson | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| sudo apt-get install unzip | |
| wget -N http://chromedriver.storage.googleapis.com/2.24/chromedriver_linux64.zip | |
| unzip chromedriver_linux64.zip | |
| chmod +x chromedriver | |
| sudo mv -f chromedriver /usr/local/share/chromedriver | |
| sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver | |
| sudo ln -s /usr/local/share/chromedriver /usr/bin/chromedriver |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # | |
| # Opt-in for custom prompt through by setting: | |
| # rvm_ps1=1 | |
| # in either /etc/rvmrc or $HOME/.rvmrc | |
| # | |
| # Then in order to set your prompt you simply do the following for example | |
| # | |
| # Examples: |
| #!/bin/bash | |
| # virtualenv-auto-activate.sh | |
| # | |
| # Installation: | |
| # Add this line to your .bashrc or .bash-profile: | |
| # | |
| # source /path/to/virtualenv-auto-activate.sh | |
| # | |
| # Go to your project folder, run "virtualenv .venv", so your project folder | |
| # has a .venv folder at the top level, next to your version control directory. |
| #!/usr/bin/env bash | |
| BLACK='\033[0;30m' | |
| DARK_GRAY='\033[1;30m' | |
| BLUE='\033[0;34m' | |
| LIGHT_BLUE='\033[1;34m' | |
| GREEN='\033[0;32m' | |
| LIGHT_GREEN='\033[1;32m' | |
| CYAN='\033[0;36m' | |
| LIGHT_CYAN='\033[1;36m' |
| #!/usr/bin/env bash | |
| mv /var/lib/dpkg/available /root/available-corrupted | |
| touch /var/lib/dpkg/available | |
| sh -c 'for i in /var/lib/apt/lists/*_Packages; do dpkg --merge-avail "$i"; done' |
| #!/usr/bin/env bash | |
| CWD=`pwd` | |
| function cleanup { | |
| echo "You pressed Ctrl-C, time to exit the Python Services"; | |
| ps aux | grep myservice2 | grep -v grep | awk '{print $2}' | xargs kill -9; | |
| ps aux | grep myservice1 | grep -v grep | awk '{print $2}' | xargs kill -9; | |
| exit 1; | |
| } |
| #!/bin/bash | |
| # This script is meant for OS X Jenkins installs where the install PKG was originally used | |
| cd /Applications/Jenkins | |
| sudo launchctl unload /Library/LaunchDaemons/org.jenkins-ci.plist | |
| sudo mv jenkins.war jenkins-$(date +"%Y%m%d%H%M").war | |
| sudo curl -L -o jenkins.war http://mirrors.jenkins-ci.org/war/latest/jenkins.war |