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
@echo off | |
setlocal | |
rem Set your rbenv directry | |
set instpath="%USERPROFILE%\.rbenv-win" | |
rem Clone git repositry | |
call git clone https://github.com/nak1114/rbenv-win.git %instpath% | |
rem Config path |
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
{ | |
"title" : "core-0.12.1 , 日本語 mod3", | |
"label" : { | |
"product_name" : "生産物名称", | |
"require_product_speed" : "要求生産速度[units/sec]", | |
"production_facility" : "生産施設" | |
}, | |
"facilities" : { | |
"crafting" : [["assembling_machine_1", "assembling_machine_2"], | |
["assembling_machine_2", "assembling_machine_2"], |
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
[ | |
{ | |
"type": "korok", | |
"lat": 30, | |
"lng": 10, | |
"comment": "'hoge'", | |
"roots": [ | |
{ | |
"lat": -10, | |
"lng": -10, |
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
#!ruby | |
vpn_name="HOME" | |
vpn_ip="10.22.33" | |
m=/^\s*(\d+)\.{20,}#{vpn_name}$/.match `route print` | |
system "route delete #{vpn_ip}.0" | |
system("route -p add #{vpn_ip}.0 mask 255.255.255.0 #{vpn_ip}.1 METRIC 1 IF "+m[1]) if m | |
puts `route print` |
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
FROM ubuntu:latest | |
RUN apt-get install -y language-pack-ja-base language-pack-ja | |
update-locale LANG=ja_JP.UTF-8 LANGUAGE=”ja_JP:ja” | |
# for Java | |
ENV JAVA_HOME /usr/lib/jvm/java-8-oracle | |
RUN echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \ | |
apt-get update && \ |