-
updateするときのお話。新規でcreate-projectするなら何も困らない
-
php composer.phar update
する前に以下をチェック -
composer.jsonの修正
-
http://symfony.com/blog/symfony-2-3-0-the-first-lts-is-now-available
-
キャッシュファイルは事前にrmしておく
-
icuが4.4以上でないと怒られるので、事前にインストールしているicuのバージョンをチェックしておくこと
-
composer.jsonでバージョン指定すれば回避可能 http://php-sql-gdgd.jugem.jp/?eid=104
This file contains hidden or 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
function okc (f) { | |
var c = [38,38,40,40,37,39,37,39,66,65,13], | |
x = function () { | |
x.c = x.c||Array.apply ({},c); | |
x.r = function () { | |
x.c = null | |
}; | |
return x.c | |
}, |
This file contains hidden or 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
FROM centos:6.4 | |
MAINTAINER Masao Maeda | |
RUN yum install -y git ruby rubygems | |
RUN gem install bundler | |
RUN rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm | |
RUN yum install -y npm |
This file contains hidden or 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
;; 日本語IM用の設定 | |
(setq default-input-method "MacOSX") | |
;; 日本語の設定(UTF-8) | |
(set-language-environment 'Japanese) | |
(prefer-coding-system 'utf-8) | |
;; load path | |
(setq load-path | |
(append | |
(list |
OlderNewer