2007-06-01から1ヶ月間の記事一覧

jsの圧縮

jsPacker.pl -i hoge.js -o hoge_pack.js -e62 -e95(High-ascii)で圧縮するとエラー -e62(alphanumeric)で動作

windowsのファイルのパーミッションを整える

sh

共有サーバからコピーしてきたwindowsのファイルのパーミッションを整える。 Thumbs.dbを削除しとく。 #!/bin/sh d=`pwd` find "$d" -type f -name 'Thumbs.db' | xargs rm find "$d" -type f | xargs chmod 0644 find "$d" -type d | xargs chmod 0755 echo…

無望

4級ゲット! 追いつき追い越せ、三井ゆり。 目指せ、ワールドカップ!

php5でphp4のスクリプトを手っ取り早く動かす

php

// error_reporting( E_ALL ^ E_NOTICE ); if ( (int) PHP_VERSION > 4 ) { ini_set( 'zend.ze1_compatibility_mode', true ); } set_error_handler()使ってる場合 if ( (int) PHP_VERSION > 4 ) { set_error_handler( $callback, E_ALL ); } else { set_err…

PEAR::PHP_Beautifier

php

id:oppara:20070501やっぱ気に入らないので適当に修正 PEAR::PHP_Beautifierのversionは、0.1.13 php_beautifierの修正 try{}内、$aFiltersDirectoryの値がなんでか消えてしまうので、$aFiltersのチェックの前に$aFiltersDirectoryをチェックするように修正…

vim7コンパイル(三たび)

vim

Portfileの作者さんに感謝! splhack: vim 7.1 release http://lapangan.net/darwinports/index.php?PrivatePortfile%2FVim mig-ration: Macでいろいろ対応したVim7.1(gvim)のインストール http://lapangan.net/darwinports/index.php?HowTo%2FLocalPortfile…