This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 将键绑定放入此文件中以覆盖默认值 | |
| [ | |
| { | |
| "key": "ctrl+shift+u", | |
| "command": "editor.action.transformToUppercase" | |
| }, | |
| { | |
| "key": "ctrl+u", | |
| "command": "editor.action.transformToLowercase" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm i --registry https://registry.npm.taobao.org | |
| npm i -g npm-check-updates vue-cli webpack express-generator mocha --registry https://registry.npm.taobao.org # node 版本更新后需要安装的 | |
| npm config set cache 'D:\Path\npm\npm-cache' | |
| npm config set prefix 'D:\Path\npm\npm-global' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| user www-data; # 用户组 | |
| worker_processes 2; # 工作核心 | |
| # 进程id位置 | |
| pid /run/nginx.pid; | |
| events { | |
| use epoll; # 设置工作模式 | |
| worker_connections 768; # 单进程最大连接数 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pdf 盖章 | |
| magick convert -density 300 origin.pdf from.png # pdf转换城png | |
| magick convert from-1.png -compose over sign.png -geometry 403x403+1680+1600 -composite new.png # 在目标png上进行图片盖章 即将章图片覆盖到底图上 | |
| magick convert -density 300 from-0.png new.png to.pdf # 将盖完章的图重新合成pdf | |
| magick convert from.png -resize '3507x4960>' -background white -gravity center -extent '3507x4960>' to.png # 图片居中补白 | |
| magick convert .\1.png -crop 170x170+332+0 20.png # 图片裁剪 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| meteor-simple-schema autoValue自动生成值 在 schema.clean的过程中 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ps aux|grep java|awk '{print $2}'|xargs kill -9 批量杀死进程 | |
| tail -f filename 监听文件变化 及显示内容 -f 循环读取 | |
| sudo netstat -tunlp|grep {number} 查看端口使用情况 |
NewerOlder