ChromeCanary 64bit版を使う https://www.google.com/intl/en/chrome/browser/canary.html こちらからインストーラーをダウンロードして実行すれば良いですが、 すでに32bit版が入っていると実行で… alkoshikawaハック2014.06.09 214
TinyTinyRSSのNginxの設定 server { listen 80; server_name {server_name}; root /var/www/vhosts/tinytinyrss; location / { index index.php … alkoshikawaハック2014.06.09 281
コマンドラインからmicroインスタンスを作成する GUIから作るのに疲れた人向けです。 vim /root/.bash_profile — export AWS_ACCESS_KEY={access_key} export AWS_SECRET_KEY={secre… alkoshikawaハック2014.06.06 301
bashでカウントダウン #/bin/bash function countDown() { start=1 end=120 echo "please wait $end seconds" while [[ $start -l… alkoshikawaハック2014.06.05 3,788
EC2でスワップを追加する EC2では特定のインスタンスタイプ以外はswapがデフォルトでありません。 micro以外のインスタンスでは/dev/xvda3(/dev/sda3)が用意されていてそれを使うようです。 mkswap /dev/xvda… alkoshikawaハック2014.06.05 554
TestLinkのNginxの設定 server { listen 80; server_name {server_name}; root /var/www/vhosts/testlink; location / { index index.php ind… alkoshikawaハック2014.06.04 583
Glueレコードを確認する example.orgの場合 dig org. NS ANSWER SECTIONのサーバーで検索する dig @b0.org.afilias-nst.org. example.org ADDITIONAL SECTIO… alkoshikawaハック2014.06.03 905
DolibarrのNginxの設定 server { listen 80; server_name {server_name}; root /var/www/vhosts/dolibarr/htdocs; location / { index index.… alkoshikawaハック2014.06.03 364
Gitのパスワードをある程度保持させる httpsでGitを使っていると毎度パスワード入力が求められますが、期限付きのキャッシュを使うことができます。以下は1週間 git config –global credential.helper cache –ti… alkoshikawaハック2014.06.02 586