06/29: Flashレイヤーを重ねる
Linux and UNIX fc and history command information
# history (show command history list) # fc -l (show command history list) # !40 or !grep
06/25: 画像編集 GIMP
06/22: Javascript > 透明度を変更する
とほほのスタイルシート入門
/** * change Opacity * @param string id * @param integer num 0% to 100% */ function _changeOpacity(id, num) { if(document.all) { document.getElementById(id).style.filter="alpha(opacity=0)"; document.getElementById(id).filters.alpha.opacity = num; } else if(ua.indexOf('Gecko')!=-1) { document.getElementById(id).style.MozOpacity = (num / 100); } }
Array.indexOf in Internet Explorer - soledad penad�s
if(!Array.indexOf){ Array.prototype.indexOf = function(obj){ for(var i=0; i<this.length; i++){ if(this[i]==obj){ return i; } } return -1; } }
Geoscience Australia: Geodesy - Calculating Distances Between Two Points good for google map?
How To Customize the Windows Explorer Views in Windows XP
Example: %SystemRoot%\explorer.exe /root, D:\ethel\apps\web, /e
Example: %SystemRoot%\explorer.exe /root, D:\ethel\apps\web, /e
MySQL AB :: MySQL 3.23, 4.0, 4.1 Reference Manual :: 14.2.5 InnoDB Startup Options and System Variables
【MySQLウォッチ】第32回 MySQL Enterprise 最初のバージョンアップとデータベースファイルのリサイズ:ITpro
idbファイルを作り直すには、alter table tablename type=innodb;
【MySQLウォッチ】第32回 MySQL Enterprise 最初のバージョンアップとデータベースファイルのリサイズ:ITpro
idbファイルを作り直すには、alter table tablename type=innodb;
06/15: Linux > grep and xargs
【 ファイルから文字列を検索する 】:ITpro
例1: 現在のフォルダ以下にあるPHPファイルから、MyPrentClassを継承しているファイルを探し、さらにSmartyテンプレートの場所を探す。
$ grep -rHl "extends MyPrentClass" ./*.php | xargs grep -nH "\.tpl"
例2: 現在のフォルダ以下から、ディレクトリ名".svn"を除外して、MyTestClassを検索する。
$ find . -type d -name .svn -prune -o -name \*.php -print | xargs grep -nHi "class MyTestClass"
例3: 現在のフォルダ以下から、ディレクトリ名".svn"を除外して、phpを検索し、ファイル名に2008を含むファイルをZIPする。
$ tar -czvf test_gz_file.gz `find . -type d -name .svn -prune -o -name '*.php' -print | grep '2008'`
例4: ログフォルダから過去一日以内に修正されかつエラーを探す。
$ find /var/log/ -type f -mtime -1 -print | xargs grep -rn -P '(2009(/|-)05(/|-)11|11(/|-)May(/|-)2009)' -A 5 | grep -P '(ERR|SEVERE|WARN|Exception)' -A 3 | more
find ./ -name "*tar.gz" | xargs -n1 tar xzvf
例1: 現在のフォルダ以下にあるPHPファイルから、MyPrentClassを継承しているファイルを探し、さらにSmartyテンプレートの場所を探す。
$ grep -rHl "extends MyPrentClass" ./*.php | xargs grep -nH "\.tpl"
例2: 現在のフォルダ以下から、ディレクトリ名".svn"を除外して、MyTestClassを検索する。
$ find . -type d -name .svn -prune -o -name \*.php -print | xargs grep -nHi "class MyTestClass"
例3: 現在のフォルダ以下から、ディレクトリ名".svn"を除外して、phpを検索し、ファイル名に2008を含むファイルをZIPする。
$ tar -czvf test_gz_file.gz `find . -type d -name .svn -prune -o -name '*.php' -print | grep '2008'`
例4: ログフォルダから過去一日以内に修正されかつエラーを探す。
$ find /var/log/ -type f -mtime -1 -print | xargs grep -rn -P '(2009(/|-)05(/|-)11|11(/|-)May(/|-)2009)' -A 5 | grep -P '(ERR|SEVERE|WARN|Exception)' -A 3 | more
find ./ -name "*tar.gz" | xargs -n1 tar xzvf
Plugging Aptana into an existing Eclipse configuration - Aptana
Update site: http://update.aptana.com/install/3.2/
Update site: http://update.aptana.com/install/3.2/
06/01: HTML > フォーム送信の注意事項
CheckboxとRadioは、選択しないとデータを送信しない。