com.plexapp.android_7.10.0.8875-715270832_minAPI21armeabi-v7anodpi_apkmirror.com_.apk_下载
php 常用post请求
public function postData($url, $data, $timeout = 300) { $headers = array( "Cache-Control: no-cache", "Content-Type: application/x-www-form-urlencoded" ); $curl = curl_i...
linux 下查询指定文件夹 文件夹大小
du -h --max-depth=1 /home
php 切换版本
brew install php@7.3 brew unlink php brew link php@7.3
centos 7/8 安装nodejs 12
wget https://nodejs.org/dist/v12.18.3/node-v12.18.3-linux-x64.tar.xz tar xvf node-v12.18.3-linux-x64.tar.xz mv node-v12.18.3-linux-x64 nodejs vim /etc/profile export PATH=$PATH:/usr/local/src/...
centos 8 指定python 默认版本
alternatives --set python /usr/bin/python3 #指定python3 alternatives --set python /usr/bin/python2 #指定python2
centos 下查找软件安装位置
比如maven查找安装仓库 rpm -qal |grep maven which maven
docker 部署 rocketmq
启动nameserver命令 docker run -d -p 9876:9876 --name rmqserver foxiswho/rocketmq:server-4.5.1 启动broker命令 docker run -d -p 10911:10911 -p 10909:10909\ --name rmqbroker --link rmqserv...
git 长期保存密码
git config –global credential.helper store 永久存储 git config --global --unset credential.helper 移除存储密码
解决 tinkphp Function Redis::delete() is deprecated
修改文件 delete($key) 为 del($key)