This file contains hidden or 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
require 'nkf' | |
# 既存の半角は維持しつつ全角カナを半角に変換 | |
ARGF.each do |line| | |
# -xを付けないと既存の半角カナが全角になるぽい | |
puts NKF.nkf('-xw -Z4', line) | |
end |
This file contains hidden or 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains hidden or 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 | |
cd /usr/local | |
git clone https://github.com/riywo/anyenv .anyenv | |
echo 'export PATH="/usr/local/.anyenv/bin:$PATH"' >> /etc/profile | |
echo 'export ANYENV_ROOT="/usr/local/.anyenv"' >> /etc/profile | |
echo 'eval "$(anyenv init -)"' >> /etc/profile | |
exec $SHELL -l |
This file contains hidden or 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
#!/bash/bin | |
if [ $# != 2 ]; then | |
echo "usage: $0 app_name app_port" 1>&2 | |
exit 0 | |
fi | |
app_name=$1 | |
port=$2 |
This file contains hidden or 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
#!/bash/bin | |
if [ $# != 2 ]; then | |
echo "usage: $0 app_name app_port" 1>&2 | |
exit 0 | |
fi | |
app_name=$1 | |
port=$2 |
This file contains hidden or 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
puts c1.to_json(except: [:created_at, :updated_at], include: {items: {except: [:created_at, :updated_at]}}) |
This file contains hidden or 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
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb | |
index 62c6fbb..2467a66 100644 | |
--- a/app/helpers/application_helper.rb | |
+++ b/app/helpers/application_helper.rb | |
@@ -74,7 +74,12 @@ module ApplicationHelper | |
if options[:subject] == false | |
title = issue.subject.truncate(60) | |
else | |
- subject = issue.subject | |
+ if options[:use_custom_subject] |
This file contains hidden or 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
//------------------------------- | |
// load default config file | |
//------------------------------- | |
def default_env_conf_url = file("default.gradle").toURL() | |
def config = new ConfigSlurper().parse(default_env_conf_url) | |
// load environment config file | |
if (hasProperty('env')) { | |
def env_config_url = file("${env}.gradle").toURL() |
This file contains hidden or 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
# install "Android SDK Build-tools, revision 19.1" | |
# filtered by target | |
echo y | android update sdk -u -a -t ${target_name} | |
# target_name can take following values | |
# | |
# tools | |
# platform-tools | |
# build-tools-20.0.0 |
This file contains hidden or 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
sudo /var/lib/pipework/pipework $BRIDGE_NAME $CONTAINER_ID $IP_ADDR/24 | |
sudo ip addr add $IP_ADDR/24 dev $BRIDGE_NAME |