| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
- NestJS 요청흐름
- IllegalStateException
- 벌크연산
- CORS
- SPOF
- Transaction
- HandlerMethod
- COPYOFRANGE
- type eraser
- CQS
- hoisting
- wrapper class
- optimistic lock
- cross-cutting concerns
- #@Transacional
- Generic method
- pessimistic lock
- 단어변환
- ExceptionResolver
- generic type
- TDZ
- 역정규화
- RequestMappingHandlerMapping
- demand paging
- Java
- assertJ
- tracking-modes
- 프로그래머스
- API
- propagation
- Today
- Total
목록IDE/vscode (4)
jingyulog
launch.json { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "(gdb) Launch driver", "type": "cppdbg", "request": "launch", "program": "${workspaceRoot}/mdriver", "args": [], "stopAtEntry": false, "cwd": "${..
✏️ 정의 코드 린터: 문법에서 에러는 아니지만 에러로 약속하자고 규칙을 정하는 것이다. 실행하는데는 문제가 없다. eslint 규칙으로는 import 순서, == 금지 등이 있을 수 있다. eslint 자체에 Formatter 기능도 어느정도 가지고 있다. 코드 포메터: 코드를 보기 좋게 만들어주는 것이다. prettier 규칙으로는 띄어쓰기 2칸, 특정 길이가 넘어가면 줄바꿈 등이 있다. 🔎 eslint 설치 방법 next.js는 package.json에 들어가보면 eslint가 이미 설치되어 있다. 따라서 따로 eslint를 설치하지 않고, 설정파일을 만드는 것부터 시작한다. 설치가 완료되면, eslintrc.json 파일이 생성된다. 그리고 파일을 열면 빨간줄이 생기는데, 이는 standard 규..
이전 커서로 돌아가기 : ctrl + - 다시 그 이전 커서로 돌아가기(원래 페이지로) : ctrl + shift + - 소스 미리보기 : command 누르고, 클릭 탭 닫기 : Command + B 여러 줄 선택: option + command + 방향키 위,아래 원하는 줄 선택: option + 원하는 줄 클릭 변수 한번에 바꾸기: shift + command + L 한번에 삭제: command + shift + K