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
#!/bin/sh | |
CONFIG_FILE="/etc/httpd/conf/httpd.conf" | |
DATE=`date '+%Y%m%d'` | |
if [ -f "${CONFIG_FILE}.orig.${DATE}" ]; then | |
echo '(maybe)apache config file is already converted. :-P' | |
exit | |
fi |
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
CREATE OR REPLACE FUNCTION rd256_decode(text, text, text) | |
RETURNS text AS | |
$BODY$ | |
use Mcrypt; | |
use MIME::Base64; | |
use utf8; | |
use Encode qw(encode decode); | |
my ($encoded, $key, $iv) = @_; |
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
--- http_load.c.orig 2013-04-10 16:31:14.641380516 +0900 | |
+++ http_load.c 2013-04-10 17:07:36.480199674 +0900 | |
@@ -183,6 +183,8 @@ | |
static char* cipher = (char*) 0; | |
#endif | |
+char* user_agent; | |
+ | |
/* Forwards. */ | |
static void usage( void ); |
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
mysqlcf2 log 20121018 | |
MySQL Casual Talks Fukuoka #2 | |
--- | |
@Spring_MT はじめに | |
発表すること(内容じゃなくて)をcasualに | |
椅子もまさかりも飛んでこない | |
情報共有≠事業価値の欠損 |
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
mysql -ufusic -h testdb.xxxxxxxxxxxxx.ap-northeast-1.rds.amazonaws.com -p -e "show variables;" > mysql.params | |
Variable_name : Value | |
----- | |
auto_increment_increment : 1 | |
auto_increment_offset : 1 | |
autocommit : ON | |
automatic_sp_privileges : ON | |
back_log : 50 | |
basedir : /rdsdbbin/mysql/ |
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
福岡インフラ勉強会 | |
@matsumanaさんのまとめエントリ | |
http://matsumana.wordpress.com/2012/06/30/%E7%AC%AC3%E5%9B%9E-%E3%82%A4%E3%83%B3%E3%83%95%E3%83%A9%E5%8B%89%E5%BC%B7%E4%BC%9A%EF%BC%A0%E7%A6%8F%E5%B2%A1%E3%81%A7lt%E3%81%97%E3%81%A6%E3%81%8D%E3%81%BE%E3%81%97%E3%81%9F/ | |
@matsumana 脱職人芸への道 | |
[資料]http://www.slideshare.net/matsumana0101/vol3-lt-20120629 | |
サーバの設定配布とか同期とか | |
- 手作業 | |
- rsync |
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
MySQL Casual Talks Fukuoka | |
--- | |
@Spring_MT はじめに | |
発表すること(内容じゃなくて)をcasualに | |
情報共有≠事業価値の欠損 | |
--- |
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
--- pom.xml.orig 2012-03-17 17:34:33.964667039 +0900 | |
+++ pom.xml 2012-03-17 17:40:01.000000000 +0900 | |
@@ -46,7 +46,7 @@ | |
<dependency> | |
<groupId>org.dspace</groupId> | |
<artifactId>dspace-solr</artifactId> | |
- <version>1.4.1.1</version> | |
+ <version>3.3.0.0</version> | |
<classifier>skinny</classifier> | |
<type>war</type> |
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
*** cli_helper.rb 2012-02-08 20:01:17.520514397 +0900 | |
--- cli_helper.rb.org 2012-02-08 19:49:11.137878140 +0900 | |
*************** | |
*** 62,79 **** | |
outbuf = stdout.read | |
errbuf = stderr.read | |
} | |
! begin | |
! GC.disable | |
! stat = Open4::popen4(cmd, &blk) |
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
#!/bin/sh | |
CONFIG_FILE="/etc/httpd/conf/httpd.conf" | |
DATE=`date '+%Y%m%d'` | |
if [ -f "${CONFIG_FILE}.orig.${DATE}" ]; then | |
echo '(maybe)apache config file is already converted. :-P' | |
exit | |
fi |
NewerOlder