DonzBox.com(599)
-
google api 문자인식 OCR
테스트 페이지 http://googlecodesamples.com/docs/php/ocr.php?token=COie8eemChDj2rb5-_____8BGJzOzcMF 설치가이드 http://yusuke.homeip.net/diary/2007/04/14/1176560157667.html
2010.03.05 -
javascript 확장자 자르기
화일명은 그대로 두고, 확장자만 변하게 하기 화일명 뒤에 "_copy"를 붙여 바꾸기 function cutEx(path){ //확장자 자르기 var pathTxt=path, exText=""; var dirCutNo=( (/\//.test(path))? path.lastIndexOf("/") : 0 ); if(/\./.test(path.slice(dirCutNo))){ pathTxt=path.slice(0, path.lastIndexOf(".")); exText=path.slice(path.lastIndexOf(".")); }; return [pathTxt,exText]; }; var filePath="aaa/zasshi.indd"; alert("확장자: "+cutEx(filePath)[1]+"\n파일..
2010.03.05 -
강제 카피 copy
cp: omitting directory 에러가 나올때 cp -rp 카피원본 카피사본
2010.03.05 -
하위 디렉토리 용량 확인
du -h --max-depth=1 /디렉토리명 하위 디렉토리의 크기를 확인할 때 du하면 정신없이 내려옵니다. 이런 경우 # du -h --max-depth=1 /usr 라고 입력해 보세요. 하위 디렉토리 각각의 용량만 기록하게 됩니다. ** du(disk usage) & df(device free) 의 차이점 ** du : 디렉토리나 서브 디렉토리, 파일의 사용 용량을 보여 줍니다. df : 마운트된 시스템에서 사용중이거나 사용 가능한 디스크 공간을 보여 줍니다. [출처] [Linux] 하위 디렉토리 용량 확인하기|작성자 hea7ven http://www.rootman.co.kr/bbs/zboard.php?id=linux&page=1&page_num=30&category=5&sn=off&ss=on&s..
2010.02.25 -
routing 규칙을 변경하자
문자 또는 그림에 링크를 걸때 xxx.com/index.php/module/action 과 같이 index.php를 표시하지 않게 할 경우 /apps/fornt/config/setting.yml을 all: no_script_name: on 와 같이 수정정
2010.02.25 -
Apache 관련 감시툴
awstats http://www.nltechno.com/awstats/awstats.pl?config=destailleur.fr 1月 2010 2月 2010 3月 2010 4月 2010 5月 2010 6月 2010 7月 2010 8月 2010 9月 2010 10月 2010 11月 2010 12月 2010 月 訪問者 訪問数 ページ 件数 バイト 1月 2010 899 1171 2317 12550 36.95 Mb 2月 2010 650 875 1694 9199 27.19 Mb 3月 2010 0 0 0 0 0 4月 2010 0 0 0 0 0 5月 2010 0 0 0 0 0 6月 2010 0 0 0 0 0 7月 2010 0 0 0 0 0 8月 2010 0 0 0 0 0 9月 2010 0 0 0 0 0 10月 201..
2010.02.24