분류 전체보기94 badaSDK로 만든 binary를 bada시뮬레이터에 띄워보자는 취지 매번 바이너리를 import하는 것이 번거러워 맹글었는데, 물론 메뉴얼에 수동으로 동작하는 방법에 대하여 짦막하게 언급은 되어 있다 하지만, 게으른 나 이기에 자동화 시키기로 했다는... 기능은 이렇다. 1. Simulator 실행 - 특정 binary의 위치를 읽어들인다. - unzip을 하여 manifest.xml, bin디렉토리내의 *.exe파일을 풀어낸다. - Simulator, PhoneShell.dll를 위 정보로 실행시킨다. 2. Simulator 종료 - Simulator가 실행 여부를 표시하고 강제종료를 활성화 시킨다. - 사용자의 의도에 의하여 강제종료를 행한다. //-------------------------------------------------------------------.. 2010. 6. 10. jprofiler 써왔던 optimize it이 jprofiler로 돌아왔따. 언능 받아야지. 2010. 6. 4. SketchFlow와 Blend라... 4GL에서 Prototyping하던 것이 요구에 맞춰진 새로운 도구로 나온건가? 계속 찾아봐야겠따. 2010. 5. 18. JIRA에서 SOAP을 통한 Issue등을 제어하기 위하여 자바로 하는 것이 쉬웠었는데, CPP로 다시 작성하는 중. _di_JiraSoapService InterfaceVariable; HTTPRIO1->QueryInterface(InterfaceVariable); if(InterfaceVariable) { WideString token = InterfaceVariable->login(WideString("test"), WideString("test")); Memo1->Lines->Add(token); RemoteServerInfo *ri = InterfaceVariable->getServerInfo(token); Memo1->Lines->Add(ri->version); // 개별 task RemoteIssue *ris = InterfaceVariable->g.. 2010. 5. 3. MAC에서 weblogic을 돌려보자. 맥에서 개발을 하려고 하다가 보니 weblogic을 띄워 쓰는 주변분이 없어 여기 저기 찾아보다가 이렇게 쓰게 되었다. 여기에 기록을 남긴다. --------------------------------------------- otn.oracle.com에서 hp(unix) 파일인 .jar를 받자. 이렇게 실행했다. /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/bin/java -Xmx1024 -Dos.name=unix -jar wls1032_generic.jar 자바 홈은 여기다. /System/Library/Frameworks/JavaVM.framework/Home setDomainEnv.sh USER_MEM_ARGS="-Xms1024m.. 2010. 1. 6. Captcha 같이 영문(대+소)+숫자 를 섞어서 출력하려고 하다가 보니 몇가지를 만들었네. "Completely Automated Public Turing test to tell Computers and Humans Apart" Code1 근데 말이지… 좀더 줄이고 다양하게 할 수 있을꺼 같은데… -------------------------------------------------------------------------------- public static String getCode(int len) { byte[] wd = new byte[]{0x41,0x61,0x30,0x30}; int[] lwd = new int[]{26,26,10,10}; Random r = new Random(); String str = ""; for(int i = len; i-- > 0;) str += (cha.. 2009. 11. 24. 이전 1 ··· 6 7 8 9 10 11 12 ··· 16 다음