본문 바로가기

잡단한것들

(75)
eslint autofix설정 "eslint.validate": [ { "language": "vue", "autoFix": true }, { "language": "javascript", "autoFix": true }, { "language": "javascriptreact", "autoFix": true }, { "language": "typescript", "autoFix": true }, { "language": "typescriptreact", "autoFix": true }, ] 설정에서 eslint검색 후 json으로 편집 "eslint.validate": [ "vue", "javascript", "javascriptreact", "typescript", "typescriptreact" ], eslint@5.16.0을 ..
윈도우에서 bash, nvm 설치, vi https://forbes.tistory.com/543 윈도우10 Linux Bash Shell 설치 및 사용 방법 HowTo - Windows 10에서 Linux Bash Shell 설치 및 사용 방법 안내 Microsoft는 Canonical과 협력하여 윈도우 하위 시스템에서 실행되는 Ubuntu 기반의 Bash Shell 환경을 제공하고 있으며 Debian, Ubuntu 및 O.. forbes.tistory.com https://github.com/nvm-sh/nvm GitHub - nvm-sh/nvm: Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions Node Version Man..
VS Code 세팅 "emmet.includeLanguages": { "javascript": "javascriptreact" }, "editor.tokenColorCustomizations": { "textMateRules": [ { "scope": "comment", "settings": { "fontStyle": "italic", //주석 기울이기 } } ] }, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "editor.fontFamily": "Consolas, 'Courier New', 'Noto Sans Mono CJK KR Light',monospace" 윈도우 기준 ctrl shift p -> Open Settings (default아님) se..
git 로컬 초기화 파일탐색기에서 해당 프로젝트 디렉토리로 이동 후 보기 탭에서 숨김파일 보기 체크 git폴더 삭제하면 끝
자바스크립트 비동기 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 function delay(ms) { return new Promise(r => { setTimeout(r, ms) }); } function getApple() { return '🍏'; } async function getBanana() { await delay(2000); return '🍌'; } async function pickFruit() { const apple = await getApple(); const banana = await getBanana(); return `${apple} + ${banana}` } pickFruit().then(console.log); Colored by Color Script..
깃허브 특정 브런치만 클론하기, 브랜치명 변경하기 git clone -b {branch_name} --single-branch {저장소 URL} git branch -m [OLD_BRANCH] [NEW_BRANCH]
[jetson tx2] jetpack설치 및 기본세팅 참고자료 Jetson tx2는 가상머신 위에서 설치하면 안된다는 글 https://medium.com/@surmenok/getting-started-with-nvidia-jetson-tx2-5952a2d8d7ae Jetson tx2 설치방법을 적어놓은 글들 https://judo0179.tistory.com/19 [2020ver.] https://judo0179.tistory.com/128?category=281331 [2021ver.] https://hoony9x.com/nvidia-jetson-tx2-developer-kit-unpack-and-initial-setting/ https://github.com/developer0hye/TX2-JetPack-Installation-Guide-Kr 윈도우에서 vmw..
배열 원하는 형태로 재조립하기 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 let arr = [ '1.txt', '1.json', '1.wav', '2.txt', '2.json', '2.wav', '3.txt', '3.wav', '4.txt', '4.json', '4.wav', '5.txt', '5.json', '5.wav', '6.txt', '6.json', '6.wav', '7.txt', '7.json', '7.wav', '8.txt', '8.json', '8.wav', '9.txt', '9.json', '10.txt', '10.json', '10.wa..