摘要:
将博客搬至CSDN zhsngq 阅读全文
摘要:
vscode debuger 浏览器 { // 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。 // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "c 阅读全文
摘要:
线程状态 https://www.cnblogs.com/myseries/p/12050083.html 想要通过jstack命令来分析线程的情况的话,首先要知道线程都有哪些状态,下面这些状态是我们使用jstack命令查看线程堆栈信息时可能会看到的线程的几种状态: NEW,未启动的。不会出现在Du 阅读全文
摘要:
动态组件 <template> <div style="margin-top: 1em;"> <el-form :inline="true" :model="model" class="demo-form-inline"> <el-form-item v-for="(item,attr) in fo 阅读全文
摘要:
set nu set rnu colorscheme shirotelin set cursorline 阅读全文
摘要:
无法clean up sqlite3.exe .svn/wc.db "select * from work_queue" sqlite3.exe .svn/wc.db "delete from work_queue" 阅读全文
摘要:
终止java taskkill /f /t /im javaw.exe linux 环境变量 vim .bash_profile export JAVA_HOME=~/11/jdk-15.0.1 export PATH=$JAVA_HOME/bin:$PATH export CLASSPATH=.: 阅读全文
摘要:
红色 #ED5565 深灰色 #4F4F4F 黑色 #393939 动画 cubic-bezier(0.620, 0.935, 0.690, 0.990) http://web.chacuo.net/css3beziertool/ 分割线 <div class="separator-op"/> .s 阅读全文
摘要:
安装是千万不要开启啥window的功能 查看镜像 docker images 删除容器 docker rm -f $(docker ps -qa) 进入容器命令行 docker exec -it ${NAMES} /bin/bash 查看容器 docker ps -a 正真运行的是容器,容器启动有专 阅读全文
摘要:
redis 的方案 php / 测试并发操作 @author zhsngq @date 2019 11 01 @return / public function actionTest() { $tr = Yii::$app db beginTransaction(); try { $sql = "I 阅读全文
摘要:
一共一百次请求,每次10个 ab -c 10 -n 100 -H "auth:token" http://..../ 先用10个并发压测100秒。 ab -t 100 -c 10 'http://localhost:8083/xxxx?uid=1233435&did=123456789&appId= 阅读全文
摘要:
php 中的Etag 关闭http链接 正则中文截断乱码 url 下载文件 composer phar php D:/phpbox/php/composer.phar install 代理 编辑配置文件 yii2 需要 require 开发版本 mysql测试连接 yii yii post yii 阅读全文
摘要:
git 不加入版本库 git update-index --assume-unchanged <要忽略的文件> git update-index --no-assume-unchanged <要取消忽略的文件> 修改git文件忽略 git rm -r --cached . git add . git 阅读全文
摘要:
js 模拟下拉 window.scrollTo(0, document.body.scrollHeight) 获取dom全部样式 document.defaultView.getComputedStyle(document.querySelector('.ii')).backgroundImage 阅读全文
摘要:
内部变量 $folder 当前项目文件 $file_path 当前文件所在路径, 比如 C:\Files. $file 当前文件的完整路径, 比如 C:\Files\Chapter1.txt. $file_name 当前文件的文件名, 比如 Chapter1.txt. $file_extension 阅读全文
摘要:
##vim -- DBeaver Add vrapper repository http://vrapper.sourceforge.net/update-site/stable mysql 批量删除sql SELECT CONCAT( 'drop table we7.', table_name, 阅读全文
摘要:
yii server { listen 80; server_name web.xxx.cn; root /home/wwwroot/xxx/web; access_log /home/wwwroot/error.log; error_log /home/wwwroot/error.log; ind 阅读全文
摘要:
linux 查看公网连接ip curl ifconfig.me 同时监听多个文件 tail -f `find ./../logs/ -name *.out` 停止进程 ps -ef |grep php kill -9 4394 设置软连接 ln -sf /usr/local/nginx/sbin/n 阅读全文