::protected/이것저것8 작업중 자주 사용하는 코드.. 보호되어 있는 글 입니다. 2023. 11. 13. Visual Studio 깃허브 연동.. 매번 새로 설정할때 까먹어서 정리..ㅠㅠ VS > 확장 > 확장관리에서 검색 후 다운로드 - GitHub Extension for Visual Studio - Git Pull 보기 > 팀 탐색기 > 깃허브에 로그인하기. 프로젝트 생성. 솔루션 탐색기 > 솔루션선택 우클릭 > Create git repository 소스 수정, 커밋 & 동기화 하기 2022. 4. 8. SVN - Previous operation has not finished; run 'cleanup' if it was interrupted 오류 해결 [에러메세지] Cleanup failed to process the following paths: Previous operation has not finished; run 'cleanup' if it was interrupted. Please execute the 'Cleanup' command. [sqlite3 파일 다운로드] http://www.sqlite.org/download.html sqlite-tools-win32...버전 zip 파일을 다운받음.(윈도우일 경우) [쿼리 날리기] 압축을 해제 후 sqlite3.exe 파일을 SVN 홈 경로로 이동. CMD 창을 통해서 SVN 경로로 이동한 후에 명령어를 수행. > sqlite3 .svn/wc.db "select * from work_queue".. 2022. 2. 3. C++ 코드 컨벤션(by김포프) Rule of Thumb 가독성 우선(항상 코드가 문서여야 함) 크래쉬/조기경사례 최악의 상황이 닥칠 때까지 기다리지 마라. 그렇게 하지 않을 이유가 없다면 IDE의 자동 포맷된 스타일을 따르십시오(VC++의 Ctrl + K + D) 기존 코드에서 학습 References Unreal engine 4 coding standard Doom 3 Code Style Conventions IDesign C# Coding Standard 1. 네이밍 규칙 및 스타일 클래스 및 구조체 : 파스칼(Pascal) class PlayerManager; struct AnimationInfo; 지역 변수 및 지역 함수 파라미터 : 카멜(camel) void SomeMethod(const int someParameter); .. 2019. 11. 20. 깃허브 깃 설치 https://git-scm.com/downloads Git - Downloads Downloads Mac OS X Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific git-scm.com 깃허브 설치 관련 https://coding-factory.tistory.com/245 [Git] 윈도우버전 Git설치하기 (Git for W.. 2019. 11. 15. 알고리즘 문제 풀때 자주 쓰는 것들(?) 생각없이 쓰다보면 헷갈리는 것들 오름차순 / less() / a b string + string -> int 정렬시 s1 + s2 > s2 + s1 / 내림차순 *아스키코드 '0' - 48 ~ '9' - 57 'A' - 65 ~ 'Z' - 90 'a' - 97 ~ 'z' - 122 *문자열 관련 stoi(str) // string > int to_string(int) // int > string s[i] = tolower(s[i]) // 소문자로 s[i] = toupper(s[i]) // 대문자로 isdigit(s[i]) // char 형변환시 int인지 bool반환 string 정렬시 > less(), greater() *소수 구할때(2,3,5,7의 배수.. 2019. 9. 6. 이전 1 2 다음