목록분류 전체보기 (39)
우도비
Hello, {{ name }}!', props: ['name'], }); In JavaScript, strings aren't allowed to span over multiple lines. If you want to give your template some room to breath, you can use template literals. // greeter.js Vue.component('greeter', { template: ` Hello, {{ name }}! `, props: ['name'], }); You could also define the template in a separate file if..
옵션 수정 - windows > lines of scrollback = 10000 - windows > appearance > font = consolas - windows > colours > ANSI Blue { red: 74, green: 74: blue: 187 } > ANSI blue Bold { red: 140, green: 140, blue: 255 }
리눅스 grep -Ril "mysqli" .윈도우 findstr /n /s "mysqli" * * euc-kr 한글 검색이 안되서 윈도우에서 하니 잘됨
http://gyuha.tistory.com/502
http://ohyecloudy.com/ddiary/2016/09/04/til-npm-install-save-or-save-dev/ 그냥 install 하면 ./디렉node_modules 터리에 패키지 설치를 하고 끝. --save, --save-dev 옵션은 ./package.json 업데이트를 같이해준다. 어디에 패키지 정보를 추가하느냐가 다른데, --save 옵션은 dependencies object에 추가하고 --save-dev 옵션은 devDepenencies object에 추가한다.dependencies와 devDepenencies 차이는 npm install을 할 때 나타난다. dependencies는 항상 설치되고 devDepenencies는 --production 옵션을 붙이면 빠진다. ..
database 전체 덤프mysqldump -uroot -ppassword --all-databases > dump.sql 특정 database 만 덤프mysqldump -uroot -ppassword databasename > dump.sql 복구시mysql -uroot -ppassword databasesname < dump.sql
KeyBindings 에서 your key Mapping file 에서 아래 텍스트 추가 'atom-text-editor': 'F12': 'editor:auto-indent'
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-application-for-production-on-ubuntu-16-04IntroductionNode.js is an open source JavaScript runtime environment for easily building server-side and networking applications. The platform runs on Linux, OS X, FreeBSD, and Windows. Node.js applications can be run at the command line, but we'll focus on running them as a service..
http://uwsgi-docs.readthedocs.io/en/latest/Snippets.html Python Auto-reloading (DEVELOPMENT ONLY!)In production you can monitor file/directory changes for triggering reloads (touch-reload, fs-reload...).During development having a monitor for all of the loaded/used python modules can be handy. But please use it only during development.The check is done by a thread that scans the modules list wit..