2008-12-01から1ヶ月間の記事一覧

phpStylist

PHP_Beautifierには見切りをつける。 ラッパー #!/bin/sh php=`which php` stylist="/path/to/phpStylist.php" $php $stylist "$@" \ --indent_size 4 \ --line_before_comment_multi \ --keep_redundant_lines \ --space_inside_parentheses \ --space_afte…

漢になってみる

zsh

.zshrc bindkey -v bindkey "^j" vi-cmd-mode bindkeyの一覧表示 % bindkey -L|lv http://journal.mycom.co.jp/column/zsh/004/index.html

入力されたデータの前処理

ヌル文字の削除 trim(全角スペースを含む) 全角英数字を半角英数字、半角カナを全角カナに変換 app/app_contoroller.php内 array( 'encoding' => 'SJIS-win' ) ); app/components/data_prep.php

タグジャンプ

vim

Vim でタグジャンプを使ってみる - Archiva カーソル位置の単語をタグとみなしてジャンプ。 C-] 直前のタグに戻る。 C-t カーソル位置の単語の定義を、プレビューウィンドウで開く。 C-w } プレビューウィンドウを閉じる。(:pcと同じ) C-w C-z 複数候補があ…

NERDTree

vim

The NERD tree - A tree explorer plugin for navigating the filesystem : vim online http://vimwiki.net/?scripts%2F18 mapping で o let g:NERDTreeMapActivateNode="<cr>"トグル nnoremap m(_ _)m <esc>:NERDTreeToggle<cr> NERDTreeウィンドウを閉じてファイルを開</cr></esc></cr>…

AssertTags()で正規表現

unit testing - How to write an AssertTags test in SimpleTest with regex? - Stack Overflow Some text</p>"; $expected = array( '<p', 'preg:/[A-Za-z\.\s\,]+/', '/p' ); $this->assertTags( $result, $expected )</p',>

cakeError(): 'error'以外のメソッド名は無視される。

'error'以外のメソッド名は、debug される。 よくあるパターン /app/error.php class AppError extends ErrorHandler { function foo( $params ){ /app/controller/some_controller.php $this->cakeError( 'foo', $params ); //debug < 1 の場合、404か500の…