Skip to content

Instantly share code, notes, and snippets.

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

たびと koko1000ban

🏠
Working from home
View GitHub Profile
@melborne
melborne / README
Created August 7, 2012 11:42
Lack is a minified Rack just for study.
Lack is a minified Rack just for study.
@msykiino
msykiino / percona.repo.sh
Created October 2, 2012 05:58
Percona repo setup in ScientificLinux
#!/bin/sh
#set -x
arch=`uname -p`
gpgk="/etc/pki/rpm-gpg/RPM-GPG-KEY-percona"
major_ver=`cat /etc/issue \
| awk 'NR==1{print $0}' | sed 's/^.* release //' \
| awk '{print $1}' | sed 's/\.[0-9]*$//'`
@msykiino
msykiino / Howto-XtraBackup.md
Created October 3, 2012 05:48
Doc - How to use XtraBackup
@lloydmeta
lloydmeta / gist:4958987
Created February 15, 2013 07:34
Using OOBGC with Unicorn along with a UnicornKiller that kills workers if they use too much memory
#--- Credit: http://kzk9.net/unicorn-configuration-on-heroku
# config.ru
# This file is used by Rack-based servers to start the application.
require ::File.expand_path('../config/environment', __FILE__)
# Unicorn self-process killer
@shimizukawa
shimizukawa / Cheffile
Created April 2, 2013 10:41
chefでCentOSにMySQL5.5以降をインストールしたい! -> fork版 mysql cookbookを使えばできる!(このgist) -> remi repository使えば yum install mysql-serverでいけるよ! http://tk0miya.hatenablog.com/entry/2013/04/03/141656 (新情報!!)
cookbook 'mysql',
:git => 'https://github.com/9minutesnooze/mysql.git',
:ref => 'mysql56'