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 9cdf42587..a976cada0 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" @@ -468,6 +468,24 @@ select trunc(sysdate) + 0.99999 from dual; ``` +**随机取数** + +```sql +SELECT * +FROM test a +--WHERE rownum = FLOOR(DBMS_RANDOM.VALUE(1, 10)) +WHERE MOD(rownum, floor(DBMS_RANDOM.VALUE(1, 10))) = 0 +FETCH FIRST ROW ONLY + +-- 重建排序 +SELECT * FROM ( + SELECT a.*, rownum as rn + FROM test a +) +WHERE MOD(rn, floor(DBMS_RANDOM.VALUE(1, 1))) = 0 +ORDER BY dbms_random.value +FETCH FIRST ROW ONLY; +``` diff --git a/IDE/README.md b/IDE/README.md index cef17a38d..4cef64042 100644 --- a/IDE/README.md +++ b/IDE/README.md @@ -269,6 +269,7 @@ * [https://github.com/search?q=navicat](https://github.com/search?q=navicat) * [https://github.com/HyperSine](https://github.com/HyperSine) * [https://github.com/Abeautifulsnow/navicat-premium-crack](https://github.com/Abeautifulsnow/navicat-premium-crack) +* [https://github.com/team-ide/teamide](https://github.com/team-ide/teamide) * [https://fishcodelib.com/Database.htm](https://fishcodelib.com/Database.htm) * [https://codeberg.org/sql-workbench/workbench](https://codeberg.org/sql-workbench/workbench) * [https://www.sql-workbench.eu](https://www.sql-workbench.eu) diff --git "a/IDE/\350\275\257\344\273\266\345\256\211\345\205\250.md" "b/IDE/\350\275\257\344\273\266\345\256\211\345\205\250.md" index ac586096f..a6b421253 100644 --- "a/IDE/\350\275\257\344\273\266\345\256\211\345\205\250.md" +++ "b/IDE/\350\275\257\344\273\266\345\256\211\345\205\250.md" @@ -12,6 +12,7 @@ * [https://github.com/carlospolop/hacktricks](https://github.com/carlospolop/hacktricks) * [https://github.com/SafeBreach-Labs](https://github.com/SafeBreach-Labs) * [https://github.com/Threekiii/Awesome-Redteam](https://github.com/Threekiii/Awesome-Redteam) +* [https://github.com/knownsec](https://github.com/knownsec) * 黑客工具 [https://github.com/Z4nzu/hackingtool](https://github.com/Z4nzu/hackingtool) * [https://github.com/OWASP](https://github.com/OWASP) * [预防CSRF和XSRF攻击](https://blog.codinghorror.com/preventing-csrf-and-xsrf-attacks) @@ -29,6 +30,7 @@ * [https://github.com/projectdiscovery/nuclei-templates](https://github.com/projectdiscovery/nuclei-templates) * [https://github.com/ysrc](https://github.com/ysrc) * 子域扫描 [https://github.com/ARPSyndicate/puncia](https://github.com/ARPSyndicate/puncia) +* [https://github.com/shadow1ng/fscan](https://github.com/shadow1ng/fscan) * WAF [https://github.com/SpiderLabs/ModSecurity](https://github.com/SpiderLabs/ModSecurity) * [https://github.com/coreruleset/coreruleset](https://github.com/coreruleset/coreruleset) * [https://github.com/titansec/OpenWAF](https://github.com/titansec/OpenWAF) @@ -347,10 +349,6 @@ * [https://github.com/erevus-cn/pocscan](https://github.com/erevus-cn/pocscan) -**Pocsuite攻击框架** - -* [https://github.com/knownsec/Pocsuite](https://github.com/knownsec/Pocsuite) - **Beebeeto攻击框架** * [https://github.com/n0tr00t/Beebeeto-framework](https://github.com/n0tr00t/Beebeeto-framework) @@ -540,10 +538,6 @@ * [https://github.com/kbandla/APTnotes](https://github.com/kbandla/APTnotes) -**Kcon资料** - -* [https://github.com/knownsec/KCon](https://github.com/knownsec/KCon) - **《DO NOT FUCK WITH A HACKER》** * [https://github.com/citypw/DNFWAH](https://github.com/citypw/DNFWAH) diff --git a/Java/README.md b/Java/README.md index e5e9b4666..a09edb174 100644 --- a/Java/README.md +++ b/Java/README.md @@ -265,3 +265,4 @@ * [https://github.com/shiyindaxiaojie/eden-demo-cola](https://github.com/shiyindaxiaojie/eden-demo-cola) * [https://github.com/argouml-tigris-org](https://github.com/argouml-tigris-org) * 数据中台 [https://github.com/birdLark/LarkMidTable](https://github.com/birdLark/LarkMidTable) +* 消息推送 [https://github.com/ZhongFuCheng3y/austin](https://github.com/ZhongFuCheng3y/austin) diff --git a/Java/Spring.md b/Java/Spring.md index 2dd3b6665..32eb43f63 100644 --- a/Java/Spring.md +++ b/Java/Spring.md @@ -23,6 +23,7 @@ - [https://github.com/wuyouzhuguli/SpringAll](https://github.com/wuyouzhuguli/SpringAll) - [http://www.spring4all.com](http://www.spring4all.com) - [https://github.com/mingyang66/spring-parent](https://github.com/mingyang66/spring-parent) +- [https://github.com/xuchengsheng/spring-reading](https://github.com/xuchengsheng/spring-reading) - Spring源码阅读 [https://github.com/seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis) - Spring 实战第五版中文翻译 [https://github.com/PotoYang/spring-in-action-v5-translate](https://github.com/PotoYang/spring-in-action-v5-translate) - [https://github.com/dunwu/spring-tutorial](https://github.com/dunwu/spring-tutorial) diff --git "a/Other/\344\271\246\347\261\215\345\222\214\345\215\232\345\256\242.md" "b/Other/\344\271\246\347\261\215\345\222\214\345\215\232\345\256\242.md" index 40d76ff00..3917cfa35 100644 --- "a/Other/\344\271\246\347\261\215\345\222\214\345\215\232\345\256\242.md" +++ "b/Other/\344\271\246\347\261\215\345\222\214\345\215\232\345\256\242.md" @@ -95,6 +95,7 @@ * [https://github.com/practical-tutorials/project-based-learning](https://github.com/practical-tutorials/project-based-learning) * [https://github.com/binhnguyennus/awesome-scalability](https://github.com/binhnguyennus/awesome-scalability) * [https://github.com/leandromoreira](https://github.com/leandromoreira) +* [https://github.com/DataEngineer-io/data-engineer-handbook](https://github.com/DataEngineer-io/data-engineer-handbook) * 学习项目 [https://github.com/Wechat-ggGitHub/Awesome-GitHub-Repo](https://github.com/Wechat-ggGitHub/Awesome-GitHub-Repo) * [https://github.com/1c7/chinese-independent-developer](https://github.com/1c7/chinese-independent-developer) * [https://github.com/php-youtubers/directory](https://github.com/php-youtubers/directory) diff --git a/PL/CPlusPlus.md b/PL/CPlusPlus.md index 41196b5de..d6e35062f 100644 --- a/PL/CPlusPlus.md +++ b/PL/CPlusPlus.md @@ -117,6 +117,7 @@ * [https://github.com/jpbarrette/curlpp](https://github.com/jpbarrette/curlpp) * [https://github.com/elnormous/HTTPRequest](https://github.com/elnormous/HTTPRequest) * [https://gitee.com/ldcsaa/HP-Socket](https://gitee.com/ldcsaa/HP-Socket) +* [https://github.com/cesanta/mongoose](https://github.com/cesanta/mongoose) * URL解析 [https://github.com/ada-url/ada](https://github.com/ada-url/ada) * 分布式网络框架 [https://github.com/Bwar/Nebula](https://github.com/Bwar/Nebula) * 分析调试测试器 [https://github.com/dfeneyrou/palanteer](https://github.com/dfeneyrou/palanteer) diff --git a/PL/README.md b/PL/README.md index 80eabc640..20bfe21b8 100644 --- a/PL/README.md +++ b/PL/README.md @@ -157,6 +157,7 @@ * [Archive | waylau.com](https://waylau.com/archive) * [Books | waylau.com](https://waylau.com/books) * [https://legacy.gitbook.com/@waylau](https://legacy.gitbook.com/@waylau) +* [https://github.com/lionsoul2014](https://github.com/lionsoul2014) - [https://github.com/hoochanlon](https://github.com/hoochanlon) diff --git a/PL/Rust.md b/PL/Rust.md index 0310fe0bc..2c6344caf 100644 --- a/PL/Rust.md +++ b/PL/Rust.md @@ -28,6 +28,7 @@ + [https://github.com/jondot/rust-how-do-i-start](https://github.com/jondot/rust-how-do-i-start) + [https://github.com/fung-hwang/CS110L-2020spr](https://github.com/fung-hwang/CS110L-2020spr) + crates字节跳动镜像代理 [https://rsproxy.cn](https://rsproxy.cn) ++ [https://github.com/roc-lang/roc](https://github.com/roc-lang/roc) - [Rust 如何实现单例模式?](https://www.zhihu.com/question/391694703) diff --git "a/Python/Python\347\210\254\350\231\253.md" "b/Python/Python\347\210\254\350\231\253.md" index 0f2774b63..c61881d21 100644 --- "a/Python/Python\347\210\254\350\231\253.md" +++ "b/Python/Python\347\210\254\350\231\253.md" @@ -67,6 +67,7 @@ * ["调戏" 微信PC端浏览器内置浏览器](https://juejin.cn/post/6844904082314887182) * [https://github.com/small-step/mikasa-wechat](https://github.com/small-step/mikasa-wechat) * [https://github.com/cixingguangming55555/wechat-bot](https://github.com/cixingguangming55555/wechat-bot) +* [https://github.com/smallfawn/QLScriptPublic](https://github.com/smallfawn/QLScriptPublic) * 预苗秒杀 [https://github.com/lyrric/seckill](https://github.com/lyrric/seckill) 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 9d0ef9ef1..92abb7d83 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" @@ -9,6 +9,7 @@ + [https://github.com/BradyFU/Awesome-Multimodal-Large-Language-Models](https://github.com/BradyFU/Awesome-Multimodal-Large-Language-Models) + [https://github.com/dair-ai/Prompt-Engineering-Guide](https://github.com/dair-ai/Prompt-Engineering-Guide) + [https://github.com/Visualize-ML/Book3_Elements-of-Mathematics](https://github.com/Visualize-ML/Book3_Elements-of-Mathematics) ++ [https://github.com/zjhellofss/KuiperInfer](https://github.com/zjhellofss/KuiperInfer) + 动手学深度学习 [https://github.com/d2l-ai](https://github.com/d2l-ai) + [https://github.com/lonePatient/awesome-pretrained-chinese-nlp-models](https://github.com/lonePatient/awesome-pretrained-chinese-nlp-models) + [https://github.com/hpcaitech/ColossalAI](https://github.com/hpcaitech/ColossalAI) @@ -316,6 +317,7 @@ * [https://github.com/lllyasviel/Fooocus](https://github.com/lllyasviel/Fooocus) * [https://github.com/rese1f/StableVideo](https://github.com/rese1f/StableVideo) * [https://github.com/CloudOrc/SolidUI](https://github.com/CloudOrc/SolidUI) +* [https://github.com/Acly/krita-ai-diffusion](https://github.com/Acly/krita-ai-diffusion) diff --git a/System/Android.md b/System/Android.md index 5df99af51..b580a9785 100644 --- a/System/Android.md +++ b/System/Android.md @@ -195,6 +195,7 @@ + [Java反编译工具](/Java/JDK工具.md#反编译工具) +* [https://github.com/rev1si0n/lamda](https://github.com/rev1si0n/lamda) * [https://github.com/iBotPeaches/Apktool](https://github.com/iBotPeaches/Apktool) * [https://github.com/TheCjw/scoop-retools](https://github.com/TheCjw/scoop-retools) * [https://github.com/venshine/decompile-apk](https://github.com/venshine/decompile-apk) diff --git a/System/README.md b/System/README.md index 5c1bb020c..594dd8115 100644 --- a/System/README.md +++ b/System/README.md @@ -106,6 +106,7 @@ * [https://github.com/openwrt/openwrt](https://github.com/openwrt/openwrt) * [https://github.com/coolsnowwolf/lede](https://github.com/coolsnowwolf/lede) * [https://github.com/haiibo/OpenWrt](https://github.com/haiibo/OpenWrt) + * [https://github.com/gdy666/lucky](https://github.com/gdy666/lucky) * [https://github.com/open-power](https://github.com/open-power) * [https://github.com/coolsnowwolf/lede](https://github.com/coolsnowwolf/lede) * [https://github.com/Entware](https://github.com/Entware) diff --git "a/System/Windows\350\275\257\344\273\266.md" "b/System/Windows\350\275\257\344\273\266.md" index 9c58dc91a..33c771e6e 100644 --- "a/System/Windows\350\275\257\344\273\266.md" +++ "b/System/Windows\350\275\257\344\273\266.md" @@ -409,6 +409,8 @@ + [https://github.com/Free-TV](https://github.com/Free-TV) + [https://github.com/Cyril0563/lanjing_live](https://github.com/Cyril0563/lanjing_live) + [https://github.com/imDazui/Tvlist-awesome-m3u-m3u8](https://github.com/imDazui/Tvlist-awesome-m3u-m3u8) ++ [https://github.com/gaotianliuyun/gao](https://github.com/gaotianliuyun/gao) ++ [https://github.com/xianyuyimu/TVBOX-](https://github.com/xianyuyimu/TVBOX-) * [https://github.com/llazyl/TVBox](https://github.com/llazyl/TVBox) @@ -705,6 +707,7 @@ * [https://github.com/YerongAI/Office-Tool](https://github.com/YerongAI/Office-Tool) * [https://otp.landian.vip](https://otp.landian.vip) * [https://www.coolhub.top](https://www.coolhub.top) +* [https://github.com/OdysseusYuan/LKY_OfficeTools](https://github.com/OdysseusYuan/LKY_OfficeTools) + Office 卸载支持工具 [https://outlookdiagnostics.azureedge.net/sarasetup/SetupProd_OffScrub.exe](https://outlookdiagnostics.azureedge.net/sarasetup/SetupProd_OffScrub.exe) diff --git "a/System/\345\206\205\347\275\221\347\251\277\351\200\217.md" "b/System/\345\206\205\347\275\221\347\251\277\351\200\217.md" index ea1028ee7..a03d8331e 100644 --- "a/System/\345\206\205\347\275\221\347\251\277\351\200\217.md" +++ "b/System/\345\206\205\347\275\221\347\251\277\351\200\217.md" @@ -342,6 +342,7 @@ log_level = info - [https://github.com/kubero-dev/ladder](https://github.com/kubero-dev/ladder) - [https://www.opera.com/zh-cn/features/free-vpn](https://www.opera.com/zh-cn/features/free-vpn) +- [https://github.com/Hackl0us/SS-Rule-Snippet](https://github.com/Hackl0us/SS-Rule-Snippet) **OpenVPN/IPsec/SSLVPN/L2TP/PPTP/IKEv2/Tinc/MeshBird/P2P VPN** @@ -426,6 +427,7 @@ log_level = info + [https://github.com/zizifn/edgetunnel](https://github.com/zizifn/edgetunnel) + android [https://github.com/2dust/v2rayNG](https://github.com/2dust/v2rayNG) + [https://github.com/XTLS/AnXray](https://github.com/XTLS/AnXray) ++ [https://github.com/getsurfboard/surfboard](https://github.com/getsurfboard/surfboard) + Windows [https://github.com/2dust/v2rayN](https://github.com/2dust/v2rayN) + [https://github.com/vrnobody/V2RayGCon](https://github.com/vrnobody/V2RayGCon) + [https://github.com/bclswl0827/v2ray-heroku](https://github.com/bclswl0827/v2ray-heroku) 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 cb8a97d2f..0873d4714 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" @@ -140,14 +140,14 @@ * [https://github.com/leo-project/leofs](https://github.com/leo-project/leofs) * [https://github.com/sheepdog/sheepdog](https://github.com/sheepdog/sheepdog) * [https://www.lustre.org](https://www.lustre.org) -* [https://github.com/openstack/swift](https://github.com/openstack/swift) -* [https://github.com/openstack/cinder](https://github.com/openstack/cinder) +* [https://github.com/openstack](https://github.com/openstack) * [https://github.com/opencurve/curve](https://github.com/opencurve/curve) * [https://github.com/chrislusf/seaweedfs](https://github.com/chrislusf/seaweedfs) * 分布式 [https://github.com/mtth/hdfs](https://github.com/mtth/hdfs) * [https://github.com/datenlord/datenlord](https://github.com/datenlord/datenlord) * [https://github.com/dragonflyoss](https://github.com/dragonflyoss) * [https://github.com/Alluxio/alluxio](https://github.com/Alluxio/alluxio) +* [https://github.com/filecoin-project](https://github.com/filecoin-project) * 分布式POSIX文件系统 [https://github.com/juicedata/juicefs](https://github.com/juicedata/juicefs) 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 aa87738b4..0e607c1bc 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" @@ -376,6 +376,7 @@ + [https://github.com/topics/diagram](https://github.com/topics/diagram) + [https://github.com/topics/flowchart](https://github.com/topics/flowchart) + * 图表库 [https://github.com/NorthwoodsSoftware/GoJS](https://github.com/NorthwoodsSoftware/GoJS) * [https://github.com/jsplumb](https://github.com/jsplumb) * [https://github.com/antvis](https://github.com/antvis) @@ -383,8 +384,8 @@ * [https://github.com/fex-team](https://github.com/fex-team) * [https://github.com/highcharts](https://github.com/highcharts) * [https://github.com/apache/incubator-echarts](https://github.com/apache/incubator-echarts) + * [https://github.com/apache/echarts-handbook](https://github.com/apache/echarts-handbook) * [https://github.com/timqian/chart.xkcd](https://github.com/timqian/chart.xkcd) - * [https://github.com/imgcook/imove](https://github.com/imgcook/imove) * [https://github.com/bpmn-io](https://github.com/bpmn-io) * [https://github.com/dagrejs](https://github.com/dagrejs)