일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- context
- IntelliJ
- port
- JavaScript
- Source
- tomcat
- bash
- ssh
- maVen
- netsh
- web.xml
- Windows 10
- Quartz
- Mac
- VirtualBox
- xargs
- 줄바꿈 문자
- vscode
- Eclipse
- lsof
- Windows
- profile
- resource
- 단축키
- import
- grep
- plugin
- 네트워크
- find
- GIT
- Today
- Total
목록2024/10 (36)
develog
Settings 에서 outline 검색Settings > Features > Explorer 체크 해제할 거- Show Variables
bash 버전 업그레이드brew install bash Bash Debug 플러그인 설치 launch.json 생성// .vscode/launch.json{ "version": "0.2.0", "configurations": [ { "type": "bashdb", "request": "launch", "name": "Bash Debug", "program": "${file}", "pathBash": "/opt/homebrew/Cellar/bash/5.2.37/bin/bash" // bash 경로 } ]}
document.querySelector('.next-button').getBoundingClientRect()// DOMRect {x: 0, y: 100, width: 767, height: 52, top: 100, …}
다음2 .next-button { position: fixed; left: 0; /* bottom: 0; */ top: 100px; width: 100vw; height: 52px; color: white; background-color: var(--primary); transform: translate(0px, 0px); /* pointer-events: none; */ /* opacity: 0; */ z-index: 999;} // element 가져오기document.querySelector('.next-button')// css 정보 가져오기, CSSStyleDeclarationwindow.getComputedStyle(docum..
쉘 스크립트# -i (Interactive)# -n (No Auto-login)# -v (Verbose)ftp -inv $FTP_HOST $FTP_PORT 콘솔 출력Connected to myserver.com.220 (vsFTPd 2.0.5)331 Please specify the password.230 Login successful.Local directory is /Volumes/mydata/project_src257 "/"221 Goodbye.