Settings
백준 node.js 입력받기
백준 node.js 입력받기
2022.05.14const fs = require("fs") const filePath = process.platform === "linux"?"/dev/stdin":"./input.txt"; const newline = process.platform === "linux"?'\n':'\r\n'; input= fs.readFileSync(filePath).toString().split(newline);
오토핫키 셋팅
오토핫키 셋팅
2022.05.03https://bacha.tistory.com/99 AutoHotkey로 방향키 대신 wasd 또는 ijkl를 방향키로 쓰기 - AutoHotkey 다운 부터 키맵 설정, 시작 프로 (최종 코드는 가장 아래에 있습니다.) 코딩을 하다보면 방향키를 사용할 때가 많다. 하지만 방향키는 상대적으로 오른쪽에 위치해서 손목을 계속 꺾어야 하는 불편함이 있다. 평소에는 괜찮았는 bacha.tistory.com SetCapsLockState, AlwaysOff #If GetKeyState("Capslock","P") k::Up h::Left j::Down l::Right u::Home i::End `;::BackSpace /::Del '::Send, {"} c::^c v::^v f::^f q::pgDn w::pgUp..
VS Code 터미널 Git bash로 변경하기
VS Code 터미널 Git bash로 변경하기
2021.09.03VS Code 기본 터미널 변경하기 VS Code 업데이트로 "terminal.integrated.shell.windows" 기능이 폐지되었다. 복수의 터미널을 사용할 수 있도록 프로필을 관리하는 형태로 업데이트되었다. VS Code 기본 터미널을 Git Bash로 바꾸기 위해 아래와 같은 동작을 수행하면 된다. setting.json에 아래 항목 추가 "terminal.integrated.profiles.windows": { "GitBash": { "path":["D:\\Git\\bin\\bash.exe"], "icon":"terminal-bash" }, "PowerShell": { "source": "PowerShell", "icon": "terminal-powershell" }, "Command P..