Archives

You are currently viewing archive for June 2007
Category: Web dev
Posted by: hajime osako
Deft Dot Dodge / Script Tips / CSS

param name="wmode" value="opaque"
Category: Web dev
Posted by: hajime osako
Category: Linux tips
Posted by: hajime osako
Linux and UNIX fc and history command information
# history (show command history list)
# fc -l (show command history list)
# !40 or !grep
Category: Web dev
Posted by: hajime osako
Category: Z. links
Posted by: hajime osako
Category: Web dev
Posted by: hajime osako
とほほのスタイルシート入門

/**
 * 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);
   }
}
Category: Web dev
Posted by: hajime osako
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;
   }
}
Category: Web dev
Posted by: hajime osako
Category: MS tips
Posted by: hajime osako
How To Customize the Windows Explorer Views in Windows XP

Example: %SystemRoot%\explorer.exe /root, D:\ethel\apps\web, /e
Category: Web dev
Posted by: hajime osako
Category: Linux tips
Posted by: hajime osako
【 ファイルから文字列を検索する 】: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
Category: Web dev
Posted by: hajime osako
Plugging Aptana into an existing Eclipse configuration - Aptana

Update site: http://update.aptana.com/install/3.2/
Category: Web dev
Posted by: hajime osako
Category: Web dev
Posted by: hajime osako
CheckboxとRadioは、選択しないとデータを送信しない。