본문 바로가기

전체 글

(253)
VeraMono + 한글폰트 개발 툴에 적용하는 좋아라 하는 폰트. 인터넷 바다에서 파닥 파닥
spring 과 Log4J 설치시 log4J.dtd 가 없다는 경고 메세지. 원문 :https://issuetracker.springsource.com/browse/STS-2740 The log4j.xml files in the project generated by Spring MVC Template Project in the Dashboard produce warnings in STS 3.0.0.M2.WARNING: The file cannot be validated as the XML definition "some_path\src\main\java\log4j.dtd (The system cannot find the file specified)" that is specified as describing the syntax of the file cannot be located.I..
javascript 소수점 연산. function.. function roundXL(n, digits) { if (digits >= 0) return parseFloat(n.toFixed(digits)); // 소수부 반올림 digits = Math.pow(10, digits); // 정수부 반올림 var t = Math.round(n * digits) / digits; return parseFloat(t.toFixed(0)); } 자바스크립트 소수점 자리수 계산 사용법 : roundXL(대상,자리수); 출처 : http://blog.naver.com/caesar0342?Redirect=Log&logNo=20120341657
jquery http://tutsplus.com/lesson/hello-jquery/
코드카데미. http://www.codecademy.com 프로그래밍 학교.ㅋ
anyedit tools (eclipse plug-in) 코딩하는데 쓰이는 잡다한 기능들.. 꽤나 편함. http://andrei.gmxhome.de/eclipse.html 방문 해보면. 다른 플러그인들도 많음.
[ORACLE] DBA_TAB_COLUMNS, DBA_TAB_COMMENTS DBA_TAB_COLUMNS - 모든 테이블의 컬럼 정보 DBA_TAB_COMMENTS - 테이블의 코멘트 정보 SELECT * FROM DBA_TAB_COLUMNS
findBug - Eclipse IDE http://findbugs.sourceforge.net/ 나중에 다시 한번 찾아보자.