일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Windows
- Windows 10
- GIT
- resource
- JavaScript
- lsof
- import
- port
- 줄바꿈 문자
- profile
- tomcat
- netsh
- Source
- find
- VirtualBox
- web.xml
- 네트워크
- Eclipse
- vscode
- Quartz
- 단축키
- bash
- ssh
- xargs
- maVen
- plugin
- context
- grep
- Mac
- IntelliJ
- Today
- Total
목록2024/11 (9)
develog
sqlplus 로 연결# SID 로 연결시 ( :SID )sqlplus username/password@127.0.0.1:1521:orcl# Service Name 으로 연결시 ( /ServiceName )sqlplus username/password@127.0.0.1:1521/orcl jdbc 로 연결# SID 로 연결시 ( @hostname, :SID )jdbc:oracle:thin:@127.0.0.1:1521:ORCL# ServiceName 으로 연결시 ( @//hostname, /ServiceName )jdbc:oracle:thin:@//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..