xcopy에서 여러 개의 파일 및 디렉토리를 제외하고 복사하기
tl:dr: xcopy의 /exclude: 옵션에 제외할 목록을 기술한 txt 파일을 넣으면 여러 파일과 디렉토리를 제외하고 복사할 수 있다.
tl:dr: xcopy의 /exclude: 옵션에 제외할 목록을 기술한 txt 파일을 넣으면 여러 파일과 디렉토리를 제외하고 복사할 수 있다.
tl;dr: If you pass a txt file listing the items to exclude to the /exclude: option of xcopy, you can copy while excluding multiple files and directories.
나는
0. The problem
나는 게으른 사람이다. 그리고 뭔가를 백업하는건 아주 귀찮은 일이다. 소스코드는 그나마 낫다. 개발하고 수정할 때마다 git remote 서버로 push하면 된다. 하지만 작업용 및 관리용으로 들고 있는 work 폴더를 백업하는건 너무나도 귀찮은 일이다. 그러니 자동화하기로 했다....
I am a lazy person. And backing something up is a really tedious chore. Source code isn’t so bad. Whenever I work on and modify it, I can just push it to a g...
이 블로그는 jekyll을 사용하여 돌리고 있다. 테마는 minimal mistake를 사용한다. 요 테마는 업데이트가 상당히 활발한데, 멋진 블로그를 위해 숟가락 얹은 처지인지라 블로깅 하는 틈틈히 테마 업데이트를 따라가줘야 한다. 테마 업데이트 방법은 다음과 같다. 나는 git...
This blog runs on jekyll. For the theme, it uses minimal mistake. This theme is updated quite actively, and since I’m just riding along to get a nice-looking...
Visual Studio Code로 Microsoft SQL Server(이하 mssql)을 사용하고 있는데, 아주 좋다. 여기서 설치하면 된다. 무거운 SQL Server Management Studio를 실행할 것 없이, mssql을 가볍고 편리하게 사용할 수 있다.
I’ve been using Microsoft SQL Server (hereafter mssql) with Visual Studio Code, and it’s really great. You can install it from here. Without having to launch...
이 글은 webpack 4.11.1 버전을 기준으로 합니다.
This post is based on webpack version 4.11.1.
Let’s launch a custom error page when the network is down in the Android WebView App.
버스에서 간단히 읽으려고 집어든 책인데, 얇은 두께에도 불구하고 의외로 깊이가 있어 놀랐다. 일단 이 책은 초보자용 책은 아니다. 책 표지에도 초중급 독자를 대상으로 한다고 (작게) 써져있다. Vue.js에 대해 어느 정도 알고 있고, 적어도 실전 프로젝트로 개발을 하고 있는 분들...
I picked this book up to read casually on the bus, but despite its slim thickness it had surprising depth. To begin with, this is not a book for beginners. T...
Android Honeycomb부터는 Main Thread에서 네트워킹 처리를 하면 안된다. 이를 어겼다가는 이런 에러가 뜬다!
Starting from Android Honeycomb, you must not do networking on the Main Thread. Break this rule and you’ll get an error like this!
설문조사 서비스를 만들었다. Vue.js와 SurveyJS를 사용하여 SPA로 만들었다. 소스코드는 여기서 볼 수 있다.