- MFC
- Front-end developer
- postman tests
- 좋은 개발자
- 프런트엔드
- C++
- postman
- Java
- UI/UX Engineer
- c#
- oracle
- postman automations
- postman excel
- LSL_Script
- solidity
- Interaction developer
- postman pre-request
- 다빈치 리졸브
- postman html parse
- postman session
- Intellij
- 우수한 프런트 개발자
- Android/iOS Developer
- emplace_back
- postman collection
- postman csv
- postman collection variables
- Android
- Unity
- web 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 | 29 | 30 | 31 |
- Today
- Total
목록[Develop] Native/Native (18)
david's daily developer note
::SHFileOperation함수의 깊은 곳에서 다음의 에러를 만났다... Floating-point invalid operation(매개 변수: 0x00000000). 개발 환경 및 상황 1. Window10 Pro 2. Visual Studio 2017, 2012 동시 디버깅 3. 32/64 디버그만 재현 4. 다른 Window SDK 문제없음, 파일 삭제만 재현 때마침, 윈도우 업데이트가 있었기에, 또,, 업데이트 이후에 발생한 문제인줄 알고 헤매기 시작했다. 그러나 답은 Crash당시 콜스택에 있었다. 중간쯤, CAutoMaticDestinationList가 보인다. 저놈은 다음 경로의 바이너리 파일을 사용한다. AppData\Roaming\Microsoft\Windows\Recent\Autom..
Microsoft SDK version release history - (validation 2018.12.20)https://en.wikipedia.org/wiki/Microsoft_Windows_SDK Support For C++11/14/17 Features (Modern C++) - (validation 2018.12.20)https://docs.microsoft.com/en-us/previous-versions/hh567368(v=vs.140) C++ STL Algorithms Cheat Sheet - (validation 2018.12.20)https://github.com/srcmake/cpp-stl-algorithms?fbclid=IwAR0Godjcu1LMAEXvi9u584S04XVNgHr..
코드 작성 기계인 소위 개발자들은 코드 작성 과정에서 비슷한 코드 블록을 반복적으로 작성하는 상황이 빈번하다. 이는 매우 피곤하다. 가끔 키보드를 난타하는 즐거움이 있지만, 단순 반복이다 보니, 생각하는 지적인 기계인 우리에게는 이 상황은 거의 피곤할뿐이다.. 반복적인 코드 블록은 For, While 루프라던지, Switch, If등의 분기 조건이 일반적이다. 최근의 팀원들과 코딩 컨벤션 규칙을 만들고자 "좋은 코드 프로젝트"라는 것을 시작했다. 구글의 C++ 스타일 가이드와 몇몇 서적들을 보면서 룰을 만들고 있다. (https://google.github.io/styleguide/cppguide.html) 그러나,,, 안타깝게도 PM의 엄청난 잔소리가 없다면 동료들이 실천하지 않는다는 것도 알고 있다...
Visual Studio (*.natvis) 파일을 활용하여 Watch 표현을 입맛대로 수정할 수 있다. Simple Example을 통하여 *.natvis를 활용방법을 간력하게 살펴보자(VS 2012).먼저 다음의 샘플 코드를 보자struct natvis { int m_test; };class class_A { public: class_A (natvis* pData) { m_pData = pData; } natvis* m_pData; };class class_B { public: class_B (const natvis& data) { m_tData.m_test = data.m_test; } natvis m_tData; };void natvis_test() { natvis struct_1; struct_..