본문 바로가기

svn 필수 설정들. >>authz 모든 저장소에 유저를 두고 싶다는 가정하에.. [/] user = rw [/] 안해주어서 20분정도 고생함.. >> svnserve.conf anon-access = none anon-access = read 로 되어 있는데 none으로 바꾸어주어야 한다.
Sample Database 다운로드 download site : http://dev.mysql.com/doc/index-other.html 사용법은 해당 Database 압축을 풀고 mysql mysql < filename.sql ex) mysql -t < employees.sql
apt-get으로 sun-java 를 설치하고자 할 경우 apt-cache search sun-java 를 검색을 했는데 없다. sun-javadb-client - Java DB client sun-javadb-common - Java DB common files sun-javadb-core - Java DB core sun-javadb-demo - Java DB demo sun-javadb-doc - Java DB documentation sun-javadb-javadoc - Java DB javadoc 어찌되었나 싶었더니 어느샌가 openjdk로 바뀌었나 보다... openjdk-6-jdk - OpenJDK Development Kit (JDK) openjdk-6-jre - OpenJDK Java runtime, using Hotspot JIT openjd..
add-apt-repository를 사용할 수 없을때 일부 VM에서는 Ubuntu 에 add-apt-repository 를 사용할 수 없다. apt-get install python-software-properties
script에서 trim 사용하기. String.prototype.trim = function(){ return this.replace(/(^\s*)|(\s*$)/gi, ""); }; String.prototype.ltrim = function(){ return this.replace(/(^\s+)/, ""); }; String.prototype.rtrim = function(){ return this.replace(/(\s+$)/, ""); }; 사용법은.. var str = 'ABC ' ; str.trim();
iBatis isEqual top_vacancy = 'Y',
JPA Data Partitioning - Scaling the Database 참조 할 것 http://java-persistence-performance.blogspot.kr/2011/05/data-partitioning-scaling-database.html
extjs grid 헤더 통합 및 하단 합계 추가. 그리드 사용중 헤더 통합, 하단에 합계를 노출해야할 업무가 있다. features에 ftype을 summary로 해서 통계 기능을 이용하면 된다. 기본적으로 sum, max, min, average, count를 제공한다. //commify는 0,000 포맷으로 변환해주는 펑션 function summaryRenderer(value, summaryData, dataIndex) { if(Number(value) > 0) value = commify(Number(value)); return value+ ' 명'; } grid = Ext.create('Ext.grid.Panel', { store : store, stateful : false, collapsible : false, multiSelect : fa..