전체
-
-
polymer data binding - Observable changesdev/etc 2016. 12. 15. 14:22
polymer 를 사용하여 data binding 을 하면 쉽게 data 를 UI 로 변경할 수 있다. 이후 binding 된 데이터를 변경하거나 새로운 데이터를 바인딩하여 UI 변경을 하려 할때 제대로 동작을 하지 않아 property 를 이용한 꼼수등을 쓰곤했다. polymer 에서는 observable changes 란 것이 있어 polymer 가 인식 할 수 있는 방식으로 data 변경을 해주는 방법이 있다. # {{index}} First name: {{item.first}} Last name: {{item.last}}위와 같이 바인딩된 상태에서 새로운 data 를 할당하거나 기존 데이터를 변경할 때, // unobservable subproperty changethis.address.stree..
-
svn sync 동기화, 백업dev/tool 2016. 11. 16. 18:29
1. repo 생성(툴/명령어)2. pre-revision property change hook 내용 추가2.1. exit 0;3. svnsync init {백업 경로} {원본 경로}3.1. 경로는 url 이나 물리 파일 경로 가능3.2. 명령 실행시 인자로 백업/원본 svn 에 필요한 user/password 정보 전달 가능3.3. 3.2 를 하지 않을 경우 콘솔창에서 추가 정보 수동 입력 가능3.4. 명령 실행 성공시 "Copied properties for revision 0." 출력4. svnsync sync {백업 경로}4.1. 3. 에서 입력된 원본 경로, 사용자 정보를 바탕으로 동기화 시작 * 백업/원본 pc 가 아닌 제3의 pc 에서도 위 전체 단계 수행 가능 * 어떠한 이유로 동기화도중 ..
-
MFC 메모리 릭 체크시 유용한 방법dev/C,C++ 2016. 10. 17. 15:00
출처 : http://egloos.zum.com/sungod0/v/3561771 MFC 사용시, #ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif 프로그램이 종료 되었을때 누수된 메모리를 할당하는 부분의 소스 코드와 라인 수를 출력 Detected memory leaks!Dumping objects ->d:\sample\sample.cpp(35) : {48} client block at 0x003739D0, subtype 0, 4 bytes long. Data: 28 00 00 00 d:\sample\sample.cpp(34) : {47} client block at 0x00373990, s..
-
windows 에서 svn commit log 수정하기 설정dev/tool 2016. 9. 6. 15:03
http://svnbook.red-bean.com/en/1.0/ch05s02.htmlhttp://stackoverflow.com/a/693032 pre-revprop-change hook@ECHO OFF:: Set all parameters. Even though most are not used, in case you want to add:: changes that allow, for example, editing of the author or addition of log messages.set repository=%1set revision=%2set userName=%3set propertyName=%4set action=%5 :: Only allow the log message to be change..