우도비
mysqldump 사용법
database 전체 덤프mysqldump -uroot -ppassword --all-databases > dump.sql 특정 database 만 덤프mysqldump -uroot -ppassword databasename > dump.sql 복구시mysql -uroot -ppassword databasesname < dump.sql
db/msyql
2017. 6. 16. 03:58
auto indent F12로 키매핑
KeyBindings 에서 your key Mapping file 에서 아래 텍스트 추가 'atom-text-editor': 'F12': 'editor:auto-indent'
editor/atom
2017. 6. 14. 01:59
How To Set Up a Node.js Application for Production on Ubuntu 16.04
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..
linux/nginx
2017. 6. 4. 01:25