목록개발 (157)
SNOWFLAKES DRAWING PAPER
[미리보기]
필요할것 같아서.. 실행> node test.js
링크다운1 다운2HOMEHOME 지원표HOMEHOMEHOME다운HOME다운HOMEHOME 출처:phpschool
AIR에서 EXE파일 외에 배치 파일등 실행하기위해 간단한 커맨드 실행 프로그램 만들었다. 사용법shell.exe notepadshell.exe test.bat 1 2 3shell.exe notepad test.txt...
JSmooth 프로그램으로 JAR를 EXE로 변환http://jsmooth.sourceforge.net/ 1. Skeleton에서 Console Wrapper 선택2. Executable에서 Executable Binary란에 출력 파일명(exe) 입력3. application에서 classpath란에 JAR 선택, Main class 선택4. Project > Compile 선택
조합(JS통신)해서 플렉스 단축키를 설정한다. - 자바스크립트 단축키 설정http://www.openjs.com/scripts/events/keyboard_shortcuts/
Sencha Touch Hello World 이전 환경 - JDK 설치 ( http://www.oracle.com/technetwork/java/javase/downloads/index.html ) - 톰캣 서버 다운로드( http://tomcat.apache.org/download-60.cgi ) - 이클립스 설치 ( http://www.eclipse.org/downloads/ ) 1. Sencha Touch SDK 다운로드 ( http://www.sencha.com/products/touch/download/ > Open Source에 download ) 2. Eclipse에 Dynamic Web Project 생성 - new Folder "st2" - st2 하위에 sdk 압축풀기 3. 아래 소스 ..
http://flex4fun.com/2010/11/30/flex4-use-textlayout-textflow-control-image-and-textwith-undo-and-redo/
Flex mobile performance checklist http://www.adobe.com/devnet/flex/articles/flex-mobile-performance-checklist.html [Download Flex SDK 4.6] [Flex] Introducing Adobe Flex 4.6 SDK
Introducing Adobe Flex 4.6 SDK http://www.adobe.com/devnet/flex/articles/introducing-flex46sdk.html [Download Flex SDK 4.6]
web.xml 파일에 아래와 같이 클래스를 설정해 준다. ... test.ChatServer ... 실행될 클래스를 만든다. package test; import java.io.PrintWriter; import java.net.ServerSocket; import java.net.Socket; import java.util.HashMap; public class ChatServer { private ServerSocket server; public ChatServer() { startServer(); } void startServer() { try { server = new ServerSocket(5011); System.out.println("접속을 기다립니다."); HashMap hashMap = ..
SDK 4.x spark 컴퍼넌트에 Scroller 컴퍼넌트가 있다. Scroller에 설정된 viewport의 스크롤 컨트롤 컴퍼넌트이다. MX 컴퍼넌트의 컨테이너에는 기본적으로 스크롤이 포함되어 있어 컨테이너에 ScrollEvent.SCROLL 이벤트를 받아서 스크롤 값을 확인하였다. 그런데 Scroller 컴퍼넌트에는 ScrollEvent.SCROLL(scrolling) 이벤트가 없어 스크롤시 이벤트를 받을수 없다. 그래서 Scroller에 viewport 설정할 Group을 확장해서 verticalScrollPosition, horizontalScrollPosition setter에 이벤트를 날리는 방법을 선택하였다. ... vp.addEventListener("verticalScrolling",..
Your browser supports HTML5 Canvas!
오라클 시퀀스 생성(자동증가) create sequence test_seq; CREATE OR REPLACE TRIGGER test_trigger BEFORE INSERT ON CD_POST_NO FOR EACH ROW BEGIN SELECT test_seq.NEXTVAL INTO :new.seq FROM dual; END; unique key를 생성하는 방법은 DBMS마다 차이가 있다. MS-SQL은 IDENTITY를, MySQL은 auto_increment와 같이 쉽게 사용할 수 있는 방법이 있는데 오라클에서는 다음과 같이 유사하게 구현할 수 있다. SQL> create table t ( 2 seqno number primary key, 3 id varchar(10), 4 name varchar(10..
1. to_number() ---> cast() ex) to_number(holiday_mon) --> cast( holiday_mon AS signed ) 2. to_char(sysdate,'yyyymmdd') => CAST( DATE_FORMAT( now( ) , '%Y%m%d' ) AS CHAR ) 3. 년월일시분초 => CAST( DATE_FORMAT( now( ) , '%Y%m%d%H%i%s' ) AS CHAR ) 4. rownum => SELECT @rownum:=@rownum+1 rownum, t.* FROM (SELECT @rownum:=0) r, mytable t; 5. to_char(balance,'999,999,999,999') => format(balance,0) 6. decode ..
오라클 dump export 오라클 덤프 export 방법 windows 1.cmd 창 띄우기 2.cmd 창에서 발로 명령어를 실행 3.exp 명령어 help 보기 c:\>exp help=y 4.명령어에서 자세한 옵션 내용을 확인하여 옵션을 설정할 수 있다. 5.간단한 명령어를 통한 exp 실행방법 exp user/userpw@TNSname full=n file=filename.dmp user : 오라클 계정 유저명 userpw 오라클 계정 유저 패스워드 TNSname : 해당 TNS name full=n : 계정의 파일들을 export 하겠다는 의미(기본세팅 : n) y로 설정시 무한 대기 시간이 기다리고 있음..(아마도 권한에 의해서 권한이 가져올수 있는 전체파일을 가져오는것 같음..system까지 ..
Ctrl + Shift + F 단축키 그리고... 이클립스 환경 설정에 XML > Editor > Split multiple attributes each on an new line 체크
사용 MonsterDebugger.initialize(this); MonsterDebugger.trace(this, "Hello World!"); 공식 홈페이지 - http://www.monsterdebugger.com/ AsDoc - http://www.monsterdebugger.com/asdoc/출처 / 설명 : http://doworld.tistory.com/10 AIR Runtime Download : http://get.adobe.com/kr/air/?promoid=BUIGQ
http://adoberia.co.kr/iwt/board/board.php?tn=pds_tech&id=362&mode=viewFileReference 클래스로 로컬 파일 로드하고 저장하기
http://sepiroth11.tistory.com/entry/SetPropertiesRuleServerServiceEngineHostContext-Setting-property-source-to-orgeclipsejstjeeserver%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8%EB%AA%85-did-not-find-a-matching-property 이클립스에서 이런 경구문구가 나온다면 servers탭에 자신이 추가한 서버를 더블클릭하면 overview가 나온다. 거기서 server options에 publish module contexts to separate XML files
http://finewoo.tistory.com/4 톰캣 구동시 아래 메지가 나타날때의 해결방법이다. 정보: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: .......(이하 생략) :요약하자면 자바경로에서 최적의 퍼포먼스를 위한 Native library를 찾지 못했다는 메시지다. Apache Portable Runtime에 관한 참고 내용이다. - Apache Portable Runtime (APR) based Native library for Tomcat - 참고자료 : http://tomca..
http://polygeek.com/2249_flex_display-html-text-in-the-spark-textarea source view (http://polygeek.com/flex/2249_displayHTMLText_SparkTextArea/srcview/index.html)
http://adoberia.co.kr/iwt/board/board.php?tn=pds_tech&page=7&id=277&mode=view 1. AIR 애플리케이션 샌드박스에서 JavaScript 보안 에러 회피하기 2. 이미지를 최초로 로딩한 후에 디스크에 캐싱하기 Migrating Serialization Changes in AIR
http://www.ddongkang.com/124 http://sewonist.com/2011/02/non-blocking-loop-homework/ http://jinustudio.com/blog/archives/3775 http://insideria.com/2009/04/51-actionscript-30-and-flex-op.html http://blog.jidolstar.com/196 http://blog.jidolstar.com/395 http://jinustudio.com/blog/archives/3775 (이하 회원 로그인이 필요) Object Pool 을 활용한 Flash 애플리케이션의 속도와 메모리 개선 http://adoberia.co.kr/iwt/board/board.php?tn=pd..
Command line warning D9035 : option 'Wp64' has been deprecated and will be removed in a future release 'Wp64' 옵션은 더 이상 사용되지 않으므로 이후 릴리스에서 제거될 예정입니다. Project -> Configuration Properties -> C/C++ -> Detect 64-bit Portability Issues -> No. 설정해주면 경고 메세지 안나온다.