최신글 Webpack 웹팩 배우기 1 웹팩 배우기 1 참고자료 Understanding the Modern Web Stack: Webpack - The Basics (link) What is webpack? a bundler for javascript applications Get started install node; do it yourself start a npm project npm init -y create two files index.html script.js with respect to where index.html is function component () { const element = document.createElement('div'); element.innerHTML = _.join(['Hello&.. Python 파이썬 프로젝트 구조와 패키징 Python Project Structure and Packaging Typical project file structure . ├── env │ ├── bin │ ... │ └── pyvenv.cfg ├── .git │ ├── branches │ ├── config | ... ├── .gitignore ├── helloworld │ ├── __init.py__ │ └── helloworld.py ├── Makefile ├── MANIFEST.in ├── README.md ├── requirements.txt ├── setup.py └── tests ├── test_advanced.py └── test_basic.py Brief summary File / Folder Content env/ virtual.. Linux 리눅스 유용한 명령어: du du Summarize disk usage of the set of FILEs, recursively for directories. $ which du /usr/bin/du Examples $ du ~/Downloads ... 28 /home/dev/Downloads/emsdk/scripts 8 /home/dev/Downloads/emsdk/.circleci 776752 /home/dev/Downloads/emsdk 1078024 /home/dev/Downloads/ $ du -h ~/Downloads 28K /home/dev/Downloads/emsdk/scripts 8.0K /home/dev/Downloads/emsdk/.circleci 759M /home/dev/Downloads/emsdk $ du..