일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Mac
- port
- Quartz
- ssh
- web.xml
- Windows
- grep
- lsof
- vscode
- netsh
- Source
- bash
- resource
- JavaScript
- xargs
- find
- 줄바꿈 문자
- VirtualBox
- GIT
- context
- Windows 10
- Eclipse
- IntelliJ
- 네트워크
- tomcat
- profile
- import
- 단축키
- maVen
- plugin
- Today
- Total
목록2024/11 (6)
develog
// mod 선언 먼저mod util;// use 는 mod 선언 다음에 사용use util::*;
https://fonts.google.com/noto/specimen/Noto+Sans+KR Noto Sans Korean - Google FontsNoto is a global font collection for writing in all modern and ancient languages. Noto Sans KR is an unmodulated (“sans serif”) design for the Korean language ufonts.google.com
let counter = 12; let reference = &counter; // counter의 참조, 메모리 주소 let value = *reference; // reference의 역참조, 실제 값
# SID 로 접속 (:orcl)sqlplus username/password@127.0.0.1:1521:orcl# Service Name 으로 접속 (/orcl)sqlplus username/password@127.0.0.1:1521/orcl
// FIND_TXT2 가 있는 모든 라인 중 FIND_TXT1 가 포함된 라인은 제외한다// (?
vscode 에 Prettier 플러그인을 설치한다prettier 패키지 설치npm install prettier --save-dev --save-exactyarn add prettier --dev --exact.prettierrc 설정 파일// .prettierrc{ "singleQuote": true, "trailingComma": "es5", "useTabs": false, "tabWidth": 2, "semi": true, "bracketSpacing": true, "arrowParens": "always", "printWidth": 80}파일 포멧팅하기# 모든 파일 포멧팅npx prettier . --write# index.js 파일 포멧팅npx pre..