diff --git "a/DBS/\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223.md" "b/DBS/\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223.md" index c927a6a57..60f4aeed5 100644 --- "a/DBS/\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223.md" +++ "b/DBS/\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223.md" @@ -465,6 +465,9 @@ SELECT TO_CHAR(TO_TIMESTAMP('2023-05-08 10:10:10', 'yyyy-mm-dd hh24:mi:ss'), 'ww select trunc(sysdate) from dual; -- 得到这天的最后一秒 select trunc(sysdate) + 0.99999 from dual; +-- 获取倒推时间列表 +SELECT TRUNC(sysdate - numtodsinterval(level-1, 'hour'), 'MI') AS HOURMIN FROM dual CONNECT BY level <= 12; +SELECT TRUNC(SYSDATE - LEVEL/24, 'HH24') AS HOURMIN FROM DUAL CONNECT BY LEVEL <= 12 ORDER BY 1; ``` diff --git a/IDE/README.md b/IDE/README.md index f5a12de5c..a452b37b0 100644 --- a/IDE/README.md +++ b/IDE/README.md @@ -434,6 +434,7 @@ * [https://github.com/gabrielxvx/zh-fiddler](https://github.com/gabrielxvx/zh-fiddler) * [Fiddler抓包工具总结](https://www.cnblogs.com/yyhh/p/5140852.html) * [Windows抓包指南①:Proxifier+Fiddler对第三方程序强制抓包](https://www.52pojie.cn/thread-976016-1-1.html) +* [https://github.com/zobor/bproxy](https://github.com/zobor/bproxy) * [https://github.com/justcoding121/Titanium-Web-Proxy](https://github.com/justcoding121/Titanium-Web-Proxy) * [https://github.com/BornToBeRoot/NETworkManager](https://github.com/BornToBeRoot/NETworkManager) * [https://github.com/microsoft/ethr](https://github.com/microsoft/ethr) diff --git a/PL/Docker.md "b/PL/\345\256\271\345\231\250\350\231\232\346\213\237\346\234\272.md" similarity index 99% rename from PL/Docker.md rename to "PL/\345\256\271\345\231\250\350\231\232\346\213\237\346\234\272.md" index 5e2bf26f0..52f49f1f2 100644 --- a/PL/Docker.md +++ "b/PL/\345\256\271\345\231\250\350\231\232\346\213\237\346\234\272.md" @@ -1,4 +1,4 @@ -# Docker +# 容器虚拟机 [[toc]] @@ -119,6 +119,7 @@ - [https://github.com/AdaptiveScale/lxdui](https://github.com/AdaptiveScale/lxdui) - [再见 Docker,是时候拥抱下一代容器工具了](https://mp.weixin.qq.com/s/MDi4RB5V60EGl3ii9usD0Q) - [podman初试-和docker对比](https://blog.51cto.com/13447608/2448072) +- [https://github.com/lxc/incus](https://github.com/lxc/incus) - [https://github.com/containerd/containerd](https://github.com/containerd/containerd) - [https://github.com/moby/moby](https://github.com/moby/moby) - [https://github.com/coreos](https://github.com/coreos) diff --git a/System/Linux.md b/System/Linux.md index 6652fead7..57b9b6e5e 100644 --- a/System/Linux.md +++ b/System/Linux.md @@ -137,6 +137,7 @@ - [https://github.com/illiliti/libudev-zero](https://github.com/illiliti/libudev-zero) - [https://github.com/red-data-tools/YouPlot](https://github.com/red-data-tools/YouPlot) - 系统日志管理 [https://github.com/hat-open/hat-syslog](https://github.com/hat-open/hat-syslog) +- 安全防护 [https://github.com/fail2ban/fail2ban](https://github.com/fail2ban/fail2ban) diff --git "a/System/Linux\347\275\221\347\273\234\351\230\262\347\201\253\345\242\231.md" "b/System/Linux\347\275\221\347\273\234\351\230\262\347\201\253\345\242\231.md" index 4b5d2dde4..7fb40ae58 100644 --- "a/System/Linux\347\275\221\347\273\234\351\230\262\347\201\253\345\242\231.md" +++ "b/System/Linux\347\275\221\347\273\234\351\230\262\347\201\253\345\242\231.md" @@ -203,6 +203,7 @@ firewall-cmd --query-panic **`ping`、`tcptraceroute`、`traceroute`、`mtr`** +* [https://github.com/fujiapple852/trippy](https://github.com/fujiapple852/trippy) * [https://www.cnblogs.com/xzkzzz/p/7413177.html](https://www.cnblogs.com/xzkzzz/p/7413177.html) * [https://www.jianshu.com/p/802010d54849](https://www.jianshu.com/p/802010d54849) * [https://cloud.tencent.com/developer/article/1332118](https://cloud.tencent.com/developer/article/1332118) diff --git "a/Web/JavaScript\347\254\254\344\270\211\346\226\271\345\272\223.md" "b/Web/JavaScript\347\254\254\344\270\211\346\226\271\345\272\223.md" index aa8e51553..c8c9f98cb 100644 --- "a/Web/JavaScript\347\254\254\344\270\211\346\226\271\345\272\223.md" +++ "b/Web/JavaScript\347\254\254\344\270\211\346\226\271\345\272\223.md" @@ -107,6 +107,7 @@ * 甘特图 [https://github.com/frappe/gantt](https://github.com/frappe/gantt) * 电子签名 [https://github.com/OpenSignLabs/OpenSign](https://github.com/OpenSignLabs/OpenSign) * 响应式电子邮件 [https://github.com/mjmlio/mjml](https://github.com/mjmlio/mjml) +* 路由 [https://github.com/kwhitley/itty-router](https://github.com/kwhitley/itty-router) diff --git a/Web/README.md b/Web/README.md index cd477d3fc..703f282c6 100644 --- a/Web/README.md +++ b/Web/README.md @@ -251,6 +251,7 @@ * [https://github.com/aloud-comments](https://github.com/aloud-comments) * [https://github.com/MHuiG/ohhho](https://github.com/MHuiG/ohhho) * [https://github.com/imaegoo/twikoo](https://github.com/imaegoo/twikoo) +* [https://github.com/DongHY1/comments](https://github.com/DongHY1/comments) - [第三方评论系统之我见](https://www.yunyoujun.cn/share/third-party-comment-system)