Error:
Couldn't drop privileges: User is missing UID (see mail_uid setting)
Switch include order in conf.d/10-auth.conf
to fix the problem.
diff --git a/conf.d/10-auth.conf b/conf.d/10-auth.conf
index e9cfd05..fbfed63 100644
#!/bin/sh | |
#--------------------------------------------------------------------# | |
# Set OSX terminal window background color per SSH hosts. | |
#--------------------------------------------------------------------# | |
change_bgcolor () { | |
case $1 in | |
red) | |
osascript -e 'tell app "Terminal" to set background color of first window to {17655, 0, 0, -16373}';; |
@(docomo.ne.jp|disney.ne.jp|mopera.net|dwmail.jp|softbank.ne.jp|i.softbank.jp|(d|h|t|c|r|k|n|s|q).vodafone.ne.jp|*ezweb.ne.jp|ido.ne.jp|*pdx.ne.jp|willcom.com|emnet.ne.jp|vertclub.ne.jp|jp-(d|h|t|c|r|k|n|s|q).ne.jp|sky.(tkk|tkc|tu-ka).ne.jp) |
#!/bin/sh | |
anchor="dist.ini" | |
dir_p="$PWD" found= src_root= | |
while [ -n "$dir_p" ] | |
do | |
found=$(find "$dir_p" -maxdepth 1 -name "$anchor") | |
[ -n "$found" ] && break | |
dir_p="${dir_p%/*}" |
plenv install 5.8.9 \ | |
-Dcc=gcc \ | |
-Dld=g++ \ | |
-Dusethreads \ | |
-Duseithreads \ | |
-Duseshrplib \ | |
-Accflags="-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk" \ | |
-Accflags="-mmacosx-version-min=10.6" \ | |
-Accflags="-arch i386 -DUSE_SITECUSTOMIZE -Duselargefiles" \ | |
-Aldflags="-Wl,-search_paths_first -arch i386" \ |
# http://connect.microsoft.com/IE/feedback/details/807447/ie-11-metro-version-submitting-form-fails-if-input-tag-has-no-name-attribute | |
//form[not(.//input) or count(.//input[@name] == 0)] |
Error:
Couldn't drop privileges: User is missing UID (see mail_uid setting)
Switch include order in conf.d/10-auth.conf
to fix the problem.
diff --git a/conf.d/10-auth.conf b/conf.d/10-auth.conf
index e9cfd05..fbfed63 100644
# | |
# http://perldoc.perl.org/CORE.html#OVERRIDING-CORE-FUNCTIONS | |
# > To override a built-in globally (that is, in all namespaces), you need to | |
# > import your function into the CORE::GLOBAL pseudo-namespace at compile | |
# > time: | |
# > | |
# > BEGIN { | |
# > *CORE::GLOBAL::hex = sub { | |
# > # ... your code here | |
# > }; |
$.fn.extend({ | |
reduce: function (cb, init) { | |
this.each(function (i) { | |
if (i === 0 && typeof init === 'undefined') { | |
init = $(this); | |
} else { | |
init = cb.call($(this), init); | |
} | |
}); | |
return init; |
(function (g) { | |
var d = g.document | |
filter = prompt('Feed me a filtering regex:'), | |
regex = new RegExp(filter, 'gi'); | |
display = function (value) { | |
[].forEach.call(d.querySelectorAll('.status'), function (n) { | |
var c, t; | |
if (value !== 'block') { | |
c = n.querySelector('.status__content'); | |
t = c.innerText || c.textContent; |
function! s:ToggleCase() | |
let cur_word = expand("<cword>") | |
if cur_word == '' | |
return | |
endif | |
let new_word = '' | |
if toupper(cur_word)==#cur_word " CONST_ISH | |
let new_word = tolower(cur_word) | |
elseif cur_word =~ '_' " snake_case |