为了在iPhone端通过快捷指令对功能进行调用,短网址服务增加了响应特殊指令的功能
短网址服务增加自动下载PDF文档功能
基于短网址服务的一项增强功能上线,实现在缩短网址的同时,如果探测到网址是一个PDF,将自动将PDF文档下载至文件服务器存档,供后续下载和分享。
短网址服务增加图片占位符功能
使用了YOURLS的Hook:redirect_keyword_not_found,当没有匹配的短网址时,通过特殊构造的URL Schema来识别是否调用占位符功能,通过Plugin调用第三方API接口实现显示占位符。
Anker Powerhouse II 400 使用体验
Anker PowerHouse II 400 使用体验
如何在Docker中运行v2ray
如何在Docker中运行v2ray
安装Docker
安装依赖
1 |
apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common |
安装Key
1 |
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add - |
添加源
1 |
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") $(lsb_release -cs) stable" |
安装docker-ce
1 2 |
apt-get update apt-get install docker-ce docker-ce-cli containerd.io |
测试
1 |
docker run hello-world |
输出
1 2 |
Hello from Docker! This message shows that your installation appears to be working correctly. |