본문 바로가기

분류 전체보기

(142)
CMake https://modoocode.com/332 씹어먹는 C++ - modoocode.com CMake 는 빌드 파일을 생성해주는 프로그램. CMake 를 통해서 프로젝트를 빌드를 하는 것이 아니라, CMake 를 통해서 빌드 파일을 생성하면 빌드 프로그램을 통해서 프로젝트를 빌드 하는 것
Git submodule https://git-scm.com/book/ko/v2/Git-%EB%8F%84%EA%B5%AC-%EC%84%9C%EB%B8%8C%EB%AA%A8%EB%93%88 Git - 서브모듈 gitmodules 파일에 있는 URL은 조건에 맞는 사람이면 누구든지 Clone 하고 Fetch 할 수 있도록 접근할 수 있어야 한다. 예를 들어 다른 사람이 Pull을 하는 URL과 라이브러리의 작업을 Push 하는 URL이 서로 git-scm.com
Nuget https://dataonair.or.kr/db-tech-reference/d-lounge/technical-data/?mod=document&uid=236134 NuGet을 이용한 네이티브 패키지 관리 라이브러리를 공유하는 가장 우아한 방법 NuGet을 이용한 네이티브 패키지 관리 2010년 공개된 NuPack 기반의 NuGet은 .NET 프레임워크를 위한 소스 코드 관리자로, 2013년 4월 2.5 버전에서 C++ 네이티브 dataonair.or.kr https://urame.tistory.com/entry/%EB%B9%84%EC%A3%BC%EC%96%BC%EC%8A%A4%ED%8A%9C%EB%94%94%EC%98%A4visual-studio-%EB%88%84%EA%B2%9FNuget-%EC%82%A..
What is a STUN Server? https://andonekwon.tistory.com/59 WebRTC란? (STUN과 TURN 서버의 이해) (2) 이전 글 복습 중간에 방화벽이 존재하거나 NAT 환경에 놓여 있는 경우에는 각 Peer에 대한 직접적인 시그널링이 불가능하다고 이야기하였다. 그렇기 떄문에 시그널링을 하고 연결을 하기 위해서 andonekwon.tistory.com
Vue : Error Handling and 404s Error Handling and 404s There are three different kinds of errors we need to catch in our application. 애플리케이션에서 잡아내야 하는 세 가지 종류의 오류가 있습니다. When a user tries to navigate to a page that doesn’t exist. 사용자가 존재하지 않는 페이지로 이동하려고 할 때. When a user’s network connectivity fails. 사용자의 네트워크 연결이 실패하는 경우. When a user tried to go to an event that doesn’t exist. 사용자가 존재하지 않는 이벤트로 이동하려고 한 경우. Problem: The Generi..
Vue - Progress Bar : Axios Interceptors Progress Bar: Axios Interceptors it’s important to design user-friendly applications that give feedback when parts of your webpage are still loading. 웹페이지의 일부가 여전히 로드 중일 때 피드백을 제공하는 사용자 친화적인 애플리케이션을 디자인하는 것이 중요합니다. Installing NProgress Using Axios Interceptors Problem: Our API calls might not always be super fast let our users know the data is on the way, and have something happen when they clic..
Vue : API calls with Axios API Calls with Axios Our app would make a request for the events, the server would respond with those events(as JSON), and we’d take those events and set them as our component’s data, which we then display in the view. 우리 앱은 이벤트를 요청하고 서버는 해당 이벤트(JSON)로 응답하며 해당 이벤트를 component의 데이터로 설정한 다음 뷰에 표시합니다. Create a mock database to house our events Install a library (Axios) to make API Calls Implement a ..
Vue : Global Component Why and when you’d want to use global registration 글로벌 등록을 사용하려는 이유와 시기 Automatic Registration 자동등록 How to create an icon component and use it globally 아이콘 구성 요소를 생성하고 전역적으로 사용하는 방법 Why Global Registration? import and locally register it within another component so we could use it in that parent component’s template. 해당 상위 구성 요소의 템플릿에서 사용할 수 있도록 다른 구성 요소 내에서 가져오고 로컬로 등록합니다. with local registrati..