I hereby claim:
- I am qoomon on github.
- I am qoomon (https://keybase.io/qoomon) on keybase.
- I have a public key ASAZKCVD102Exu5sgIndvAuISX-y-3q9ouKfMUu0F-xK7Ao
To claim this, I am signing this object:
# replace <ServiceSubDomain> | |
# replace <LocalPort> | |
server { | |
listen 80; | |
server_name <ServiceSubDomain>.*; | |
access_log off; | |
# Increase this to JIRA's maximum attachment size (10M by default) | |
client_max_body_size 10M; |
# replace <ServiceSubDomain> | |
# replace <LocalPort> | |
# replace <SslFileName> | |
server { | |
listen 443 ssl; | |
server_name <ServiceSubDomain>.*; | |
access_log off; | |
ssl_certificate /etc/ssl/certs/<SslFileName>.pem; |
* * * * * find /var/log/process -type f -name '*.log.*' -mtime +7 -delete |
gource \ | |
--highlight-dirs \ | |
--file-idle-time 0 \ | |
--filename-time 8 \ | |
--filename-colour 999999 \ | |
--file-font-size 18 \ | |
--dir-colour 999999 \ | |
--dir-font-size 24 \ | |
--key \ | |
--user-font-size 24 \ |
#!/bin/sh | |
# | |
# An example hook script to block unannotated tags from entering. | |
# Called by "git receive-pack" with arguments: refname sha1-old sha1-new | |
# | |
# To enable this hook, rename this file to "update". | |
# | |
# Config | |
# ------ | |
# hooks.allowunannotated |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
base_dir=/var/lib/registry/docker/registry/v2 | |
repository_dir=$base_dir/repositories | |
image_dir=$base_dir/blobs | |
output_dir=$(mktemp -d) | |
all_images=$output_dir/all | |
used_images=$output_dir/used |
#!/bin/sh | |
set -e | |
if [ $# -ne 3 ]; then | |
echo "Usage: ... <SOURCE_FOLDER> <TARGET_REPO> <TARGET_BRANCH>" | |
exit 1; | |
fi | |
SOURCE_FOLDER="$1" |
#!/bin/sh | |
REPO_URL="$1" | |
TARGET_DIR="${2:-$(basename $REPO_URL .git)}" | |
SHADOW_DIR='.git.shadow' | |
cd $TARGET_DIR | |
git clone --no-checkout $REPO_URL $SHADOW_DIR | |
mv $SHADOW_DIR/.git . | |
rm -rf $SHADOW_DIR |
https://github.com/Homebrew/homebrew-core/raw/0ae3bc02d2962a39ccec65052fcffa82becc5bb6/Formula/abcl.rb | |
BREW_GITHUB_REPO='https://github.com/Homebrew/homebrew-core' | |
FORMULA_NAME="${1}" | |
# find formula version and coresponding commit hash at http://braumeister.org | |
FORMULA_COMMIT="${2}" | |
brew install '${BREW_GITHUB_REPO}/raw/${FORMULA_COMMIT}/Formula/${FORMULA_NAME}.rb' && brew pin '${FORMULA_NAME}' |