摘要:
docker查看镜像的所有标签 #!/bin/sh repo_url=https://registry.hub.docker.com/v1/repositories image_name=$1 curl -s ${repo_url}/${image_name}/tags | json_reforma 阅读全文
摘要:
虚拟IP技术-ip地址漂移技术 虚拟IP 在 TCP/IP 的架构下,所有想上网的电脑,不论是用何种方式连上网路,都必须要有一个唯一的 IP-address。事实上IP地址是主机硬件地址的一种抽象,简单的说,MAC地址是物理地址,IP地址是逻辑地址。 虚拟IP,就是一个未分配给真实主机的IP,也就是 阅读全文
摘要:
并发连接数和请求数的区别 概念 并发连接数-SBC(Simultaneous Browser Connections) 并发连接数指的是客户端向服务器发起请求,并建立了TCP连接。每秒钟服务器链接的总TCP数量,就是并发连接数。 请求数-QPS(Query Per Second)/RPS(Reque 阅读全文
摘要:
RabbitMQ-发布订阅 https://www.rabbitmq.com/tutorials/tutorial-three-php.html Exchanges In previous parts of the tutorial we sent and received messages to 阅读全文
摘要:
RabbitMQ-工作队列 https://www.rabbitmq.com/tutorials/tutorial-two-php.html Message acknowledgmen Message acknowledgments were previously turned off by our 阅读全文
摘要:
ssh用私钥生成公钥 问题描述: ssh秘钥对只剩下了私钥,如何用私钥来生成对应的公钥? 解决方案:用git bash输入 ssh-keygen 指令 在屏幕上显示私钥生产的公钥 ssh-keygen -y -f .vagrant/machines/default/virtualbox/privat 阅读全文
摘要:
随机头像生成接口 摘要 A playful avatar generator for the modern age 详情链接: https://personas.draftbit.com/ 实例图片 阅读全文
摘要:
How to fix VirtualBox session error: Call to NEMR0InitVMPart2 failed VERR_NEM_INIT_FAILED (VERR_NEM_VM_CREATE_FAILED) Learn how to fix this error that 阅读全文
摘要:
vi/vim文件查找与替换 概述 vim有着强大的替换和查找功能,若能进行熟练的运用,可以让工作效率得到一个很大程度的提高. 语法 [addr]s/源字符串/目的字符串/[option] [addr]`表示检索范围,如: "1,n":表示从第1行到n行 "%":表示整个文件,同"1,$" ".,$" 阅读全文
摘要:
Vim中空格和TAB的替换 设置 在.vimrc中添加以下代码后,重启vim即可实现按TAB产生4个空格: set ts=4 (注:ts是tabstop的缩写,设TAB宽4个空格) set expandtab 替换 对于已保存的文件,可以使用下面的方法进行空格和TAB的替换: TAB替换为空格: : 阅读全文