Tags
- 다빈치 리졸브
- 프런트엔드
- postman session
- C++
- postman tests
- emplace_back
- postman csv
- Java
- postman pre-request
- postman collection variables
- 좋은 개발자
- c#
- LSL_Script
- postman automations
- postman excel
- 우수한 프런트 개발자
- UI/UX Engineer
- Unity
- oracle
- MFC
- postman html parse
- solidity
- Android
- Front-end developer
- postman collection
- postman
- Intellij
- Interaction developer
- web developer
- Android/iOS Developer
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Archives
- Today
- Total
목록Develop (kids) (38)
david's daily developer note
LSL_Script 오브젝트 선택시에, 웹페이지 연결하기.
touch_start(integer total_number) { key gAvatarKey = llDetectedKey(0); llLoadURL(gAvatarKey, "View the offical Second Life website.", "http://www.secondlife.com"); }
Develop (kids)
2011. 4. 19. 20:26
SL Second Life Viewer2 로컬 OpenSim 서버 접속 하기.
SL Viewer2의 실행 아이콘에 오른쪽 버튼을 누르고, 속성 다이얼로그창에서, 대상(T): 칸에 , 다음과 같이 실행 파일 위치 다음에, 로컬을 명시해주고, "C:\Program Files\SecondLifeViewer2\SecondLife.exe" --loginuri http://127.0.0.1:9000 접속 화면에서, Mode를 Basic으로 변경한 후, 아래와 같이 접속 정보를 적고~ 접속 Username : [first name][공백][last name] Start location : [local server name]
Develop (kids)
2011. 4. 19. 19:48
[Android] Thread 강제 종료 설정.
private Thread Update = new Thread() { public void run() { // TO DO: } }; Update .setDaemon(true); Update .start(); 안드로이드에서, 위와 같은 Update스레드를 구동하기 전에(순서가 중요함~) setDaemon(true); - 함수를 호출하여 True값을 지정하면, Update 스레드는 메인 스레드가 종료될 때, 강제 종료된다. 깔끔한 코딩.
Develop (kids)
2011. 4. 8. 21:28