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 60f4aeed5..2aa71c576 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,8 +465,13 @@ 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 - NumToDSInterval(level-1, 'hour'), 'MI') AS ds -- 'day','hour','minute','second' +, TRUNC(sysdate - NumToYMInterval(level-1, 'month'), 'MI') AS ym -- 'year','month' +FROM dual CONNECT BY level <= 12; + +SELECT TO_CHAR(Add_Months(Trunc(Sysdate,'YYYY'), Level-1), 'FMMonth') AS month_name 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/Chromium.md b/IDE/Chromium.md index f28b6a704..085c2b910 100644 --- a/IDE/Chromium.md +++ b/IDE/Chromium.md @@ -11,6 +11,7 @@ * [https://github.com/PSPDFKit-labs/browserslist.dev](https://github.com/PSPDFKit-labs/browserslist.dev) * [https://browserslist.dev](https://browserslist.dev) + * [https://github.com/browserslist](https://github.com/browserslist) * [https://github.com/WebKit](https://github.com/WebKit) * 嵌入式框架(CEF) [https://github.com/chromiumembedded](https://github.com/chromiumembedded) * [https://bitbucket.org/chromiumembedded/cef](https://bitbucket.org/chromiumembedded/cef) @@ -171,6 +172,7 @@ chrome://flags/#enable-parallel-downloading * [https://github.com/blittle/chrome-dev-tools](https://github.com/blittle/chrome-dev-tools) * Chrome开发者工具中文手册 [https://github.com/CN-Chrome-DevTools/CN-Chrome-DevTools](https://github.com/CN-Chrome-DevTools/CN-Chrome-DevTools) * [https://github.com/ahangchen/Chromium_doc_zh](https://github.com/ahangchen/Chromium_doc_zh) +* [浏览器不想让你知道的 67 个奇怪的调试技巧](https://alan.norbauer.com/articles/browser-debugging-tricks) * [Chrome工具-查看dom元素绑定的事件](https://blog.csdn.net/weixin_38080573/article/details/105200212) * [F12找到页面某一元素所绑定的点击事件](https://www.cnblogs.com/111testing/p/11448316.html) * [如何使用chrome浏览器进行js调试找出元素绑定的点击事件](https://www.cnblogs.com/itjeff/p/11692342.html) diff --git a/Other/Markdown.md b/Other/Markdown.md index acad4dfd6..9bdde4f3c 100644 --- a/Other/Markdown.md +++ b/Other/Markdown.md @@ -34,16 +34,15 @@ * [https://github.com/pycco-docs/pycco](https://github.com/pycco-docs/pycco) * [https://github.com/Python-Markdown/markdown](https://github.com/Python-Markdown/markdown) * [https://github.com/jgm/pandoc](https://github.com/jgm/pandoc) -* [https://github.com/missive/emoji-mart](https://github.com/missive/emoji-mart) -* [https://github.com/rickstaa/github-emoji-picker](https://github.com/rickstaa/github-emoji-picker) * [https://github.com/Awes0meM4n/Awes0meM4n.github.io](https://github.com/Awes0meM4n/Awes0meM4n.github.io) - 文档转换 [https://github.com/topics/converter](https://github.com/topics/converter) -- [https://github.com/topics/emoji](https://github.com/topics/emoji) - GitHub角落图标 [https://github.com/tholman/github-corners](https://github.com/tholman/github-corners) +- [https://github.com/missive/emoji-mart](https://github.com/missive/emoji-mart) +- [https://github.com/rickstaa/github-emoji-picker](https://github.com/rickstaa/github-emoji-picker) - SVG徽章 [https://github.com/badges/shields](https://github.com/badges/shields) - [https://github.com/WebpageFX/emoji-cheat-sheet.com](https://github.com/WebpageFX/emoji-cheat-sheet.com) - [http://www.emoji-cheat-sheet.com](http://www.emoji-cheat-sheet.com) @@ -562,4 +561,5 @@ string &operator+(const string& A,const string& B) //cpp * [https://github.com/standardnotes](https://github.com/standardnotes) * [https://github.com/oleeskild/obsidian-digital-garden](https://github.com/oleeskild/obsidian-digital-garden) * [https://github.com/obsidianmd](https://github.com/obsidianmd) -* [https://github.com/yesmore/inke](https://github.com/yesmore/inke) \ No newline at end of file +* [https://github.com/yesmore/inke](https://github.com/yesmore/inke) +* GitBook替代 [https://github.com/lindeer/dartbook](https://github.com/lindeer/dartbook) \ No newline at end of file diff --git "a/Other/\345\205\215\350\264\271\346\234\215\345\212\241.md" "b/Other/\345\205\215\350\264\271\346\234\215\345\212\241.md" index b468a7577..739e657ad 100644 --- "a/Other/\345\205\215\350\264\271\346\234\215\345\212\241.md" +++ "b/Other/\345\205\215\350\264\271\346\234\215\345\212\241.md" @@ -67,6 +67,8 @@ * [https://github.com/chawyehsu/lxgw-wenkai-webfont](https://github.com/chawyehsu/lxgw-wenkai-webfont) * [https://github.com/vercel/geist-font](https://github.com/vercel/geist-font) * [https://github.com/githubnext/monaspace](https://github.com/githubnext/monaspace) +* [https://github.com/tonsky/FiraCode](https://github.com/tonsky/FiraCode) +* [https://github.com/rsms/inter](https://github.com/rsms/inter) * 高辨识度字体 [https://brailleinstitute.org/freefont](https://brailleinstitute.org/freefont) diff --git a/PL/README.md b/PL/README.md index a76484649..c764b9b8b 100644 --- a/PL/README.md +++ b/PL/README.md @@ -20,6 +20,7 @@ - [https://github.com/The-Run-Philosophy-Organization/run](https://github.com/The-Run-Philosophy-Organization/run) - [https://github.com/AnsonZnl/RehabilitationGuide](https://github.com/AnsonZnl/RehabilitationGuide) - 副业 [https://github.com/bleedline/aimoneyhunter](https://github.com/bleedline/aimoneyhunter) +- [Solo 独立开发者社区](https://solo.xin) diff --git "a/PL/\350\241\250\350\276\276\345\274\217\345\222\214\347\274\226\347\240\201.md" "b/PL/\350\241\250\350\276\276\345\274\217\345\222\214\347\274\226\347\240\201.md" index 87a524bf9..9ed70c837 100644 --- "a/PL/\350\241\250\350\276\276\345\274\217\345\222\214\347\274\226\347\240\201.md" +++ "b/PL/\350\241\250\350\276\276\345\274\217\345\222\214\347\274\226\347\240\201.md" @@ -49,6 +49,9 @@ + [https://unicode.org/reports/tr44/#GC_Values_Table](http://unicode.org/reports/tr44/#GC_Values_Table) + [unicode-categories](https://github.com/slevithan/xregexp/blob/2b652889fc14524d20f85604f291f725347f8033/src/addons/unicode-categories.js#L30) + [https://emojipedia.org](https://emojipedia.org) ++ [https://github.com/topics/emoji](https://github.com/topics/emoji) ++ [https://github.com/rotick/searchemoji](https://github.com/rotick/searchemoji) + * [UniCode编码表及部分不可见字符过滤方案](https://www.cnblogs.com/fan-yuan/p/8176886.html) diff --git "a/Python/\344\272\272\345\267\245\346\231\272\350\203\275.md" "b/Python/\344\272\272\345\267\245\346\231\272\350\203\275.md" index 9aac15e0b..302f008f2 100644 --- "a/Python/\344\272\272\345\267\245\346\231\272\350\203\275.md" +++ "b/Python/\344\272\272\345\267\245\346\231\272\350\203\275.md" @@ -23,6 +23,7 @@ + [https://github.com/xtekky/gpt4free](https://github.com/xtekky/gpt4free) + [https://github.com/JoeSiu/discord-chatbot](https://github.com/JoeSiu/discord-chatbot) + [https://github.com/juzeon/poe-openai-proxy](https://github.com/juzeon/poe-openai-proxy) ++ [https://github.com/huanfeng123/poe-openai](https://github.com/huanfeng123/poe-openai) + [https://github.com/chathub-dev](https://github.com/chathub-dev) + [https://github.com/TransformerOptimus/SuperAGI](https://github.com/TransformerOptimus/SuperAGI) + [https://github.com/openchatai/OpenChat](https://github.com/openchatai/OpenChat) @@ -51,6 +52,13 @@ - [https://github.com/QwenLM/Qwen](https://github.com/QwenLM/Qwen) - [https://github.com/imoneoi/openchat](https://github.com/imoneoi/openchat) - [https://github.com/Yidadaa/ChatGPT-Next-Web](https://github.com/Yidadaa/ChatGPT-Next-Web) + - [Docker系列 基于OpenAI API和Access Token自建ChatGPT](https://blognas.hwb0307.com/linux/docker/4201) + - [https://github.com/lss233/chatgpt-mirai-qq-bot](https://github.com/lss233/chatgpt-mirai-qq-bot) + - [https://github.com/Chanzhaoyu/chatgpt-web](https://github.com/Chanzhaoyu/chatgpt-web) + - [https://github.com/ChatGPTNextWeb](https://github.com/ChatGPTNextWeb) + - [https://github.com/chatanywhere/GPT_API_free](https://github.com/chatanywhere/GPT_API_free) + - [https://github.com/babaohuang/GeminiProChat](https://github.com/babaohuang/GeminiProChat) + - [https://github.com/antergone/palm-proxy](https://github.com/antergone/palm-proxy) - 提示语 [https://github.com/linexjlin/GPTs](https://github.com/linexjlin/GPTs) - DALL-E 文本生成图片 - Midjourney 文本生成图片 diff --git a/System/Android.md b/System/Android.md index 721d296e3..e741400ac 100644 --- a/System/Android.md +++ b/System/Android.md @@ -464,10 +464,8 @@ + [https://github.com/butzist/ActivityLauncher](https://github.com/butzist/ActivityLauncher) + [https://github.com/yoyodadada/haoruanfenxiang](https://github.com/yoyodadada/haoruanfenxiang) + [https://yoyodadada.lanzoui.com/u/yoyodadada](https://yoyodadada.lanzoui.com/u/yoyodadada) -+ [https://dongji.lanzoui.com/b05alr4pi](https://dongji.lanzoui.com/b05alr4pi) + [https://www.lanzoui.com/b05f9wyf](https://www.lanzoui.com/b05f9wyf) -+ [https://dongji.lanzoui.com/b05a873cb](https://dongji.lanzoui.com/b05a873cb) -+ [https://dongji.lanzoui.com/b05a93hje](https://dongji.lanzoui.com/b05a93hje) + + [https://xydh.fun/dieheart](https://xydh.fun/dieheart) **音乐下载** 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 7fb40ae58..e4972ba66 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" @@ -195,9 +195,6 @@ firewall-cmd --query-panic - 查询IP地理信息 [https://github.com/zu1k/nali](https://github.com/zu1k/nali) - [https://github.com/jason5ng32/MyIP](https://github.com/jason5ng32/MyIP) - [https://ip.guide](https://ip.guide) -- DNS扫描 [https://github.com/pwnesia/dnstake](https://github.com/pwnesia/dnstake) -- [https://github.com/zartbot/ztrace](https://github.com/zartbot/ztrace) -- [https://github.com/pymumu/smartdns](https://github.com/pymumu/smartdns) - 可用性检查 [https://github.com/funilrys/PyFunceble](https://github.com/funilrys/PyFunceble) @@ -211,6 +208,7 @@ firewall-cmd --query-panic * [Netcat详解](https://www.cnblogs.com/dalianpai/p/12505678.html) * [http://www.dest-unreach.org/socat](http://www.dest-unreach.org/socat) * [https://github.com/vi/websocat](https://github.com/vi/websocat) +* [https://github.com/pouriyajamshidi/tcping](https://github.com/pouriyajamshidi/tcping) > 在Linux中有一个更好的网络连通性判断工具,它可以结合ping | nslookup | tracert 来判断网络的相关特性,这个命令就是mtr。 diff --git "a/System/Linux\351\205\215\347\275\256.md" "b/System/Linux\351\205\215\347\275\256.md" index 3fb0b70be..7ce9af463 100644 --- "a/System/Linux\351\205\215\347\275\256.md" +++ "b/System/Linux\351\205\215\347\275\256.md" @@ -6,6 +6,7 @@ # Flag * 广告拦截 [https://github.com/pi-hole/pi-hole](https://github.com/pi-hole/pi-hole) +* [在 Linux 上安装字体:综合指南](https://linuxiac.com/how-to-install-fonts-on-linux) ```bash diff --git a/System/README.md b/System/README.md index 1322a1a40..50ecd0922 100644 --- a/System/README.md +++ b/System/README.md @@ -178,6 +178,10 @@ * [https://github.com/letsencrypt/challtestsrv](https://github.com/letsencrypt/challtestsrv) * [https://github.com/rthalley/dnspython](https://github.com/rthalley/dnspython) * [https://github.com/bluejekyll/trust-dns](https://github.com/bluejekyll/trust-dns) +* [https://github.com/IrineSistiana/mosdns](https://github.com/IrineSistiana/mosdns) +* [https://github.com/pymumu/smartdns](https://github.com/pymumu/smartdns) +* DNS扫描 [https://github.com/pwnesia/dnstake](https://github.com/pwnesia/dnstake) +* [https://github.com/zartbot/ztrace](https://github.com/zartbot/ztrace) diff --git "a/System/Windows\350\275\257\344\273\266.md" "b/System/Windows\350\275\257\344\273\266.md" index 8f0b82271..52a7cd330 100644 --- "a/System/Windows\350\275\257\344\273\266.md" +++ "b/System/Windows\350\275\257\344\273\266.md" @@ -897,6 +897,7 @@ THUV2-32HH7-6NMHN-PTX7Y-QQCTH(该序列号来自昔阳县政府) * TrustViewer [http://trustviewer.com](http://trustviewer.com) * [https://github.com/rustdesk/rustdesk](https://github.com/rustdesk/rustdesk) * [https://www.todesk.com](https://www.todesk.com) +* [https://parsec.app](https://parsec.app) * 向日葵 [https://sunlogin.oray.com/download](https://sunlogin.oray.com/download) * 投屏 [https://github.com/pavlobu/deskreen](https://github.com/pavlobu/deskreen) * [https://github.com/topics/second-screen](https://github.com/topics/second-screen) diff --git "a/System/\346\214\202\350\275\275\347\275\221\347\233\230.md" "b/System/\346\214\202\350\275\275\347\275\221\347\233\230.md" index eb9995a87..7a55aaac2 100644 --- "a/System/\346\214\202\350\275\275\347\275\221\347\233\230.md" +++ "b/System/\346\214\202\350\275\275\347\275\221\347\233\230.md" @@ -82,6 +82,7 @@ * [https://github.com/MoeClub/vList](https://github.com/MoeClub/vList) * DRBD [https://github.com/LINBIT](https://github.com/LINBIT) * 备份同步 [https://github.com/restic](https://github.com/restic) +* [https://github.com/kopia/kopia](https://github.com/kopia/kopia) * [https://github.com/laurent22/rsync-time-backup](https://github.com/laurent22/rsync-time-backup) * [https://github.com/immich-app/immich](https://github.com/immich-app/immich) * [https://github.com/perkeep/perkeep](https://github.com/perkeep/perkeep) diff --git a/Web/README.md b/Web/README.md index 703f282c6..61c4295b6 100644 --- a/Web/README.md +++ b/Web/README.md @@ -311,6 +311,7 @@ * [https://github.com/emadda/worker-tabserve-reverse-proxy](https://github.com/emadda/worker-tabserve-reverse-proxy) * [https://github.com/netnr/workers](https://github.com/netnr/workers) * [https://github.com/aploium/zmirror](https://github.com/aploium/zmirror) +* 在线分享工具 [https://github.com/xiadd/pastebin-worker](https://github.com/xiadd/pastebin-worker) * 动态博客系统 [https://github.com/kasuganosoras/cloudflare-worker-blog](https://github.com/kasuganosoras/cloudflare-worker-blog) * 个人导航网站 [https://github.com/sleepwood/CF-Worker-Dir](https://github.com/sleepwood/CF-Worker-Dir) * 一个极简风格的短网址转换 [https://github.com/Closty/duanwangzhi](https://github.com/Closty/duanwangzhi)