Skip to content

Instantly share code, notes, and snippets.

View uzyexe's full-sized avatar
🏠
Working from home

Shuji Yamada uzyexe

🏠
Working from home
  • Periplous / SAKURA internet
  • Asia/Tokyo
  • X @uzyexe
View GitHub Profile
git clone https://github.com/robn/towncrier.git
cd towncrier
curl -L http://cpanmin.us | perl - Carton
carton install --deployment
cpanm Task::Plack
docker run -d \
--name="newrelic" \
--net="host" \
--pid="host" \
--env="NEW_RELIC_LICENSE_KEY=YOUR_NEW_RELIC_LICENSE_KEY" \
--volume="/var/run/docker.sock:/var/run/docker.sock:ro" \
--volume="/sys/fs/cgroup/:/sys/fs/cgroup:ro" \
--volume="/dev:/dev" \
--restart=always \
uzyexe/newrelic
@uzyexe
uzyexe / panamax-coreos-installer.sh
Created August 13, 2014 17:05
Panamax Install Command for CoreOS
mkdir panamax
cd panamax
curl -O http://download.panamax.io/installer/pmx-installer-latest.zip
unzip pmx-installer-latest.zip
sudo su
./coreos install --stable
@uzyexe
uzyexe / Rakefile
Created November 25, 2016 12:32
ServerSpec Rakefile sample
require 'rake'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
desc 'Run all tests on CircleCI'
task circleci: [:style]
desc 'Run all style checks'
task style: 'style:ruby'