전체 글

전체 글

    내가 이런 시대를 살고 있다는 게.ㅎㅎ

    https://m.mk.co.kr/opinion/contributors/view/2022/02/122249/ [매경춘추] 개발자 전성시대 개발자 전성시대다. "코딩을 배워야 먹고산다"는 말이 현실이 됐다. 팬데믹(감염병 대유행)으로 디지털 전환이 가속화되면서 `개발자`의 중요성이 그 어느 때보다 부각되고 있다. 금융, 의료, 유 www.mk.co.kr

    visual studio code 자주 사용하는 단축키.

    1. Application내에서 자주 사용하는 것 - Command Palette shift+ command + P - Quick Open command +P - User Settings command - Toggle Sidebar command B - Toggle Terminal ^` - Keyboard Shortcuts command K S 2. Editor내 , 코드 작성할 때 자주 사용하는 단축키 - Beginning / End of file command 위/아래(방향키) - Beginning / End of line command 왼/오(방향키) - Move Word option 왼/오(방향키) - Select Word option shift 왼/오(방향키) - Copy Line 라인전체복사 ..

    .

    오늘 한 일 1. https://gist.github.com/kevin-smets/8568070 iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS) iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS) - iterm2-solarized.md gist.github.com setting for iterm2 2. vscode extension 설치 3. homebrew설치 등 맥북 세팅 4. js유용한 사이트..

    JS Function

    hoisting 정의되기 전에 함수 선언에 대한 액세스를 허용하는 JavaScript 의 기능 greetWorld(); // Output: Hello, World! function greetWorld() { console.log('Hello, World!'); } //hoisting catName("Tiger"); function catName(name) { console.log("My cat's name is " + name); } /* The result of the code above is: "My cat's name is Tiger" */ // hoisting없으면 동일한 코드를 작성해야함 function catName(name) { console.log("My cat's name is " + n..