일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- grep
- netsh
- import
- tomcat
- context
- ssh
- Windows 10
- Mac
- 단축키
- Source
- 네트워크
- lsof
- web.xml
- port
- 줄바꿈 문자
- IntelliJ
- VirtualBox
- JavaScript
- resource
- Eclipse
- bash
- plugin
- vscode
- maVen
- xargs
- GIT
- find
- Quartz
- Windows
- profile
- Today
- Total
목록전체 글 (1754)
develog
https://edelivery.oracle.com/osdc/faces/SoftwareDelivery https://login-ext.identity.oraclecloud.com/oauth2/v1/authorize?response_mode=form_post&response_type=id_token&scope=openid&IDCS_CG_ENC_VER=v2&state=tu5F_bL330i_bxO2IMDE5T5SnCSfACIkhY-xeB9dUE8&nonce=tBQkwmEUjmOcJx7SKJs51DPsGOduLRyJUBlzbZHmuNs&IDCS_IS_CLOUDGATE=true&X-HOST-IDENTIFIER-NAME=edelivery.oracle.com&idcs_app_name=4db9c9661af5439196..
기본 스크립트- HTML 파싱 차단함- 즉시 실행- HTML 순서대로 실행- 전역 스코프- import/export 사용 불가능 * 모듈 스크립트- HTML 파싱 차단하지 않음- HTML 파싱 후 실행- HTML 순서대로 실행- 모듈 스코프- import/export 사용 가능 * 모듈 스크립트 + defer- HTML 파싱 차단하지 않음- HTML 파싱 완료 후 실행- HTML 순서대로 실행- 모듈 스코프- import/export 사용 가능
// 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의 역참조, 실제 값
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..