該当する各社の対応欄に企業名を書いてください。備考があれば適宜カッコ書きしてください。
- 定時前に帰宅させてくれるホワイトな会社のりすとを気軽に作りたい
- 定時前に帰宅させてくれるホワイトな会社がホワイトアピールできる場があれば良いな
cd linter; \ | |
./pslint_selftest.sh; \ | |
./pslint.py ../public_suffix_list.dat; | |
-n test_NFKC: | |
OK | |
-n test_allowedchars: | |
OK | |
-n test_dots: | |
OK | |
-n test_duplicate: |
$ berks install | |
Resolving cookbook dependencies... | |
Fetching cookbook index from https://supermarket.getchef.com... | |
Error retrieving universe from source: https://supermarket.getchef.com | |
* [Berkshelf::APIClient::TimeoutError] Unable to connect to: https://supermarket.getchef.com | |
Required artifacts do not exist at the desired version | |
Missing artifacts: nginx | |
Unable to find a solution for demands: nginx (~> 2.7.4) |
#(snip) | |
def initialize(url, options = {}) | |
options = options.reverse_merge(retries: 3, retry_interval: 0.5, | |
open_timeout: 3, timeout: 30) | |
#(snip) |
# http://www.commandlinefu.com/commands/view/13641/a-random-password-generator#comment | |
tr -dc '\x15-\x7e' < /dev/urandom| head -c 16 | paste | |
# | |
cat /dev/urandom | tr -dc A-Za-z0-9 | head -c 32 | |
# 便利:) |
mkdir -p ~/.vim/bundle | |
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim | |
echo -e "$TERM\n$SHELL" | |
vim # NeoBundleInstall が走る | |
export TERM=putty | |
rm -rf ~/.vim/bundle | |
mkdir -p ~/.vim/bundle | |
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim | |
echo -e "$TERM\n$SHELL" |
if has('vim_starting') | |
set nocompatible " Be iMproved | |
" Required: | |
set runtimepath+=~/.vim/bundle/neobundle.vim/ | |
endif | |
" Required: | |
call neobundle#rc(expand('~/.vim/bundle/')) |
if [ ! $TERM = "screen" ]; then | |
exec /usr/bin/screen -S main -xRR | |
fi | |
/usr/bin/screen -ls |
source ~/.bashrc |
if [ ! $TERM = "screen" ]; then | |
exec /usr/bin/screen -S main -xRR | |
fi | |
/usr/bin/screen -ls |