摘要: HTTP/3 QUIC 在线测试工具是一个用于测试网站服务器是否支持 QUIC 传输协议和 HTTP/3 协议的免费在线工具。 HTTP/3 QUIC 在线测试工具:https://http3.wcode.net/ 阅读全文
posted @ 2024-01-27 13:16 charescape 阅读(4748) 评论(0) 推荐(0)
摘要: IPv6 在线测试工具是一个 IP 协议检测工具,用于测试网站服务器是否支持 IPv6 协议。同时,检测工具还支持查询 IPv6 GeoIP 地理位置信息。 IPv6 在线测试工具:https://ipv6test.wcode.net/ 阅读全文
posted @ 2024-01-27 13:05 charescape 阅读(2371) 评论(0) 推荐(0)
摘要: 举例 1:删除文件名中包含abc的文件 # 先列出来确认一下 find ./dir -type f -name '*abc*' # 执行删除命令 find ./dir -type f -name '*abc*' -delete 举例 2:删除文件名以.abc结尾的文件 # 先列出来确认一下 find 阅读全文
posted @ 2023-01-10 16:18 charescape 阅读(3099) 评论(0) 推荐(0)
摘要: https://windowsreport.com/windows-11-right-click-show-all-options/ 阅读全文
posted @ 2022-09-30 00:31 charescape 阅读(22) 评论(0) 推荐(0)
摘要: https://www.digitalocean.com/community/tutorials/working-with-json-in-mysql 阅读全文
posted @ 2020-12-23 16:42 charescape 阅读(56) 评论(0) 推荐(0)
摘要: https://mirrors.sjtug.sjtu.edu.cn/ 支持 composer putty npm 等 阅读全文
posted @ 2020-11-18 21:53 charescape 阅读(1030) 评论(0) 推荐(0)
摘要: 以下内容转载自 https://my.oschina.net/editorial-story/blog/4682306 权利:作者 詹毅,上海执业律师,华东政法大学兼职教授,微信ZhanyiAttorney。 声明:传播本文时,请于文首呈现权利及声明。本律师个人观点,仅供参考,不构成法律意见书。 2 阅读全文
posted @ 2020-10-22 09:50 charescape 阅读(1037) 评论(0) 推荐(0)
摘要: http://www.ruanyifeng.com/blog/2017/10/open-source-license-tutorial.html http://www.ruanyifeng.com/blog/2011/05/how_to_choose_free_software_licenses.h 阅读全文
posted @ 2020-09-29 09:12 charescape 阅读(116) 评论(0) 推荐(0)
摘要: 一段代码,快速申请 Let's Encrypt (Free SSL/TLS Certificates) 免费域名证书 docker run --rm -it \ --env Ali_Key=YOUR_ALIYUN_ACCESSKEYID \ --env Ali_Secret=YOUR_ALIYUN_ 阅读全文
posted @ 2020-09-15 17:48 charescape 阅读(209) 评论(0) 推荐(0)
摘要: <?php use DateInterval; function birthday2age(string $birthday): int { if (!empty($birthday)) { $diff = date_diff(date_create($birthday), date_create( 阅读全文
posted @ 2020-06-02 20:52 charescape 阅读(279) 评论(0) 推荐(0)