Skip to content

Commit

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



Expand Down
1 change: 1 addition & 0 deletions IDE/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
10 changes: 2 additions & 8 deletions IDE/软件安全.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions Java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
1 change: 1 addition & 0 deletions Java/Spring.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions Other/书籍和博客.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions PL/CPlusPlus.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions PL/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions PL/Rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions Python/Python爬虫.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 2 additions & 0 deletions Python/人工智能.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)



Expand Down
1 change: 1 addition & 0 deletions System/Android.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions System/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 3 additions & 0 deletions System/Windows软件.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 2 additions & 0 deletions System/内网穿透.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions System/挂载网盘.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
3 changes: 2 additions & 1 deletion Web/JavaScript第三方库.md
Original file line number Diff line number Diff line change
Expand Up @@ -376,15 +376,16 @@
+ [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)
* [https://github.com/noflo](https://github.com/noflo)
* [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)
Expand Down

0 comments on commit cd1f94c

Please sign in to comment.