Wlxyzxyz's Blog

exiftool删除图片exif信息

2019/7/3

exiftool下载地址 https://www.sno.phy.queensu.ca/~phil/exiftool/ 使用帮助 https://www.sno.phy.queensu.ca

parallelshell同时运行多个命令

2019/6/12

# 安装和使用 ```bash npm i -g parallelshell # 使用 parallelshell "cmd1" "cmd2" "cmd3" ```

npm指定目录

2019/6/12

使用—prefix npm start --prefix /path/to/project 参考: https://stackoverflow.com/questions/3

linux显示中文

2019/6/3

查看字符编码 locale 修改字符编码 dpkg-reconfigure locales Debian and Ubuntu /etc/default/locale

使用PEM文件ssh

2019/4/7

连接服务器 ```bash sudo chmod 600 key.pem ssh -i key.pem username@ip ``` ```bash ssh-add key.pem

jupyter使用xgboost服务挂掉

2019/4/2

发生错误 OMP: Error #15: Initializing libiomp5.dylib, but found libiomp5.dylib already initialized.

使用postgresql

2019/3/14

``` sudo apt-get install postgresql netstat -ap | grep 5432 ``` 切换用户并登录 ``` sudo su postgr

使用git

2019/3/13

```bash git --version #查看版本 ``` ## 生成密钥 ``` ssh-keygen -t rsa -f ~/.ssh/id_rsa_github -C

使用ibmcloud

2019/3/9

# 创建资源 ![](ibmcloud1.png) # 安装使用 IBM Cloud CLI https://console.bluemix.net/docs/cli/index.html#

nestjs相关

2019/3/9

nestjs nodemon ``` 新建 nest new nesttest src/ ├── app.controller.spec.ts ├── app.con