Git Commit message 규칙 Commit message Format Each commit message consists of a header, a body and a footer. The header has a special format that includes a type, a scope and a subject: Commit mes...
Nodejs-Express 사용자 데이터 구문 분석
Express 사용자 데이터 구문 분석 Express post 메서드 const express = require("express"); const app = express(); //들어오는 모든 요청에서 실행되어야 하는 추가 핸들러를 작성할 수 있다. // 이러한 하나 이상의 유형의 요청에 적용되는 일반 핸들러 함수를 일반적으로 미들웨어 함수라고 ...
Nodejs-npm 으로 express 설치하기
nodes js express npm 으로 express 설치하기 npm 이란? Node Package Manager의 약자로 nodejs의 모듈 관리를 하기 위해 사용 npm은 nodejs 설치 시 자동으로 설치되어 따로 설치할 필요는 없다. npm init package.json 을 생성하여 node js 관리 프로젝트로 전환, ...
CSS-px, %, em, rem 정리
Comparing Units (specifically for font-size) px Easy to understand & translateable Limited user focus & not scalable % Relative to parent element Size Hard to manage due to c...
java-IOException must be caught or declared to be thrown
[java] unreported exception IOException; must be caught or declared to be thrown 에러 내용 coding test 문제 풀이중 다음과 같은 에러가 났다. error : unreported exception IOException; must be caught or declared to b...
Docker로 tomcat, ubuntu 컨테이너 설치해보기
Docker 로 tomcat, ubuntu 컨테이너 만들기 Docker로 Ubuntu 컨테이너 만들기 curl 설치 sudo apt update / yum update sudo apt install curl / yum install curl sudo: apt: command not found -> apt 말고 yum 사용 우분투...
Docker 명령어 정리
Docker 용어 및 명령어 정리 Docker 용어 Docker Image 컨테이너 생성(실행)에 필요한 모든 파일과 설정값을 지닌 것 Docker Container 이미지(Image)를 실행한 상태 Docker 명령어 정리 # yum 패키지 업데이트 및 업그레이드 sudo yum -y update sudo yum -y upgrade ...
Postgres-The authentication type 10 issue
[Postgres] 스프링 연동 시 The authentication type 10 오류 에러 내용 org.postgresql.util.PSQLException: The authentication type 10 is not supported. Check that you have configured the pg_hba.conf file to incl...
Status codes
status code Web servers communicate the status of a request & response via standardized status codes status code : 200 Success ! Request parsed successfully, a response could be generated + ...
how to create GitHub blog (chirpy)
gitHub Blog 만들기 (chirpy theme) local setting create repository username.github.io clone git clone https://github.com/[gitHubId]/[gitHubID]-github.io.git jekyll cd username.github.io...
git difftool 설정
git difftool 설정 (VS Code) git config git config --global -e .gitconfig 설정 [diff] tool = vscode [difftool "vscode"] cmd = code --wait --diff $LOCAL $REMOTE git difftool git difftool git d...
git commit workflow
git commit workflow 1. working directory 프로젝트의 작업공간 git add 명령어로 staging area 에 파일들을 추가할 수 있다. git add working directory 에서 modified 파일만 staging area 로 옮길 수 있다. 2. staging area workindg ...
마크다운 작성법 자주쓰는 명령어 정리
MarkDown 작성법 MarkDown 이란? 2004년 존그루버의 의해 만들어짐 쉽게 쓰고 읽을 수 있으며, HTML로 변환 가능 개발자들이 버전관리/협업도구 텍스트 문서로 선호 GitHub Repository 정보를 기록하는 README.md 를 통해 각광받음 MarkDown 장단점 장점 1. 간결하고 읽고 쓰기 쉽다. ...