SVN 접속시 Error validating server certificate for 'https://…': 에러가 발생했을 경우
svn.ssl.server 라는 폴더를 찾아서 제거한 후 다시 수행해 본다. * 참고 링크 http://stackoverflow.com/questions/6115170/svn-error-validating-server-certificate
svn.ssl.server 라는 폴더를 찾아서 제거한 후 다시 수행해 본다. * 참고 링크 http://stackoverflow.com/questions/6115170/svn-error-validating-server-certificate
http://choiscomputers.blogspot.kr/2011/10/window-7.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+ChoisCom+(CHOiS+com) * 참고 위의 방법으로 대부분 해결되지만, 제어판 > Windows Update 에서는 여전히 system default language 가 나온다. 외국 글들을 보면 언어팩을 별도로 다운로드 받아서 콘솔명령어를 실행하여 system default language를 변경하는 방법이 있는 것 같기는 한데…. => 이리저리 검색해 본 결과 정상적인 방법으로는 system default language를 바꿀 수 없는 것 같다.
전북대 공대 강아지 오월이 희귀애완동물 , 롭이어토끼 반성하는 토끼 , 멘붕 속에 귀여움 이쁜 토끼사진 모음 증말 귀엽군요 >., < !!
* find() – 대상 문자열에서 해당 패턴을 검색하여 일치하는 패턴이 일부라도 존재하면 true를 리턴한다. – find() 메서드를 수행할 때마다, 문자열 내에서 그 다음 순서의 해당 패턴을 찾는 것 같다. (Iterator처럼) 예를 들어 해당하는 패턴이 한 개만 있다면, 첫 find()의 결과는 true, 두 번째 find()의 결과는 false이다. – matches()에 비해서 상대적으로 활용도가 높을 것 같다. * matches()… Read More »
* 칼럼모델 > editoptions > dataEvents 속성을 정의해 준다. {name:’TAX_GBN’, index:’TAX_GBN’, width:90, editable:true, edittype:’select’, formatter:’select’, align:’center’, editoptions:{ value:’1:A;2:B;3:C’, dataEvents:[{ type:’change’, fn: function(e){ var rowId = $grid1[0].p.selrow; alert(rowId); }}] } },
String filePath = “/tmp/test.txt”;Runtime.getRuntime().exec(“chmod 644 ” + filePath); * java.io.File 객체의 setReadable(boolean) … 등의 메서드와의 비교 – File.set~() 계열은 소유자의 권한만 변경하는 듯 하다. (그룹, 기타 제외)
http://weather.ou.edu/~apw/projects/stress/ * 설치 ./configure –prefix=인스톨디렉토리./make ./make install * 실행 예 ./stress -c 1 * 궁금한 점 우리 시스템에 테스트 했을 때에는 cpu 1 올렸을 때 25%씩 정확하게 올라갔었다. 그래서 -c 4 를 주니 cpu점유율 100%를 찍고 말았다.왜 그랬을까? 좀 더 디테일하게 테스트 할 수 있는 방법이 없을까?
@RequestMapping(value={“/”, “aaa”, “bbb”}) * 참고 링크 http://stackoverflow.com/questions/2513031/multiple-spring-requestmapping-annotations
* 기준이 되는 상위 selector도 반드시 반복해서 써 주어야 한다는 점이 포인트. #tableA th, td { … } (X) #tableA th, #tableA td { … } (O)
http://www.windowstalk.co.kr/479
* commons-lang 의 ClassUtils 사용 => boolean isPrimitiveOrWrapped = ClassUtils.isPrimitiveOrWrapper(object.getClass()); * 참고 – String은 Wrapper 클래스가 아니다! * 참고 링크 http://stackoverflow.com/questions/709961/determining-if-an-object-is-of-primitive-type
StringBuilder sb = new StringBuilder(“AAA”); // 초기화 방법 1 – length를 0으로 설정 sb.setLength(0); sb.append(“BBB”); // 초기화 방법 2 – 새로운 객체를 생성하여 재할당 sb = new StringBuilder(“BBB”); * 참고 링크 (이게 좋다, 저게 좋다 의견이 분분하군요 >, <) http://stackoverflow.com/questions/5192512/how-to-clear-empty-java-stringbuilder
gradle을 이용한 빌드 자동화 Maven을 넘어 Gradle로 가자
http://blog.naver.com/pluulove84/100181879596
http://sourceforge.net/projects/nsis/ http://nsis.sourceforge.net/Main_Page
* 컴퓨터 환경 – Window 7 64bit – Geforce 250 GTS 내 경우에는 지포스(Geforce) 그래픽카드의 드라이버 버그 문제였다.드라이버를 최신 버전으로 설치했더니 해결이 되었다.구글 아니었으면 어쩔 뻔 했어 ㅠ_ㅠ… 에러가 났던 Geforce 드라이버 버전 => 9.18.13.1106 (311.06) 새로 설치한 Geforce 드라이버 버전 => 314.22 * 참고 링크 https://forums.geforce.com/default/topic/527373/powerpoint-slide-sorter-scrolling-broken-with-310-90-and-310-70-drivers
안드로이드 앱 설치, 무심코 ‘동의’ 누르시나요?
http://blog.naver.com/dooribbs/100024091513
http://helloworld.naver.com/helloworld/12864
http://blog.daum.net/darkandy/129 * 참고 – Eclipse Market Place에서 jdepend로 검색하면 설치 가능하다.