Xcode 회사 이름 바꾸기
Xcode에서 새로운 파일을 만들면 상단부분에 자동으로 주석을 만들어준다. 내가 아주 맘에 들어하는 부분중에 하나다. // // Botton.h // ProjectTest // // Created by apollo89 on 09. 10. 14.. // Copyright 2009 apollo89. All rights reserved. // 그런데 Copyright … Continue reading
Xcode에서 새로운 파일을 만들면 상단부분에 자동으로 주석을 만들어준다. 내가 아주 맘에 들어하는 부분중에 하나다. // // Botton.h // ProjectTest // // Created by apollo89 on 09. 10. 14.. // Copyright 2009 apollo89. All rights reserved. // 그런데 Copyright … Continue reading
Connection reset은 DB 서버측에서 커넥션이 종료되었으나 WAS는 그것을 알아차리지 못할때 발생합니다. TOMCAT의 경우 , evicator라는 것이 있어 정기적으로 비정상종료된 커넥션을 없애주는 옵션이 있습니다. 아래 스크립트를 참고하세요 – validationQuery=”SELECT 1 FROM DUAL” – testWhileIdle=”true” – timeBetweenEvictionRunsMillis=”3000″ <Resource name=”WmsPool” auth=”Container” type=”javax.sql.DataSource” … Continue reading
An MPMoviePlayerController object defines a full-screen movie player. You can use this class to play back movies stored in your application’s bundle or support directories. You can also use it to play movies and audio files loaded from a … Continue reading
Cactus Ecosystem Project Description Cactus is a simple test framework for unit testing server-side java code (Servlets, EJBs, Tag Libs, Filters, …). The intent of Cactus is to lower the cost of writing tests for server-side code. It uses … Continue reading
디버그 모드에서는 로그 나오게 하구 릴리즈에서는 로그 안나오게 하는 방법 http://theeye.pe.kr/entry/upgrade-NSLog-only-working-debug-mode //——————————————————————– 대부분 NSLog를 이용해서 카운터를 찍어보시는 것 같은데, 소스코드 변경할 필요없이, gdb에서 바로 찍어 볼 수 있습니다. (gdb) p (int)[obj retainCount] 이렇게 명령을 주면, obj의 retain count를 바로 … Continue reading
Tomcat vhost 설정시 특정 IP 만 허용 여러개의 도메인을 tomcat의 vhost 를 사용해서 쓰고있는데.. 특정도메인 www.xxx.com은 xxx.xxx.xxx.* 만 접근할수있도록 설정해야 할일이 생겼다.. 찾아봤더니 아래와 같이 설정하면 된다.. ]$ vi %tomcat%/conf/Catalina/www.xxx.com/ROOT.xml … <Context crossContext=”true” docBase=”/user/xxx/” path=”” reloadable=”true” privileged=”true” antiResourceLocking=”false” antiJARLocking=”false”> … Continue reading
내가 하고자 한 것은…. A서버의 AA DB에서 table A1 이 있고 B서버의 BB DB에서 table B1 이 있을때, A서버의 client 에서 A1테이블과 B1테이블을 조인하고자 한다.. 물론 JDBC로 두 DB를 연결해서 join 프로그램을 짜도 되는데… 그냥 할수 있는 방법이 없을까 … Continue reading
[구매하기] 이번에 교회에서 전교인 수련회를 진행하면서 같이 일하게된 장로님께서 선물해주신 책이다. 나에게 이책을 왜 선물해주셨을까? 내가 재미없게 사는것처럼 보였는지도 모르겠다.. 사실 교회에서는 그렇게 특별히 활동적이거나 즐겁게 지내는것같지 않다. 아무튼 배려를 쓴 저자인 한상복씨게 쓴책이라 관심이 생겼다. 배려도 참 재미있게 … Continue reading
너무나도 유명한 영상…. 짧지만 너무나 강렬하고 큰 감동이 온다.. 언젠가 나도 꼭…. 하나님이 우리를 위해 만드신 모든 세계를 돌아보고 싶다..
자바스크립트 배열 체크와 배역 내용 보기 function isArray(o) { return Object.prototype.toString.call(o) == ‘[object Array]’; }