일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- grep
- Windows 10
- VirtualBox
- netsh
- Mac
- context
- ssh
- resource
- vscode
- find
- 줄바꿈 문자
- 단축키
- JavaScript
- Quartz
- port
- profile
- Eclipse
- web.xml
- lsof
- tomcat
- xargs
- 네트워크
- Source
- GIT
- plugin
- bash
- import
- Windows
- maVen
- IntelliJ
- Today
- Total
목록분류 전체보기 (1760)
develog
# Mac 검색option + command + Space
# 폰트 위치/usr/share/fonts# 폰트 설치# /usr/share/fonts 하위 아무 곳이나 설치/usr/share/fonts/truetype/nanum-ttf/usr/share/fonts/opentype/nanum-otf/usr/share/fonts/_custom/nanum-ttf/usr/share/fonts/_custom/nanum-otf# 폰트 캐시 갱신sudo fc-cache -fv# 폰트 목록 보기fc-list | grep -i 'nanum'fc-list :lang=ko # 시스템 전체 폰트 설치 경로/usr/share/fonts//usr/local/share/fonts/# 사용자 전용 폰트 설치 경로~/.fonts/~/.local/share/fonts/
vscode 에 eslint 플러그인을 설치한다 eslint 패키지를 설치한다yarn add eslint --dev# yarn add eslint-plugin-node --dev eslint 를 초기화한다$ npx eslint --init✔ How would you like to use ESLint? · problems✔ What type of modules does your project use? · commonjs✔ Which framework does your project use? · none✔ Does your project use TypeScript? · javascript✔ Where does your code run? · nodeThe config that you've selected re..