git clone https://gist.github.com/dd6f95398c1bdc9f1038.git vault
cd vault
docker-compose up -d
export VAULT_ADDR=http://192.168.99.100:8200
Initializing a vault:
vault init
From 966471712184cfb3b067f2ae8dad9d8e2a896cae Mon Sep 17 00:00:00 2001 | |
From: Bearice Ren <[email protected]> | |
Date: Tue, 20 Sep 2016 11:52:08 +0800 | |
Subject: [PATCH] add filter-aaaa option | |
--- | |
src/dnsmasq.h | 3 ++- | |
src/option.c | 3 +++ | |
src/rfc1035.c | 9 +++++++++ | |
3 files changed, 14 insertions(+), 1 deletion(-) |
winpath() { | |
# get the Windows user path, convert to Unix line endings | |
user_path=$(echo "$(/mnt/c/Windows/System32/cmd.exe /C echo %HOMEDRIVE%%HOMEPATH%)" | tr -d "\r") | |
# expand the specified path | |
target_path=$(readlink -f $1) | |
# change ~ to $user_path | |
if grep -q "^/home/" <<< $target_path; then | |
temp_user_path=$(echo "$user_path" | sed -e 's|\\|/|g' -e 's|^\([A-Za-z]\)\:/\(.*\)|/mnt/\L\1\E/\2|' -e 's|^M$||') |
git clone https://gist.github.com/dd6f95398c1bdc9f1038.git vault
cd vault
docker-compose up -d
export VAULT_ADDR=http://192.168.99.100:8200
Initializing a vault:
vault init
#!/bin/sh | |
# | |
# You should define BINTRAY_ACCOUNT and BINTRAY_APIKEY here or from the outside | |
# BINTRAY_ACCOUNT is you Bintray account and BINTRAY_APIKEY, API Key generated under your Bintray profile | |
# Redefine following variables to match your own usage | |
RPMS_DIR=RPMS/noarch | |
BINTRAY_ACCOUNT=hgomez | |
BINTRAY_REPO=devops-incubator-rpm |
/var/lib/docker/containers/*/*-json.log { | |
dateext | |
daily | |
rotate 365 | |
compress | |
delaycompress | |
missingok | |
} |
#!/bin/bash | |
cd "$(dirname "$0")" | |
source .qstr.bash | |
echo -ne "Content-Type: video/x-matroska\r\n\r\n" | |
if [ -f /tmp/tv.pid ]; then | |
if kill -0 $(cat /tmp/tv.pid) >/dev/null 2>&1; then | |
exit | |
fi |
I've been fighting the same problem and have to say the hint provided here about resetting the launch services, and letting `launchd` do this at login (via Lingon) is invaluable. Thanks a lot for that, it makes FileVault far more usable! | |
After using this for a while, I have however discovered a side effect of resetting the launch services that is rather annoying--but I have also found a solution for it. | |
The _problem_ is that after resetting the launch services, calling a protocol handler registered by a user installed application is considered a **first time call** again, meaning it needs to be confirmed by the user (unless the app has been started directly before the call). Examples I stumbled upon are: | |
* bookmarking through the Pukka bookmarklet | |
* opening an Evernote note from a Spotlight search | |
* calling a `man` page in Safari through Bwana. |
I've been fighting the same problem and have to say the hint provided here about resetting the launch services, and letting `launchd` do this at login (via Lingon) is invaluable. Thanks a lot for that, it makes FileVault far more usable! | |
After using this for a while, I have however discovered a side effect of resetting the launch services that is rather annoying--but I have also found a solution for it. | |
The _problem_ is that after resetting the launch services, calling a protocol handler registered by a user installed application is considered a **first time call** again, meaning it needs to be confirmed by the user (unless the app has been started directly before the call). Examples I stumbled upon are: | |
* bookmarking through the Pukka bookmarklet | |
* opening an Evernote note from a Spotlight search | |
* calling a `man` page in Safari through Bwana. |
# Apple Binary Property List serializer for Ruby 1.8. | |
require 'iconv' | |
module AppleBinaryPropertyList | |
MIME_TYPE = 'application/octet-stream' # Don't know what to use, so use a very generic type for now | |
CFData = Struct.new(:data) # For marking strings as binary data which will be decoded as a CFData object | |
~$ ARCHFLAGS='-arch i386 -arch x86_64' | |
~$ rvm install 1.8.7 --debug --reconfigure -C --enable-shared=yes | |
~$ wget http://sourceforge.net/projects/rubycocoa/files/RubyCocoa/1.0.0/RubyCocoa-1.0.0.tar.gz/download | |
~$ tar xzf RubyCocoa-1.0.0.tar.gz && rm RubyCocoa-1.0.0.tar.gz && cd RubyCocoa-1.0.0 | |
~/RubyCocoa-1.0.0$ ruby install.rb config --build-universal=yes | |
~/RubyCocoa-1.0.0$ ruby install.rb setup | |
~/RubyCocoa-1.0.0$ sudo ruby install.rb install |