일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Quartz
- VirtualBox
- IntelliJ
- 단축키
- xargs
- Eclipse
- ssh
- Source
- Windows 10
- context
- vscode
- plugin
- bash
- port
- Mac
- resource
- find
- JavaScript
- tomcat
- 네트워크
- GIT
- profile
- import
- web.xml
- netsh
- maVen
- 줄바꿈 문자
- lsof
- grep
- Windows
- Today
- Total
목록분류 전체보기 (1779)
develog
let counter = 12; let reference = &counter; // counter의 참조, 메모리 주소 let value = *reference; // reference의 역참조, 실제 값
sqlplus 로 접속# SID 로 접속 (:orcl)sqlplus username/password@127.0.0.1:1521:orcl# Service Name 으로 접속 (/orcl)sqlplus username/password@127.0.0.1:1521/orcl jdbc 로 연결# SID 로 연결시 ( @hostname, :SID )jdbc:oracle:thin:@hostname:port:SID# ServiceName 으로 연결시 ( @//hostname, /ServiceName )jdbc:oracle:thin:@//hostname:port/servicename# SID 로 연결시jdbc:oracle:thin:@127.0.0.1:1521:ORCL# ServiceName 으로 연결시jdbc:oracle..
// 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..
// Node.js 에서 전통적으로 사용되는 방식const fs = require('fs').promises;// 최신 Node.js 환경에서 권장되는 방식const fs = require('fs/promises');