- MFC
- emplace_back
- Front-end developer
- Android/iOS Developer
- UI/UX Engineer
- solidity
- postman tests
- postman excel
- C++
- web developer
- Java
- postman
- postman html parse
- Intellij
- 좋은 개발자
- oracle
- 프런트엔드
- LSL_Script
- postman pre-request
- postman collection
- postman session
- Interaction developer
- c#
- postman csv
- postman collection variables
- Android
- Unity
- 다빈치 리졸브
- 우수한 프런트 개발자
- postman automations
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Today
- Total
목록전체 글 (174)
david's daily developer note
사용자 클레스 : Serializable 구현 public class Camera implements Serializable { } 보내는 쪽~ ArrayList Cameras = new ArrayList(); Cameras.add(testCamera1); Cameras.add(testCamera2); intent.putExtra("Cameras" , Cameras); 받는 쪽~ Serializable camerasSerial = intent.getSerializableExtra("Cameras"); ArrayList cameras = (ArrayList)camerasSerial; for( Camera camera : cameras) { adapter.addItem(camera); }
Context mContext = getApplicationContext(); LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(LAYOUT_INFLATER_SERVICE); View layout = inflater.inflate(R.layout.systeminfo,null); AlertDialog.Builder aDialog = new AlertDialog.Builder(MobileSmartClient.this); aDialog.setTitle("Connection Information"); aDialog.setView(layout); aDialog.setPositiveButton("Connection", new DialogInt..
// says beep to owner the first time owner says something in main chat; integer listen_handle; default { state_entry() { // Listen 이벤트를 추가한다. // 인자는 순서대로, 1. 채팅 채널, 2. 아바타나 Prim 필터, 3. UUID 필터, 4. 메세지 필터 // 여기서 필터는 명시된 내용만 듣는 다는 것이다. listen_handle = llListen(0, "", llGetOwner(), ""); } listen( integer channel, string name, key id, string message ) { llOwnerSay("beep"); if(message == "바껴라하얀색") ll..
touch_start(integer total_number) { key gAvatarKey = llDetectedKey(0); llLoadURL(gAvatarKey, "View the offical Second Life website.", "http://www.secondlife.com"); }
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]
Dictionary foreach 루프 정리 Dictionary bots = new Dictionary(); foreach (KeyValuePair pair in bots) { string key = pair.Key; int value = pair.Value; }
private Thread Update = new Thread() { public void run() { // TO DO: } }; Update .setDaemon(true); Update .start(); 안드로이드에서, 위와 같은 Update스레드를 구동하기 전에(순서가 중요함~) setDaemon(true); - 함수를 호출하여 True값을 지정하면, Update 스레드는 메인 스레드가 종료될 때, 강제 종료된다. 깔끔한 코딩.
ref 키워드는 인수를 참조로 전달하는 데 사용됩니다. 메서드의 모든 매개 변수 변경 사항은 호출하는 메서드로 제어가 다시 전달될 때 해당 변수에 반영됩니다. ref 매개 변수를 사용하려면 메서드 정의와 호출하는 메서드에서 모두 ref 키워드를 명시적으로 사용해야 합니다. 예를 들면 다음과 같습니다. class RefExample { static void Method(ref int i) { i = 44; } static void Main() { int val = 0; Method(ref val); // val is now 44 } } ref 매개 변수에 전달되는 인수는 먼저 초기화되어야 합니다. 이는 해당 인수를 전달하기 전에 명시적으로 초기화할 필요가 없는 out과 다른 점입니다. out을 참조하십시오..
1. C# 에서 (.NET Framework) 2. UI를 갖는 어플리케이션을 작성할 때 3. 스레드를 생성해서 4. form 의 control 객체를 접근할 때 만나게되는 에러.! $exception {"Control.Invoke는 별도 스레드에 만들어진 컨트롤과 상호 작용하는 데 사용해야 합니다."} System.Exception {System.NotSupportedException} 폼에 있는 컨트롤 박스를 별도의 스레드 (폼 도 하나의 스레드) 에서 접근하려고 하면 서로 다른 스레드가 하나의 컨트롤 객체에 접근하는 것을 방지하기 위해서 고안된 방법이라고 이해된다. 어디에서나 있는 멀티 스레드 환경에서 자원보호를 위한것이다. 아래 코드는 myDelegate라고 하는 delegate를 선언하고, pr..