wiki https://github.com/koriym/BEAR.Sunday/wiki に移動しました
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
:w !sudo tee % |
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
sudo port sync | |
sudo port selfupdate | |
sudo port clean --dist outdated | |
sudo port upgrade outdated | |
sudo port -u uninstall |
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
<?php | |
// en: Put require scirpt each dir in case of you can't rely default include_path. (Script use relative path.) | |
// ja: デフォルトのincludeパスが使用できない場合に各ディレクトリにrequireのみを相対パスで行うファイルを配置します。 | |
// | |
// config | |
$initFileName = 'App.php'; | |
$initFilePath = '../../'; | |
// /config | |
// main |
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
Zend Framework | |
http://framework.zend.com/manual/ja/zend.form.forms.html | |
Yii | |
http://www.yiiframework.com/doc/guide/1.1/ja/form.builder | |
SolarPHP | |
http://at-byte.com/technology/solarphp-basic-user-authentication-example | |
Symfony2 |
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
.project | |
.DS_Store | |
.buildpath | |
.settings/ | |
Thumbs.db | |
htdocs/__* | |
htdocs/.htaccess | |
htdocs/emoji/ | |
logs/*.log | |
logs/pagelog.sq3 |
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
<?php | |
for ($i = 1; $i < 36; $i++) { | |
$filename = "vote_" . sprintf("%03d", $i) . '.mp3'; | |
echo "$filename."; | |
$a = file_get_contents("http://voices.of.the.elephpant.s3.amazonaws.com/{$filename}"); | |
file_put_contents($filename, $a); | |
} |
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
必要なもの | |
* PHP 5.3+ / 5.4 | |
* phpunit | |
以下のコマンドをターミナルで入力します。 | |
$ mkdir raytest | |
$ cd raytest | |
$ git clone [email protected]:koriym/Ray.Di.git |
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
List of colors for prompt and Bash | |
txtblk='\e[0;30m' # Black - Regular | |
txtred='\e[0;31m' # Red | |
txtgrn='\e[0;32m' # Green | |
txtylw='\e[0;33m' # Yellow | |
txtblu='\e[0;34m' # Blue | |
txtpur='\e[0;35m' # Purple | |
txtcyn='\e[0;36m' # Cyan | |
txtwht='\e[0;37m' # White |
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
git clone https://github.com/derickr/xdebug.git | |
cd xdebug | |
phpize | |
./configure --enable-xdebug --with-php-config=/usr/local/php/bin/php-config | |
make | |
make install | |
OSXにPHP5.4をバイナリインストールしたあとにxdebugが入らなかった時 |
OlderNewer