Skip to content

Commit e1f5347

Browse files
author
bajins
committed
add
1 parent 2abdba3 commit e1f5347

10 files changed

+22
-1
lines changed

DBS/关系型数据库.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,7 @@ SELECT NEXT VALUE FOR seq_num AS num FROM DUAL WHERE NEXT VALUE FOR seq_num <= 3
589589
* [https://github.com/prest/prest](https://github.com/prest/prest)
590590
* [https://github.com/alibaba/PolarDB-for-PostgreSQL](https://github.com/alibaba/PolarDB-for-PostgreSQL)
591591
* [https://github.com/npgsql](https://github.com/npgsql)
592+
* [https://github.com/commandprompt/pgmanage](https://github.com/commandprompt/pgmanage)
592593
* 管理器 [https://github.com/sorintlab/stolon](https://github.com/sorintlab/stolon)
593594
* [https://github.com/achristmascarl/rainfrog](https://github.com/achristmascarl/rainfrog)
594595
* 连接池工具 [https://github.com/pgbouncer/pgbouncer](https://github.com/pgbouncer/pgbouncer)

IDE/Chromium.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* 匿名跟踪测试 [https://firstpartysimulator.org](https://firstpartysimulator.org)
2828
* [https://github.com/libredirect](https://github.com/libredirect)
2929
* AI [https://github.com/debugtheworldbot/chromegemini](https://github.com/debugtheworldbot/chromegemini)
30+
* 自动化浏览器操作 [https://github.com/Skyvern-AI/Skyvern](https://github.com/Skyvern-AI/Skyvern)
3031

3132

3233

IDE/Git使用.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
* [https://github.com/pcottle/learnGitBranching](https://github.com/pcottle/learnGitBranching)
4545
* Git大全 [https://gitee.com/all-about-git](https://gitee.com/all-about-git)
4646
* [Git 团队协作中常用术语 WIP PTAL CC LGTM 等解释](https://blog.csdn.net/kunyus/article/details/93472646)
47+
* 自己动手写Git [https://github.com/hanyujie2002/wyag-zh](https://github.com/hanyujie2002/wyag-zh)
4748

4849

4950
**GIT工具**

Other/Bookmarks.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ javascript:document.body.contentEditable='true';document.designMode='on'; void 0
175175
* [https://mjcn.club](https://mjcn.club)
176176
* [https://www.logocook.shop/editor](https://www.logocook.shop/editor)
177177
* 灵感设计 [https://refto.one](https://refto.one)
178+
* 3D架构图 [https://icraft.gantcloud.com](https://icraft.gantcloud.com)
178179

179180

180181
## 文档

PL/跨平台应用.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
* [https://github.com/forbesmyester/wv-linewise](https://github.com/forbesmyester/wv-linewise)
128128
* [https://github.com/Nitrux](https://github.com/Nitrux)
129129
* [https://mauikit.org](https://mauikit.org)
130-
130+
* [https://github.com/DioxusLabs/dioxus](https://github.com/DioxusLabs/dioxus)
131131

132132

133133

System/Android.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,8 @@
562562
* 翻译 [https://github.com/FunnySaltyFish/FunnyTranslation](https://github.com/FunnySaltyFish/FunnyTranslation)
563563
* [https://github.com/niedev/RTranslator](https://github.com/niedev/RTranslator)
564564
* 天气 [https://github.com/breezy-weather/breezy-weather](https://github.com/breezy-weather/breezy-weather)
565+
* 语音识别键盘 [https://github.com/soupslurpr/Transcribro](https://github.com/soupslurpr/Transcribro)
566+
* 应用商店 [https://github.com/accrescent/accrescent](https://github.com/accrescent/accrescent)
565567

566568

567569
### 证件照

System/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,7 @@
567567
* 麻将游戏 [https://github.com/liumengniu/majiang](https://github.com/liumengniu/majiang)
568568
* AI姿势 [https://github.com/AmyangXYZ/MiKaPo](https://github.com/AmyangXYZ/MiKaPo)
569569
* 图片加水印 [https://github.com/pdmaker/watermark-master](https://github.com/pdmaker/watermark-master)
570+
* 图片背景文字 [https://github.com/RexanWONG/text-behind-image](https://github.com/RexanWONG/text-behind-image)
570571
571572
572573

System/Windows.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,17 @@
4747
- [https://github.com/microsoft/latte](https://github.com/microsoft/latte)
4848

4949

50+
**绕过 Windows 11 24H2 的兼容性检查程序**
51+
52+
```batch
53+
:: 在运行 setup.exe 之前执行
54+
reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\CompatMarkers" /f 2>NUL
55+
reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Shared" /f 2>NUL
56+
reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\TargetVersionUpgradeExperienceIndicators" /f 2>NUL
57+
reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\HwReqChk" /f /v HwReqChkVars /t REG_MULTI_SZ /s , /d "SQ_SecureBootCapable=TRUE,SQ_SecureBootEnabled=TRUE,SQ_TpmVersion=2,SQ_RamMB=8192,"
58+
reg.exe add "HKLM\SYSTEM\Setup\MoSetup" /f /v AllowUpgradesWithUnsupportedTPMOrCPU /t REG_DWORD /d 1
59+
```
60+
5061
**Windows11右键菜单**
5162

5263
```batch

System/挂载网盘.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@
142142
* [https://github.com/willscott/go-nfs](https://github.com/willscott/go-nfs)
143143
* [https://github.com/minio/minio](https://github.com/minio/minio)
144144
* [https://github.com/journeymidnight/yig](https://github.com/journeymidnight/yig)
145+
* [https://github.com/seaweedfs/seaweedfs](https://github.com/seaweedfs/seaweedfs)
146+
* [https://git.deuxfleurs.fr/Deuxfleurs/garage](https://git.deuxfleurs.fr/Deuxfleurs/garage)
145147
* [https://github.com/sjqzhang/go-fastdfs](https://github.com/sjqzhang/go-fastdfs)
146148
* [https://github.com/happyfish100/fastdfs](https://github.com/happyfish100/fastdfs)
147149
* [https://github.com/openzfs](https://github.com/openzfs)

Web/NodeJS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@
102102
* [https://github.com/jaynath-d/node-jdbc-driver](https://github.com/jaynath-d/node-jdbc-driver)
103103
* SQL查询 [https://github.com/knex/knex](https://github.com/knex/knex)
104104
* [https://github.com/TryGhost/node-sqlite3](https://github.com/TryGhost/node-sqlite3)
105+
* [https://github.com/sql-js/sql.js](https://github.com/sql-js/sql.js)
105106
* SQLite REST API [https://github.com/thevahidal/soul](https://github.com/thevahidal/soul)
106107
* 解析器、压缩器、压缩器和美化 [https://github.com/mishoo/UglifyJS](https://github.com/mishoo/UglifyJS)
107108
* [https://github.com/solzimer/nsyslog-parser](https://github.com/solzimer/nsyslog-parser)

0 commit comments

Comments
 (0)