CloudFlare Sites
网站可以用CloudFlare加速 https://dash.cloudflare.com, 添加需要加速的网站,之后会提示修改为CloudFlare提供的DNS。最后会有一个dashboard,提供各种网站的信息, DNS/TLS/Firewall/Speed/Cache… 可以测试一下网站的performance,并提供各种建议。 CloudFlare的测试是从美国发起的 除了DN… 阅读更多 »CloudFlare Sites
网站可以用CloudFlare加速 https://dash.cloudflare.com, 添加需要加速的网站,之后会提示修改为CloudFlare提供的DNS。最后会有一个dashboard,提供各种网站的信息, DNS/TLS/Firewall/Speed/Cache… 可以测试一下网站的performance,并提供各种建议。 CloudFlare的测试是从美国发起的 除了DN… 阅读更多 »CloudFlare Sites
注册登录 https://workers.cloudflare.com/ 点击Start Building开始创建subdomain 创建workers,点击Create a Worker,接下来会有一个helloworld框架搭好,现在可以添加自己的代码了 绑定到自己的域名,首先在CloudFlare创建一个site,然后进入这个site的Worker Tab,打开Add Route编辑即可。
OSI(Open Source Initiative)批准的(Approved)开源许可证有几十种,比较流行的有9种。 Apache License 2.0 (Apache-2.0) 3-clause BSD license (BSD-3-Clause) 2-clause BSD license (BSD-2-Clause) GNU General Public License (GPL) GNU… 阅读更多 »开源许可证
阿里云有众多的镜像,比如Linux/NPM/Maven/Kubernetes/Docker,这里有详细信息 https://developer.aliyun.com/mirror/
官方说明 https://developer.aliyun.com/mirror/ubuntu
菜单选择 #!/bin/bash echo “which one do you want?” select option in option1 option2 option3 option4; do break done echo “You have selected $option” 用户输入 read -p “input a word :” word if [ ! -n “$word” ] ;… 阅读更多 »Shell Tips
这篇文章写的不错 https://www.cnblogs.com/cyyz-le/p/11305004.html
方法1 if [ -x “$(command -v ufw)” ]; then echo “ufw installed!” else echo ‘Error: git is not installed.’ >&2 exit 1 fi 方法2 (与OS的发行版本有关) if [[ $(apt list ufw) =~ “installed” ]]; then echo “ufw instal… 阅读更多 »Shell判断某个软件是否安装
[[ “abcde” =~ “abc” ]] && echo “this is true” || echo “this is not true” if [[ “abcde” =~ “abc” ]]; then echo “this is true” else echo “this is not true”; exit fi
apt 是 apt-get、apt-cache 和 apt-config 中最常用命令选项的集合 apt 命令 取代的命令 命令的功能 apt install apt-get install 安装软件包 apt remove apt-get remove 移除软件包 apt purge apt-get purge 移除软件包及配置文件 apt update apt-get update 刷新存储库… 阅读更多 »apt vs apt-get