본문 바로가기

기타

(5)
Widows 10 - Speech Recognition Error 해결법 가끔 열심히 코딩하다가 Speech Recognition Error 창이 떠서 한번씩 흐름이 끊기는 경우가 있다. (물론 창을 닫으면 되긴 하지만) 에러창의 내용인 즉슨, Speech Recognition could not start because the language configuration is not supported. 언어 구성이 지원되지 않아 음성 인식을 시작할 수 없습니다. The Recognizer language must match the language of the user interface. Please change the recognizer language in the Speech Recognition control panel under Advanced Options. 인식기 언어는..
형상관리툴 종류 https://www.gitkraken.com/ Git Client - Glo Boards | GitKraken Unleash the Kraken! GitKraken comes with two legendary tools that help developers be more productive: the Git Client for Windows, Mac and Linux, and Glo Boards for task and issue tracking. Download the free Git Client and sign up for Glo Boards for free! www.gitkraken.com https://www.git-tower.com/ Tower - The most powerful Git clien..
[Git] 전체 히스토리에서 특정 파일&특정 디렉토리 전부 삭제 git filter-branch -f --index-filter "git rm --cached --ignore-unmatch @@@" --prune-empty -- --allgit filter-branch -f --index-filter "git rm --cached --ignore-unmatch @@@" --prune-empty --tag-name-filter cat -- --all 인터넷에 있는 명령어들을 다 찾아봐서 써봤으나로컬에 있는 파일도 삭제됨.
Nox 블루스크린 문제 - ( Windows - Hyper-V 사용 해제 ) ( 19.09.04 수정 ) Nox 실행시 블루스크린이 뜬다면, 가장 먼저 Hyper-v가 켜진 상태인지를 의심해봐야한다. 제어판-> 프로그램 -> Windows 기능 켜기 또는 끄기로 이동 윈도우 버전 확인법 -> Widows 키 + Pause 키를 누르면 뜨는 시스템 창에서 버전 확인 가능 ▶ Windows 8 Pro 64 bit ▶ Windows 8 Enterprise 64 bit ▶ Windows 8.1 Pro 64 bit ▶ Windows 8.1 Enterprise 64 bit ▶ Windows 10 Enterprise 64 bit 위의 5개 버전은 Hyper-V 항목을 찾아서 체크 해제하면 된다. ▶ Windows 10 Pro 64 bit Hyper-V 항목과 Windows Hypervisor..
glsl_blur bool HelloWorld::init() {if(!Layer::init()) { return false;} Sprite* sprite_blur = Sprite::create("checkbox_checked.png"); GLchar * fragSource = nullptr; fragSource = (GLchar*)String::createWithContentsOfFile(FileUtils::getInstance()->fullPathForFilename("blur.fsh").c_str())->getCString(); sprite_blur->setShaderProgram(GLProgram::createWithByteArrays(ccPositionTextureColor_noMVP_vert, fragSource..