chromeは爆速でいいんですが、自分的にはまだfirefoxのほうが使いやすかったです。
さてfirefox4から追加されたタブのアニメーション機能。正直ゴミ同然の機能です。
特にタブを閉じるときにワンテンポ間があって、その後アニメーションして消えるのがうざいです。
これを設定でオフにできることが分かったので、さっそくオフにしました。これでかなりすっきりします。
about:config
↓
browser.tabs.animate
↓
false
about:config
↓
browser.tabs.animate
↓
false
$db = DB::connect(DSN);
$db = MDB2::connect(DSN);
$db->loadModule('Extended');
$rs->fetchRow(DB_FETCHMODE_ASSOC)
$rs->fetchRow(MDB2_FETCHMODE_ASSOC)
$db->limitQuery($sql, 0, 10);
$db->setLimit(10, 0);
$db->query($sql);
$db->quoteSmart($v["value"])
$db->quote($v["value"])
find . -name \*.php -print xargs grep limitQuery
# yum install php53-xml
# yum install php53-gd
# php -m
$ ./symfony openpne:upgrade-from-2 --origin=2.14
ALTER TABLE table_name ENGINE = InnoDB;
select distinct diary_comment_id from diary_comment_image;
update diary_comment set has_images = 1 where id in (↑で抽出したid);
# yum -y install mod_ssl
# cd /etc/httpd/conf
# openssl genrsa -out server.key 2048
# chmod 400 server.key
# openssl req -new -key server.key -out server.csr
# chmod 400 server.csr
# openssl req -new -out server.crt -key server.key -x509 -days 10950
# chmod 400 server.crt
# vi ../conf.d/ssl.conf
SSLCertificateFile /etc/httpd/conf/server.crt
SSLCertificateKeyFile /etc/httpd/conf/server.key
# service httpd configtest