til icon indicating copy to clipboard operation
til copied to clipboard

Today I Learned

Results 100 til issues
Sort by recently updated
recently updated
newest added

https://www.baeldung.com/spring-embedded-redis https://blog.naver.com/gngh0101/221780936975

## -L -R 차이 https://unix.stackexchange.com/questions/115897/whats-ssh-port-forwarding-and-whats-the-difference-between-ssh-local-and-remot/115906#115906 터널링 열린 포트 확인: ``` sudo lsof -i -n | egrep '\' ```

[MySQL 8.0 Keywords and Reserved Words](https://dev.mysql.com/doc/refman/8.0/en/keywords.html) 를 보면 여러가지 키워드와 예약어가 있다. 기존의 DB에 있던 `default`, `order` 컬럼을 JPA로 매핑하기 위해서 다음과 같이 작성하면 H2 데이터베이스 생성시에 오류가 발생한다. ```java...

Node에서 사용하는 knex 처럼 DB 스키마를 관리하는 라이브러리. https://www.baeldung.com/database-migrations-with-flyway

https://www.oauth.com/ # OAuth ## Background - 기존에 앱을 사용하기 위해 아이디, 비밀번호를 앱에 제공한다. - 비밀번호를 평문으로 저장하기 때문에 보안에 문제가 있다. - 앱이 서비스에 접근하는것을 취소하려면 비밀번호를 바꾸는 방법...

# 쿠버네티스 로컬 환경 설정 > Ubuntu 12.04에 도커가 설치된 환경에서 진행함 `virtualbox`를 설치한다. ```sh $ sudo apt-get install virtualbox ``` `kubectl`을 설치한다. ```sh $ sudo apt-get update && sudo...

https://tech.kakao.com/2019/08/01/graphql-basic/

https://www.typescriptlang.org/docs/handbook/interfaces.html

토깽이시키

https://www.jvandemo.com/a-10-minute-primer-to-javascript-modules-module-formats-module-loaders-and-module-bundlers/ ### Module 모듈은 재사용 가능한 `코드 조각`이다. 모듈은 상세한 구현을 캡슐화하고, 접근 가능한 API를 제공함으로써 다른 코드에서 쉽게 읽고 사용할 수 있다. ### Module format 모듈 포맷은 모듈을 정의하기...

JS