[링크] Windows 7 의 에디션별 특징
http://www.betanews.net/article/444666
http://www.betanews.net/article/444666
http://www.zdnet.co.kr/ArticleView.asp?artice_id=00000039160910
http://www.parkoz.com/zboard/view.php?id=my_tips&no=13700
http://www.parkoz.com/zboard/view.php?id=my_tips&no=13737 http://www.parkoz.com/zboard/view.php?id=my_tips&no=13738 http://www.parkoz.com/zboard/view.php?id=my_tips&no=13739
http://codemonkeyism.com/generation-java-programming-style/
java.text.DecimalFormat df = new java.text.DecimalFormat(“#,###”); double amtDouble = 1234567890.123456; String amtString = df.format(amtDouble);
BigDecimal의 필요성 BigDecimal 사용 가이드
– 출처 : http://blog.naver.com/gseducation/20095625332 – * first_value 함수를 이용해서 최저 및 최고 구하기 select empno, ename, sal, first_value(sal) over (order by sal) “최저”, first_value(sal) over (order by sal desc) “최고” from emp order by sal; EMPNO ENAME SAL 최저 최고 ———- ———- ———- ———- ———- 7369 SMITH 800 800 5000 … Read More »
http://www.javaservice.net/~java/bbs/read.cgi?m=devtip&b=jdbc&c=r_p&n=1084502437
– 출처 : http://cafe.naver.com/tonkjsp/226 – – 출처 : http://dongsilove.tistory.com/101 – * Date 객체 생성 var dtNow1 = new Date(); // 시스템 오늘 날짜 var dtNow2 = new Date(5999000920); // 밀리초 값으로 날짜를 객체 생성 var dtNow3 = new Date(“March 12, 1980 12:20:25”); // 문자열 값으로 날짜를 객체를 생성 var dtNow4 = new Date(1977,10-1,28) // 직접 년, 월, 일 값을… Read More »
[해결] 내일쯤 555 칼넵 + 오버 + nb 오버 하려고하… [해결] 550BE 오버 시 CPU배수와 NB 배수 궁금증입니… [해결] CPU NB VID 와 NB VID 의 차이점이 무엇인가…
http://www.parkoz.com/zboard/view.php?id=my_preview&page=1&sn1=&divpage=8&category=1&sn=off&ss=on&sc=off&select_arrange=headnum&desc=asc&no=35612
http://mintyeye.tistory.com/12
http://blog.naver.com/aj0518/70066493073
페이지를 만들다가 어디에도 잘못된 곳이 없는데 tiles 레이아웃이 적용되지 않는 문제가 있었다. 정말 희한했던 것은, 소스보기를 하면 레이아웃의 모든 부분에 대한 소스가 보이는데, 실제 화면에서는 레이아웃 부분이 보이지 않았다는 것이다. 아무튼 고생고생 하면서 원인을 찾다가 다음의 코드가 원인임을 알았다. window.onload = initFunction; //initFunction은 직접 정의한 함수 레이아웃을 구성하는 페이지 중에 onload 이벤트를 사용하는 부분이 있었는데, 내가… Read More »
페이지를 초기에 로딩할 때 다음과 같은 값을 기본으로 INPUT 박스 안에 설정해 주어야 할 때가 있다. 시작일 : 20100101 종료일 : 20100131 (특정 월의 처음~끝) 위의 경우를 다음의 코드로 해결해 보자 Date now = new Date(); //MiscUtils은 사용자정의 유틸로, 어쨌든 결과는 ‘20100101’ 의 형태 String curDate = MiscUtils.RF_DATE.format(now); String strDt = curDate.substring(0,6) + “01”; //시작일 : 1일… Read More »
http://snoopy.textcube.com/822
고장난 HDD, RMA 서비스 받아보니
– 출처 : http://taizyeris.tistory.com/241 – 팝업을 띄울때 팝업에 실제와 같은 사이즈를 주어서 띄워도, sp2에서 팝업창 아래 상태바가 있는 경우와 그외의 os에서 상태바가 없는 경우 창 안의 내용들이 달라 보이는 경우가 있다. 또한 앞으로 나올 IE7의 경우에는 창 상단에 주소까지 나와서 많이 틀려보이는 경우가 발생한다. 이때 다음과 같은 스크립트를 사용하여 onload에 넣어주면, 상당히 깔끔한 window resize가 된다.… Read More »
– 출처 : http://vchaithanya.wordpress.com/2007/12/22/javaxservletservletexception-no-form-found-under-userloginform-in-locale-en_us/ – This is the exception thrown when i try to perform client-side validations using dynavalidatorform in struts: solution: check for the form name in the following files, this is where the problem occurs most of the times. Even is we add ‘/’ to the formname somewhere it throws the above exception. 1)… Read More »