Skip to content

Instantly share code, notes, and snippets.

View uehara1414's full-sized avatar

uehara uehara1414

  • いつもニコニコあなたの隣に
View GitHub Profile
@uehara1414
uehara1414 / helloworld.json
Created November 4, 2017 12:07
記事埋め込みテスト
{
"Hello": "World"
}
@uehara1414
uehara1414 / setup.sh
Last active November 1, 2017 12:52
install docker and docker-compose to centos7
sudo yum update -y
curl -sSL https://get.docker.com/ | sh
sudo systemctl enable docker
sudo systemctl start docker
sudo curl -L https://github.com/docker/compose/releases/download/1.16.1/docker-compose-`uname -s`-`uname -m` -o /bin/docker-compose
sudo chmod +x /bin/docker-compose
yum update -y
yum install epel-release -y
systemctl enable firewalld
systemctl start firewalld
yum install git vim git -y
tee /etc/yum.repos.d/docker.repo <<-'EOF'
[dockerrepo]
yum update
yum install epel-release -y
systemctl enable firewalld
systemctl start firewalld
yum install git vim -y
tee /etc/yum.repos.d/docker.repo <<-'EOF'
[dockerrepo]
@uehara1414
uehara1414 / AdventCalendar20161217.md
Created December 21, 2016 16:51
不可視の巨人

この記事は FUN Advent Calendar 2016 17日目の記事の予定でした。

はじめに

私は高校生の頃からプログラミングはしていたのですが、大学入学後してからびっくりするほど見えている世界が広がりました。

この記事の内容は高校の時に見えている世界が狭かった理由の考察と、私なりの解決策の紹介です。

簡単に自己紹介

メモをここに
## ホストを動的に指定したい
ansible-playbook -i 162.243.56.86, playbooks/sample.yml
## キーワードを動的に指定したい
ansible-playbook playbook.yml --extra-vars "target=the_host_to_run_script_on hoge=fuga"
yum -y install java
systemctl enable firewalld
systemctl start firewalld
firewall-cmd --add-port=25565/tcp --permanent
firewall-cmd --reload
mkdir /root/minecraft
wget -P /etc/systemd/system/ https://gist.githubusercontent.com/uehara1414/c0d7f68de0625a38c12baef9aae196eb/raw/e67bd0bd6c8eb50394632f54afa794ac499e4e12/minecraft-server.service
[Unit]
Description = minecraft server deamon
[Service]
User=root
ExecStart = /usr/bin/bash /root/minecraft/start.sh
Restart = always
Type = simple
[Install]
yum -y install rsync
yum -y install gcc
yum -y install libstdc++.i686
yum -y install nc
yum -y install epel-release
yum -y install xmlstarlet
useradd -d /home/sdtd -m -r -s /bin/bash -U sdtd
wget http://illy.bz/fi/7dtd/management_scripts.tar.gz
tar --touch -xvzf management_scripts.tar.gz -C /
@uehara1414
uehara1414 / github-flow.ja.md
Created July 9, 2016 16:25 — forked from Gab-km/github-flow.ja.md
GitHub Flow (Japanese translation)

GitHub Flow

31 Aug 2011

git-flowの問題点 (Issues with git-flow)

私は人々にGitを教えるためにあちこちを飛び回っているが、最近のほぼすべてのクラスやワークショップで git-flow についてどう思うかを尋ねられた。私はいつも、git-flowは素晴らしいと思うと答えている。何百万ものワークフローを持ったシステム(Git)を提供し、ドキュメントもあるし、よくテストされている。フレキシブルなワークフローは、実に容易なやり方で多くの開発者の役に立つ。標準的なものになりつつあり、開発者はプロジェクトや企業の間を移動しつつこの標準的なワークフローに馴染むことができる。