- Front-end developer
- 프런트엔드
- C++
- postman collection
- postman pre-request
- Interaction developer
- web developer
- Java
- 다빈치 리졸브
- MFC
- 우수한 프런트 개발자
- postman tests
- postman automations
- postman
- postman html parse
- 좋은 개발자
- LSL_Script
- postman session
- emplace_back
- oracle
- Intellij
- c#
- postman collection variables
- postman excel
- UI/UX Engineer
- solidity
- postman csv
- Android
- Android/iOS Developer
- Unity
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
목록분류 전체보기 (175)
david's daily developer note
감동이다. Dictionary Type에서 DBMS에 대한 비슷한 형식의 질의를 통해서, 결과를 받을 수 있다. 다음의 Dictionary 예(d)가 있을 때, Sorting을 위한 순서는 대략 이렇다. 1. Dictionary d의 키 값의 집합 k를 인덱스로하여, 접근. 2. key값으로 접근된 d의 값을 내림차순으로 정렬, 3.value에 의해 정렬된 key을 변수 items에 쏙~ Example program that sorts Dictionary (C#) // Example dictionary var d = new Dictionary(); d.Add("cat", 1); d.Add("dog", 0); d.Add("mouse", 5); d.Add("eel", 3); d.Add("programmer"..
닷넷 환경에서 만들어진 프로그램을, 배포하려면, 프로그램이 컴파일된 환경도 설치되어야. 정상적으로 돌아간다. 뭐 당연한 얘기지만, 그래서, 설치 파일로 배포하면, 설치과정에서, 닷넷 프레임워크가 없으면 자동으로 설치해준다(웹에서 검색한다) 일단 실행할 프로젝트를 만들고, 작성하자, 그 후 솔루션에, 다음과 같은 설치 프로젝트를 추가한다. 그 다음, 설치 프로젝트를 선택하고, 대상 컴퓨터(설치될 컴퓨터)의 파일 시스템에서, 해당 프로그램이 설치될 폴더를 추가한다. 그림에서는 대상 컴퓨터 바탕화면에, Bio_Assignment폴더를 만들었다. 마지막으로, Bio_Assignment폴더에 실행할 프로젝트를 추가하고, 설치 프로젝트를 빌드하면~ 끝. 빌드하면, 설치 프로젝트 디버그 폴더에 *.msi와 *.exe..
이번에는 앞서 만든 HelloWorld 프로젝트를 디버깅 해 보겠다. 1. 기본 디버거 설정 Window -> Preferences에서 다음과 같이 MinGW를 기본 디버거로 설정한다. OK를 눌러 설정을 저장한다. 2. Debug 실행 Run -> Debug (F11)을 선택하면, 최초 디버깅 실행시에 다음과 같이 Perspective를 변환할 것인지 여부를 묻는 창이 나타난다. 디버깅에 적합한 화면 모드로 전환한다는 내용인데, 앞으로 디버깅 시에는 이 모드가 편리하므로 Remember my decision을 체크하고 Yes를 누른다. 다음과 같이 디버깅 모드 화면이 표시된다. (클릭하면 큰 화면) F6을 눌러 한 라인씩 실행해본다. cout 부분에서 F6를 누르면 Console에 Hello, worl..
command창 명령어를 C#응용프로그램에서 바로 수행하자. ㅎㅎ System.Diagnostics.ProcessStartInfo procStartInfo = new System.Diagnostics.ProcessStartInfo("cmd", "/c " + "mstsc.exe"); procStartInfo.RedirectStandardOutput = true; procStartInfo.UseShellExecute = false; procStartInfo.CreateNoWindow = true; // Do not create the black window. // Now we create a process, assign its ProcessStartInfo and start it System.Diagnost..