BlogHide Resteemsdothebest0927 (25)in gitlab • 5 years agoHow to Git Error - HTTP Request Failed실행 환경 : CentOS6.x [Redhat 64 bit] git clone 시 repository URL 이 SSL(https) 일 경우 Fatal Error $ git clone dothebest0927 (25)in gcc • 5 years ago[CentOS7] How to cmake 3.8.2 build (Required minimum version) - 1How to install Cmake 3.8.2 build (Required minimum version) Step $ wget $ tar -zxvf cmake-3.6.1.tar.gz $ cd cmake-3.6.1 $ ./bootstrap (Required gcc Compiler) $ make $ make install $…dothebest0927 (25)in git • 5 years agoHow to Git Error - ~ overwritten by Merge (Remote : GitLAB / GUI TOOL : Sourcetree)[Git Error] Your local changes to the following files would be overwritten by Merge. 상황 : 원격 저장소에서도 수정 된 파일을 수정 한 경우에 발생 Push 권한이 있는 user가 코드를 수정한 상태에서, Origin에서 수정된 코드를 Pull 받으려 할 때 다음과 같은…dothebest0927 (25)in git • 5 years agoHow to Git Error - Failed to Push Some Refs to ~ (Remote : GitLAB / GUI TOOL : Sourcetree)[Git Error] Failed to Push Some Refs to 'Git 원격 저장소' (origin) 상황 : Push 권한이 있는 user가 소스코드 변동사항이 있는 origin을 Pull하지 않고, 소스코드 변동사항이 있는 코드를 수정해서 Push할때 생기는 Error 해결 방법 : 1 step. Git 원격…dothebest0927 (25)in multimedia • 6 years agomultimedia 개론과 muxing, encoding에 관해서 (1)Multimedia 개론 멀티미디어(Multimedia) : 컴퓨터를 매개로 하여 영상(.Mp4)·음성(.Mp3)·문자(.txt) 등과 같은 다양한 정보 매체를 복합시킨 장치. 또는, 그러한 시스템 Media에는 video track(stream), Audio track(stream)이 필수적으로 들어가 있다. format…dothebest0927 (25)in complier • 6 years ago기초적인 용어 설명 (Compiler, Linker, Loader, Interpreter, Assembler)ComPiler : 고급 언어로 작성된 프로그램을 실행하는데 첫번째 방법 원시 코드 혹은 소스코드를 기계어로 바꾸어주는 번역 프로그램(목적 파일을 만들어주는 프로그램) (기계어로 번역되기때문에 목적 파일이 생성됨, 대표적으로 C가 컴파일되는 언어) Interpreter : 고급 언어로 작성된 프로그램을 실행하는데 두번째 방법 원시 코드…