Recent posts

Gitlab-CI 구성 & .gitlab-ci.yml 예제

4 minute read

CI/CD 도입 Gitlab을 설치하는 방법은 전에 다뤘다. 이번에는 CI/CD 도구를 도입했다. 예전에 일했던 프로젝트에서는 주로 jenkins를 사용했는데, 이번에는 Gitlab-CI를 써보기로 했다. Git 초심자가 대부분인 우리 프로젝트 특성상, Gitlab과 연계가 긴밀한...

Gitlab-CI Setup & .gitlab-ci.yml Examples

6 minute read

Adopting CI/CD I already covered how to install Gitlab before. This time, I adopted a CI/CD tool. In projects I worked on in the past, we mainly used jenkins...

npm audit fix

2 minute read

tl;dr: npm audit fix로 취약점을 해결하자

npm audit fix

2 minute read

tl;dr: Let’s fix vulnerabilities with npm audit fix

git으로 work 폴더 백업 자동화하기

1 minute read

나는 게으른 사람이다. 그리고 뭔가를 백업하는건 아주 귀찮은 일이다. 소스코드는 그나마 낫다. 개발하고 수정할 때마다 git remote 서버로 push하면 된다. 하지만 작업용 및 관리용으로 들고 있는 work 폴더를 백업하는건 너무나도 귀찮은 일이다. 그러니 자동화하기로 했다....

Automating work folder backups with git

1 minute read

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...

github page theme 업데이트

less than 1 minute read

이 블로그는 jekyll을 사용하여 돌리고 있다. 테마는 minimal mistake를 사용한다. 요 테마는 업데이트가 상당히 활발한데, 멋진 블로그를 위해 숟가락 얹은 처지인지라 블로깅 하는 틈틈히 테마 업데이트를 따라가줘야 한다. 테마 업데이트 방법은 다음과 같다. 나는 git...

Updating the GitHub Page Theme

less than 1 minute read

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(vs code)에서 MSSQL 사용하기

less than 1 minute read

Visual Studio Code로 Microsoft SQL Server(이하 mssql)을 사용하고 있는데, 아주 좋다. 여기서 설치하면 된다. 무거운 SQL Server Management Studio를 실행할 것 없이, mssql을 가볍고 편리하게 사용할 수 있다.

Using MSSQL in Visual Studio Code (VS Code)

1 minute read

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...