This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: bash -*- | |
#----------------------------- | |
# Common congigurations | |
#----------------------------- | |
CFGDIR=$HOME/tool/config | |
source $CFGDIR/01-proxy | |
source $CFGDIR/02-repos | |
source $CFGDIR/10-local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: bash -*- | |
#----------------------------- | |
# Common congigurations | |
#----------------------------- | |
CFGDIR=$HOME/tool/config | |
source $CFGDIR/01-proxy | |
source $CFGDIR/02-repos | |
source $CFGDIR/10-local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; po-fuzzy-diff.el --- Compare the difference in PO fuzzy string | |
;; Copyright (C) 2013 Akihiro Motoki <[email protected]> | |
;; Author: Akihiro Motoki <[email protected]> | |
;; Keywords: convenience po-mode | |
;; This file is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation; either version 2, or (at your option) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Neutron | |
# To use nova-network, comment out the following | |
PRIVATE_NETWORK_NAME=net1 | |
PUBLIC_NETWORK_NAME=ext_net | |
Q_PLUGIN=ml2 | |
disable_service n-net | |
enable_service neutron q-svc q-agt | |
enable_service q-dhcp | |
enable_service q-l3 | |
enable_service q-meta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
# Latest version is available at | |
# https://github.com/amotoki/horizon-i18n-tools/blob/master/po-file-update.sh | |
function is_updated() { | |
local file=$1 | |
git diff $file | \ | |
grep -E '^[-+]' | \ | |
grep -v -E '^[-+]#:' | \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import argparse | |
import logging | |
import re | |
import sys | |
import pprint | |
#------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Copyright (C) 2013 Akihiro Motoki <[email protected]> | |
;; Author: Akihiro Motoki <[email protected]> | |
;; Keywords: convenience rectangle | |
;; This file is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation; either version 2, or (at your option) | |
;; any later version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ESC は ESC コードをいれる | |
Emacs だと C-q ESC, vi だと C-v ESC | |
/etc/nova/nova.conf | |
logging_exception_prefix = %(color)s%(asctime)s.%(msecs)03d TRACE %(name)s ESC[01;35m%(instance)sESC[00m | |
logging_debug_format_suffix = ESC[00;33mfrom (pid=%(process)d) %(funcName)s %(pathname)s:%(lineno)dESC[00m | |
logging_default_format_string = %(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [ESC[00;36m-%(color)s] ESC[01;35m%(instance)s%(color)s%(message)sESC[00m | |
logging_context_format_string = %(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [ESC[01;36m%(request_id)s ESC[00;36m%(user_name)s %(project_name)s%(color)s] ESC[01;35m%(instance)s%(color)s%(message)sESC[00m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
USERNAME=`whoami` | |
NUM=`ps -ef | grep ssh-agent | grep -v grep | grep $USERNAME | wc -l` | |
if [ $NUM -eq 1 ]; then | |
ST=`ps -ef | grep ssh-agent | grep -v grep | grep $USERNAME` | |
AGENT_PID=$(echo $ST | awk '{print $2;}') | |
SOCKFILE=$(ls -l /tmp/ssh-*/agent.[0-9]* | grep $USERNAME | sed -e 's/^.*\(\/tmp\/ssh-.*\)/\1/') | |
echo "echo SOCKFILE=$SOCKFILE;" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import threading | |
import time | |
import eventlet | |
import eventlet.corolocal | |
# NOTE(rpodolyaka): threading is patched here | |
eventlet.monkey_patch() |
OlderNewer