개발자 모드
윤성우의 열혈 자료구조
윤성우의 열혈 자료구조국내도서저자 : 윤성우출판 : 오렌지미디어 2012.01.18상세보기 친절한 언어와 상세한 설명으로 자료구조를 다시 리마인드할 수 있는 책!
Sourcetree에서 체크아웃 하지 않은 리모트 브랜치 Fetch받기
리모트 브랜치를 트래킹하고 있는 브랜치에 마우스 우클릭 후 "Fetch 브랜치"를 하면 체크아웃중이 아니더라도 리모트로부터 Fetch받을 수 있다.
Mac에서 소스트리 사용시 pull/push때 마다 로그인 정보를 물어볼 때
프로젝트 터미널로 이동 git config credential.helper storegit pullusername과 password를 입력 (3단계까지 하고 계정정보를 물어보지 않는다면 4단계는 뛰어넘어도 됨)
젠킨스(Jenkins)와 네이트온 연동
젠킨스 job 완료시 알림을 받고 싶었는데 사내에서는 네이트온을 사용하기 때문에 네이트온 팀룸을 이용해서 web hook을 시도했다. 1. 네이트온 팀룸의 web hook (홈페이지에 설명이 자세히 나와있다.)2. 젠킨스의 "Post build task" 플러그인 설치하고 "빌드 후 조치"에서 사용 이 2가지를 이용하면 네이트온 팀룸에서도 젠킨스의 알림을 받을 수 있다.주의할 점은, Post build task의 "Escalate script execution status to job status"를 체크하여야 CURL을 이용한 webhook 기능이 정상적으로 동작한다.
osx에서 brew로 프로그램 설치하기
증상 : osx "High Sierra" 설치이후 gdrive command line 업로드가 실행이 안됨 에러로그 : failed MSpanList_Insert 0x83c000 0x9524ce8eaef 0x0 0x0 fatal error: MSpanList_Insert runtime stack: runtime.throw(0x566980, 0x10) /usr/local/Cellar/go/1.6/libexec/src/runtime/panic.go:530 +0x90 fp=0x7ffeefbfee30 sp=0x7ffeefbfee18 . .. ..... 해결 : brew를 통해서 gdrive를 최신버전으로 설치brew 설치하기 : https://brew.sh/brew로 gdrive 설치하기 : https://gi..
oxs high sierra에서 유니티 실행 안되는 버그
osx High Sierra (10.13.2) 버전업하면 유니티5.4.5f1 이 실행 안되는 상황. https://forum.unity.com/threads/unity-and-macos-10-13-high-sierra.474527/ 위의 링크를 보면 특정 유니티버전으로 버전업을 해야한다.
APK Signature Scheme v2 커맨드라인 적용시 password입력하기
apksigner sign --ks 키스토어경로 --ks-pass pass:패스워드 --v1-signing-enabled true --next-signer --v2-signing-enabled true apk경로 ※apksigner의 경로는 여기 를 참고한다.
Visual Studio Code Templates 수정 위치
2005:C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\IDE\ItemTemplates\CSharp\1033\Class.zip 2008:C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip 2010:C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip Starting with Visual Studio 2012, the templates are not zipped, so you can ed..