Skip to content

Commit

Permalink
add link
Browse files Browse the repository at this point in the history
  • Loading branch information
bajins committed Dec 15, 2023
1 parent 8024589 commit a0c8662
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions DBS/关系型数据库.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
```


Expand Down
1 change: 1 addition & 0 deletions IDE/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion PL/Docker.md → PL/容器虚拟机.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Docker
# 容器虚拟机

[[toc]]

Expand Down Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions System/Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)



Expand Down
1 change: 1 addition & 0 deletions System/Linux网络防火墙.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions Web/JavaScript第三方库.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)



Expand Down
1 change: 1 addition & 0 deletions Web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a0c8662

Please sign in to comment.