随笔分类 - DevelopQ&A
Write down some Q&A during developing
摘要:console里输入:document.querySelector('video').playbackRate=2
阅读全文
摘要:.git目录中的几个重要文件的含义 HEAD文件:用于存放当前所在分支的引用,这个引用是个符号引用(symbolic reference) index文件:二进制文件,它就是暂存区(Stage Area)。它是一个目录树,记录了文件的时间戳、文件长度、SHA-1等 refs目录:基本所有的引用(re
阅读全文
摘要:配置文件位置 安装目录的 conf/httpd.conf 文件里 关键配置 DocumentRoot # DocumentRoot: The directory out of which you will serve your documents. By default, all requests
阅读全文
摘要:下载和安装省略了 git全局配置在gitconfig文件里,用户配置在.gitconfig文件里 下载安装后设置用户名 先打开git bash 然后输入命令 git config --global user.name "xxx" git config --global user.email xxx
阅读全文
摘要:https://www.cnblogs.com/sxiszero/p/11133747.html
阅读全文
摘要:严格意义上Web服务器只负责处理HTTP协议,只能发送静态页面的内容。而JSP,ASP,PHP等动态内容需要通过CGI、FastCGI、ISAPI等接口交给其他程序去处理。这个其他程序就是应用服务器。比如Web服务器包括Nginx,Apache,IIS等。而应用服务器包括WebLogic,JBoss
阅读全文
摘要:先抛个定义 环境变量(environment variables)一般是指在操作系统中用来指定操作系统运行环境的一些参数,如:临时文件夹位置和系统文件夹位置等。环境变量是在操作系统中一个具有特定名字的对象,它包含了一个或者多个应用程序所将使用到的信息。例如Windows和DOS操作系统中的path环
阅读全文
摘要:首先,下载镜像,推荐 http://msdn.itellyou.cn/ 这个网站下载文件 选择的时候记得选带sp1字样的,不然安装vmware tools的时候会报错 然后打开软件,单击创建新的虚拟机 我选的是自定义 直接下一步 选择稍后安装操作系统 根据你的镜像版本来选 选位置 选BIOS 接下来
阅读全文
摘要:https://blog.csdn.net/kohang/article/details/95631208
阅读全文
摘要:官方说单例能处理key:2.5亿个,参考链接:https://redis.io/topics/faq,以下是原话: What is the maximum number of keys a single Redis instance can hold? and what the max number
阅读全文
摘要:<el-button type="success" @click="visible=false">取消</el-button> 这样才可以正常设置 visible 为 false,如果设置this.visible=false就不可以
阅读全文
摘要:https://www.cnblogs.com/zhouhbing/p/4204132.html
阅读全文
摘要:http://oublog.cn/vps/winvps/188.html
阅读全文
摘要:The Tomcat connector configured to listen on port 8110 failed to start. The port may already be in use or the connector may be misconfigured. 打开cmd 搜索
阅读全文
摘要:netstat -anp | grep 端口号 netstat -nultp
阅读全文
摘要:右键pom.xml,在弹出的菜单中点击add as maven project即可!
阅读全文
摘要:两条linux命令 curl ifconfig.me curl cip.cc
阅读全文