Skip to content

Commit ac2c2eb

Browse files
author
bajins
committed
add
1 parent bcd6189 commit ac2c2eb

28 files changed

+245
-118
lines changed

Go/Go笔记.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,13 +230,13 @@ func StringBuilder(p []string) string {
230230
> 如果在`panic`函数之前存在`defer`函数,则执行`defer`函数,这里的`defer`有点类似`try…catch…finally`中的`finally`
231231
>> 如果`defer`函数内不包含`recover`会直到`goroutine`整个退出,并报告错误
232232
>>
233-
>> 相反则会捕获这个`panic`类似于`try…catch…finally`中的`catch`
233+
>> 相反则会捕获这个`panic`类似于其他语言中`try…catch…finally``try`角色
234234
235235

236236
**defer**
237237

238-
> 可以将一个方法延迟到包裹该方法的方法返回时执行,`defer`语句可以充当其他语言中`try…catch…finally`的角色
239-
> 也可以用来处理关闭文件句柄等收尾操作
238+
> 可以将一个方法延迟到包裹该方法的方法返回时执行,`defer`类似于其他语言中`try…catch…finally``finally`角色
239+
> 它常用于释放资源(如文件句柄、锁等)或确保某些清理逻辑一定会被执行
240240
241241
1. 包裹`defer`的函数返回时
242242
2. 包裹`defer`的函数执行到末尾时
@@ -253,6 +253,7 @@ func StringBuilder(p []string) string {
253253
1. 用来控制一个`goroutine``panicking`行为,捕获`panic`,从而影响应用的行为
254254

255255
> `defer`函数中,通过`recever`来终止一个`goroutine``panicking`过程,从而恢复正常代码的执行,可以获取通过`panic`传递的`error`
256+
> `defer`类似于其他语言中`try…catch…finally``catch`角色
256257
257258

258259

Go/Go编译打包.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
- `CGO_ENABLED` CGO开关
102102
- `-o` 参数为指定输出程序文件名
103103
- `go clean -cache` 编译完成清理缓存
104+
- `go env -w GOFLAGS=-buildvcs=false` 不将版本控制信息(如提交哈希、提交时间)嵌入到二进制文件中
104105

105106

106107
**`-ldflags`选项**

IDE/Chromium.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,17 @@ chrome://flags/#enable-parallel-downloading
238238
* [https://github.com/browserless](https://github.com/browserless)
239239

240240

241+
242+
- 绕过五秒盾 [https://github.com/FlareSolverr/FlareSolverr](https://github.com/FlareSolverr/FlareSolverr)
243+
- [https://github.com/VeNoMouS/cloudscraper](https://github.com/VeNoMouS/cloudscraper)
244+
- [https://github.com/RomainMichau/cloudscraper_go](https://github.com/RomainMichau/cloudscraper_go)
245+
- [https://github.com/ultrafunkamsterdam/undetected-chromedriver](https://github.com/ultrafunkamsterdam/undetected-chromedriver)
246+
- [https://github.com/ultrafunkamsterdam/nodriver](https://github.com/ultrafunkamsterdam/nodriver)
247+
- [https://github.com/g1879/DrissionPage](https://github.com/g1879/DrissionPage)
248+
- [https://github.com/Davincible/chromedp-undetected](https://github.com/Davincible/chromedp-undetected)
249+
250+
251+
241252
**反爬虫**
242253

243254
* [https://github.com/intoli/intoli-article-materials](https://github.com/intoli/intoli-article-materials)

IDE/Git使用.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
* [https://github.com/ewanmellor/git-diff-image](https://github.com/ewanmellor/git-diff-image)
8080
* 根据日志生成Changelog [https://github.com/orhun/git-cliff](https://github.com/orhun/git-cliff)
8181
* [https://github.com/conventional-changelog](https://github.com/conventional-changelog)
82+
* 提交统计 [https://github.com/sinclairtarget/git-who](https://github.com/sinclairtarget/git-who)
8283

8384

8485
- [git-pull.bat](/files/git-pull.bat)

IDE/Git服务.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ volumes:
231231
- [https://github.com/maxiaof/github-hosts](https://github.com/maxiaof/github-hosts)
232232
- [https://github.com/Potterli20/hosts](https://github.com/Potterli20/hosts)
233233
- [https://codechina.csdn.net/mirrors](https://codechina.csdn.net/mirrors)
234+
- [https://fcp7.com/github-mirror-daily-updates.html](https://fcp7.com/github-mirror-daily-updates.html)
234235

235236

236237
**Raw 文件加速**

IDE/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@
146146
147147

148148
+ [CI services](https://github.com/semantic-release/semantic-release/blob/master/docs/usage/ci-configuration.md)
149+
+ [https://github.com/milanm/DevOps-Roadmap](https://github.com/milanm/DevOps-Roadmap)
149150
+ [https://github.com/opencpu](https://github.com/opencpu)
150151
+ [https://github.com/circleci](https://github.com/circleci)
151152
+ [https://github.com/codeship](https://github.com/codeship)

Java/Java构建管理.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
- [https://www.atlassian.com/zh/software/bamboo](https://www.atlassian.com/zh/software/bamboo)
9595
- [https://github.com/technomancy/leiningen](https://github.com/technomancy/leiningen)
9696
- [https://github.com/ansible/ansible](https://github.com/ansible/ansible)
97+
- [https://github.com/ansible-community](https://github.com/ansible-community)
9798
- 自动化部署 [https://github.com/dreamans/syncd](https://github.com/dreamans/syncd)
9899
- [https://github.com/jitpack/jitpack.io](https://github.com/jitpack/jitpack.io)
99100
- [https://github.com/jreleaser](https://github.com/jreleaser)

Java/Java笔记.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@
9999
- Multiline String 多行字符串
100100
- Template String 模板字符串
101101
- Text Blocks 文本块
102+
- Raw String Literals 原始字符串字面量
102103

103104
> Java 13 Text Blocks 第一次预览版,Java 14 Text Blocks 第二次预览版,Java 15 Text Blocks 正式版
104105

Java/Java第三方库.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,6 @@
159159
+ [https://github.com/RichardWarburton/lambda-behave](https://github.com/RichardWarburton/lambda-behave)
160160
+ [https://github.com/jasongoodwin/better-java-monads](https://github.com/jasongoodwin/better-java-monads)
161161
+ [https://github.com/functionaljava/functionaljava](https://github.com/functionaljava/functionaljava)
162-
+ 规则引擎 [https://github.com/j-easy](https://github.com/j-easy)
163-
+ [Java规则引擎 Easy Rules](https://www.cnblogs.com/cjsblog/archive/2020/06/11/13088017.html)
164162
+ 并发数据结构 [https://github.com/JCTools/JCTools](https://github.com/JCTools/JCTools)
165163
+ [https://github.com/real-logic](https://github.com/real-logic)
166164
+ [https://github.com/carrotsearch/hppc](https://github.com/carrotsearch/hppc)
@@ -170,9 +168,14 @@
170168
+ [https://github.com/togglz/togglz](https://github.com/togglz/togglz)
171169
+ 集合增强 [https://github.com/vigna/fastutil](https://github.com/vigna/fastutil)
172170
+ [https://github.com/lemire/javaewah](https://github.com/lemire/javaewah)
173-
+ 规则引擎 [https://github.com/j-easy/easy-rules](https://github.com/j-easy/easy-rules)
171+
+ 规则引擎 [https://github.com/j-easy](https://github.com/j-easy)
172+
+ [Java规则引擎 Easy Rules](https://www.cnblogs.com/cjsblog/archive/2020/06/11/13088017.html)
173+
+ [https://github.com/openl-tablets/openl-tablets](https://github.com/openl-tablets/openl-tablets)
174174
+ [https://github.com/killme2008/aviatorscript](https://github.com/killme2008/aviatorscript)
175175
+ [Aviator—Java表达式求值引擎的使用](https://blog.csdn.net/starcrm/article/details/108558135)
176+
+ [https://github.com/apache/incubator-kie-optaplanner](https://github.com/apache/incubator-kie-optaplanner)
177+
+ [OptaPlanner - 入门介绍](https://zhuanlan.zhihu.com/p/84149346)
178+
+ [【OptaPlanner教程1】OptaPlanner介绍](https://zhuanlan.zhihu.com/p/671696505)
176179
+ [https://github.com/kiegroup/drools](https://github.com/kiegroup/drools)
177180
+ [https://github.com/mvel/mvel](https://github.com/mvel/mvel)
178181
+ [https://github.com/alibaba/QLExpress](https://github.com/alibaba/QLExpress)
@@ -624,6 +627,7 @@
624627
+ [https://github.com/ailohq/osworkflow](https://github.com/ailohq/osworkflow)
625628
+ [https://gitee.com/opencc/JFlow](https://gitee.com/opencc/JFlow)
626629
+ [https://gitlab.com/erasmusmc-public-health/parallelstateless4j](https://gitlab.com/erasmusmc-public-health/parallelstateless4j)
630+
+ [https://github.com/copper-engine/copper-engine](https://github.com/copper-engine/copper-engine)
627631
+ 云原生框架 [https://github.com/quarkusio/quarkus](https://github.com/quarkusio/quarkus)
628632
+ [https://github.com/quarkiverse](https://github.com/quarkiverse)
629633
+ [https://github.com/piranhacloud](https://github.com/piranhacloud)

Java/Spring.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,7 @@ try {
406406
+ [https://github.com/zlt2000/microservices-platform](https://github.com/zlt2000/microservices-platform)
407407
+ [https://github.com/chillzhuang/blade-tool](https://github.com/chillzhuang/blade-tool)
408408
+ [https://gitee.com/smallc](https://gitee.com/smallc)
409+
+ [https://github.com/littlehorse-enterprises/littlehorse](https://github.com/littlehorse-enterprises/littlehorse)
409410

410411

411412
> 微服务就是单个应用程序拆分成许多个小型服务的一种开发方法
@@ -463,6 +464,7 @@ try {
463464
+ [https://github.com/siaorg/sia-gateway](https://github.com/siaorg/sia-gateway)
464465
+ [https://github.com/mitre/HTTP-Proxy-Servlet](https://github.com/mitre/HTTP-Proxy-Servlet)
465466
+ [https://github.com/mkopylec/charon-spring-boot-starter](https://github.com/mkopylec/charon-spring-boot-starter)
467+
+ [https://github.com/stargate/stargate](https://github.com/stargate/stargate)
466468
+ 日志收集 [https://github.com/apache/flume](https://github.com/apache/flume)
467469
+ [https://flume.liyifeng.org](https://flume.liyifeng.org)
468470
+ [https://github.com/fayechenlong/plumelog](https://github.com/fayechenlong/plumelog)

Other/Bookmarks.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
+ 书签管理器 [https://github.com/linkwarden/linkwarden](https://github.com/linkwarden/linkwarden)
99
+ [https://github.com/omnivore-app/omnivore](https://github.com/omnivore-app/omnivore)
10+
+ [https://github.com/hoarder-app/hoarder](https://github.com/hoarder-app/hoarder)
1011
+ Web归档 [https://github.com/webrecorder](https://github.com/webrecorder)
1112
+ [https://github.com/dginev/ar5iv](https://github.com/dginev/ar5iv)
1213
+ [https://github.com/dosyago/DownloadNet](https://github.com/dosyago/DownloadNet)

Other/README.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,8 @@
303303

304304
* [https://inboxes.com](https://inboxes.com)
305305
* [https://smailpro.com](https://smailpro.com)
306+
* [https://smailpro.com/temp-gmail](https://smailpro.com/temp-gmail)
307+
* [https://mail.tm](https://mail.tm)
306308
* [https://www.linshiyouxiang.net](https://www.linshiyouxiang.net)
307309
* [http://24mail.chacuo.net](http://24mail.chacuo.net)
308310
* [https://github.com/Xavier-Lam/24mail](https://github.com/Xavier-Lam/24mail)
@@ -316,33 +318,22 @@
316318
* [https://www.minuteinbox.com](https://www.minuteinbox.com)
317319
* [http://mailcatch.com/en/disposable-email](http://mailcatch.com/en/disposable-email)
318320
* [https://www.mintemail.com](https://www.mintemail.com)
319-
* [http://www.maildu.de](http://www.maildu.de)
320-
* [https://xkx.me](https://xkx.me)
321321
* [https://mail.td](https://mail.td)
322-
* [https://temp-mail.org](https://temp-mail.org)
323-
* [https://www.guerrillamail.com/zh/inbox](https://www.guerrillamail.com/zh/inbox)
324322
* [http://www.mailinator.com](http://www.mailinator.com)
325-
* [http://www.tempinbox.com](http://www.tempinbox.com)
326323
* [https://www.crazymailing.com/zh](https://www.crazymailing.com/zh)
327-
* [http://www.mytrashmail.com](http://www.mytrashmail.com)
328324
* [https://www.tempmailbox.net](https://www.tempmailbox.net)
329-
* [https://tempmailin.com](https://tempmailin.com)
330325
* [https://www.fakemail.net](https://www.fakemail.net)
331-
* [https://btemp.com](https://btemp.com)
332326
* [https://www.disposablemail.com](https://www.disposablemail.com)
333-
* [https://gmailnator.com](https://gmailnator.com)
334-
* [https://www.tempemails.net](https://www.tempemails.net)
335-
* [https://mail.tm](https://mail.tm)
336327
* [https://tempmail.net](https://tempmail.net)
337328
* [https://mailpoof.com](https://mailpoof.com)
338329
* [https://www.emailondeck.com](https://www.emailondeck.com)
339330
* [https://adguard.com/zh_cn/adguard-temp-mail/overview.html](https://adguard.com/zh_cn/adguard-temp-mail/overview.html)
340-
* [https://smailpro.com/temp-gmail](https://smailpro.com/temp-gmail)
341331
* [https://22.do](https://22.do)
342332
* [https://www.emailnator.com](https://www.emailnator.com)
343333
* [https://m.kuku.lu](https://m.kuku.lu)
344334
* [https://tempmail100.com](https://tempmail100.com)
345335
* [https://minmail.app](https://minmail.app)
336+
* [https://cs.email/zh](https://cs.email/zh)
346337

347338

348339

Other/免费服务.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585
* [http://www.googlefonts.net](http://www.googlefonts.net)
8686
* [https://github.com/notofonts/noto-cjk](https://github.com/notofonts/noto-cjk)
8787
* [https://github.com/simonsmh/notocjk](https://github.com/simonsmh/notocjk)
88+
* [https://github.com/subframe7536/maple-font](https://github.com/subframe7536/maple-font)
8889
* [https://github.com/fontello](https://github.com/fontello)
8990
* [https://github.com/TrionesType/zhuque](https://github.com/TrionesType/zhuque)
9091
* [https://github.com/Chenyu-otf/chenyuluoyan_thin](https://github.com/Chenyu-otf/chenyuluoyan_thin)
@@ -200,6 +201,13 @@
200201
* [https://devin.com/lookbusy](https://devin.com/lookbusy)
201202
* [https://github.com/spiritLHLS/Oracle-server-keep-alive-script](https://github.com/spiritLHLS/Oracle-server-keep-alive-script)
202203
* [甲骨文云(Oracle Cloud)要清理闲置实例资源,附保活教程](https://51.ruyo.net/18289.html)
204+
* 甲骨文实例netboot重装系统 [https://linuxoops.com/2022/04/usenetbootcustomvps](https://linuxoops.com/2022/04/usenetbootcustomvps)
205+
* [https://github.com/leesheen/leesheen.github.io](https://github.com/leesheen/leesheen.github.io)
206+
* [https://iweec.com/731.html](https://iweec.com/731.html)
207+
* [https://mtlynch.io/notes/nix-oracle-cloud](https://mtlynch.io/notes/nix-oracle-cloud)
208+
* [https://blog.makese.cn/168.html](https://blog.makese.cn/168.html)
209+
* [https://wkings.blog/archives/1391](https://wkings.blog/archives/1391)
210+
* [https://netboot.xyz/docs/kb/providers/oci](https://netboot.xyz/docs/kb/providers/oci)
203211
```bash
204212
# 移除或禁用后台监控
205213
yum remove oracle-cloud-agent
@@ -461,10 +469,6 @@
461469
- Cloudflare CNAME接入 [https://github.com/ZE3kr/Cloudflare-CNAME-Setup](https://github.com/ZE3kr/Cloudflare-CNAME-Setup)
462470
- [https://subdomainfinder.c99.nl](https://subdomainfinder.c99.nl) 搜索框输入`workers.dev`点击`Start Scan`,再按<kbd>Ctrl</kbd> + <kbd>f</kbd> 输入`github`
463471
- [用Cloudflare CDN 如何自定义节点(CF自选IP)/撸CloudFlare Pro](https://www.moeelf.com/archives/10.html)
464-
- 绕过五秒盾 [https://github.com/FlareSolverr/FlareSolverr](https://github.com/FlareSolverr/FlareSolverr)
465-
- [https://github.com/VeNoMouS/cloudscraper](https://github.com/VeNoMouS/cloudscraper)
466-
- [https://github.com/RomainMichau/cloudscraper_go](https://github.com/RomainMichau/cloudscraper_go)
467-
- [https://github.com/ultrafunkamsterdam/undetected-chromedriver](https://github.com/ultrafunkamsterdam/undetected-chromedriver)
468472

469473

470474
* Docker镜像代理 [https://github.com/cmliu/CF-Workers-docker.io](https://github.com/cmliu/CF-Workers-docker.io)
@@ -480,6 +484,7 @@
480484
* [基于 Telegraf 框架的 Telegram Bot](https://moe.best/tutorial/cfworker-telegraf-tgbot.html)
481485
* [使用CloudFlare Workers搭建网站状态监控](https://www.raycoder.me/p/cloudflare-workers-website-monitoring)
482486
* 查询DNS [https://github.com/ccbikai/DNS.Surf](https://github.com/ccbikai/DNS.Surf)
487+
* 短链 [https://github.com/xxnuo/serverless-qrcode-hub](https://github.com/xxnuo/serverless-qrcode-hub)
483488

484489

485490
**代理**

PL/Rust.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
+ [https://github.com/anowell/are-we-learning-yet](https://github.com/anowell/are-we-learning-yet)
1818
+ [https://github.com/areweguiyet/areweguiyet](https://github.com/areweguiyet/areweguiyet)
1919
+ [https://github.com/rust-gamedev/arewegameyet](https://github.com/rust-gamedev/arewegameyet)
20+
+ [https://github.com/rust9x/rust](https://github.com/rust9x/rust)
2021
+ [https://github.com/rust-lang-cn](https://github.com/rust-lang-cn)
2122
+ [https://github.com/rust-lang-nursery](https://github.com/rust-lang-nursery)
2223
+ [https://rust-lang-nursery.github.io/rust-cookbook](https://rust-lang-nursery.github.io/rust-cookbook)
@@ -220,6 +221,7 @@ check-revoke = false
220221
- [https://github.com/EmbarkStudios/rust-gpu](https://github.com/EmbarkStudios/rust-gpu)
221222
- [https://github.com/vizia/vizia](https://github.com/vizia/vizia)
222223
- 文件系统 [https://github.com/zboxfs/zbox](https://github.com/zboxfs/zbox)
224+
- [https://github.com/camino-rs/camino](https://github.com/camino-rs/camino)
223225
- 游戏引擎 [https://github.com/PistonDevelopers/piston](https://github.com/PistonDevelopers/piston)
224226
- [https://github.com/amethyst](https://github.com/amethyst)
225227
- [https://github.com/project-slippi/Ishiiruka](https://github.com/project-slippi/Ishiiruka)
@@ -286,6 +288,7 @@ check-revoke = false
286288
- 异步 [https://github.com/tokio-rs](https://github.com/tokio-rs)
287289
- [https://github.com/hmwill/tokio-linux-aio](https://github.com/hmwill/tokio-linux-aio)
288290
- [https://github.com/async-rs](https://github.com/async-rs)
291+
- [https://github.com/smol-rs/smol](https://github.com/smol-rs/smol)
289292
- 并发Map [https://github.com/xacrimon/dashmap](https://github.com/xacrimon/dashmap)
290293
- [https://github.com/rust-phf/rust-phf](https://github.com/rust-phf/rust-phf)
291294
- 正则搜索文件 [https://github.com/BurntSushi/ripgrep](https://github.com/BurntSushi/ripgrep)

PL/人工智能.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,8 @@
403403
- 数据科学Web [https://github.com/plotly/dash](https://github.com/plotly/dash)
404404
- 扫描PDF [https://github.com/baicunko/scanyourpdf](https://github.com/baicunko/scanyourpdf)
405405
- [https://github.com/eosphoros-ai/DB-GPT](https://github.com/eosphoros-ai/DB-GPT)
406+
- PDF翻译 [https://github.com/Byaidu/PDFMathTranslate](https://github.com/Byaidu/PDFMathTranslate)
407+
- PDF转Markdown [https://github.com/jorben/markpdfdown](https://github.com/jorben/markpdfdown)
406408
- 签名 [https://github.com/SigmaHQ/sigma](https://github.com/SigmaHQ/sigma)
407409
- [https://github.com/Alic-yuan/nlp-beginner-finish](https://github.com/Alic-yuan/nlp-beginner-finish)
408410
- [https://github.com/heartexlabs/label-studio](https://github.com/heartexlabs/label-studio)
@@ -423,7 +425,6 @@
423425
- [https://github.com/frost-beta/sisi](https://github.com/frost-beta/sisi)
424426
- 爬虫 [https://github.com/VinciGit00/Scrapegraph-ai](https://github.com/VinciGit00/Scrapegraph-ai)
425427
- 简繁转换 [https://github.com/hddhyq/opencclint](https://github.com/hddhyq/opencclint)
426-
- PDF翻译 [https://github.com/Byaidu/PDFMathTranslate](https://github.com/Byaidu/PDFMathTranslate)
427428
- 识别键盘敲击键位 [https://github.com/ZhuoZhuoCrayon/AcousticKeyBoard-Web](https://github.com/ZhuoZhuoCrayon/AcousticKeyBoard-Web)
428429
- EXCEL [https://github.com/PragmaticMachineLearning/probly](https://github.com/PragmaticMachineLearning/probly)
429430
- 生成知识图谱 [https://github.com/xerrors/Yuxi-Know](https://github.com/xerrors/Yuxi-Know)
@@ -567,10 +568,13 @@
567568
- [https://github.com/bclswl0827/ChatGemini](https://github.com/bclswl0827/ChatGemini)
568569
- [https://github.com/antergone/palm-proxy](https://github.com/antergone/palm-proxy)
569570
- [https://github.com/HanaokaYuzu/Gemini-API](https://github.com/HanaokaYuzu/Gemini-API)
571+
- [https://github.com/PublicAffairs/openai-gemini](https://github.com/PublicAffairs/openai-gemini)
572+
- [https://github.com/snailyp/gemini-balance](https://github.com/snailyp/gemini-balance)
573+
- [https://github.com/u14app](https://github.com/u14app)
570574
- [https://bard.google.com/chat](https://bard.google.com/chat)
571575
```bash
572576
# https://ai.google.dev/models?hl=zh-cn
573-
# https://cloud.google.com/vertex-ai/docs?hl=zh-cn
577+
# https://aistudio.google.com/apikey
574578
curl \
575579
-H 'Content-Type: application/json' \
576580
-d '{ "prompt": { "text": "Write a story about a magic backpack"} }' \

PL/容器虚拟机.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@
113113
* [https://www.terraform.io](https://www.terraform.io)
114114
* [https://github.com/rancher/rancher](https://github.com/rancher/rancher)
115115
* [https://github.com/mesosphere/marathon](https://github.com/mesosphere/marathon)
116-
* Ansible
117116
* Packer
118117
* 谷歌、IBM、微软、Pivotal、SAP、SUSE、Swisscom、GE
119118
* [https://github.com/wekan/wekan](https://github.com/wekan/wekan)

Python/Python第三方库.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* 协程 [https://github.com/python-greenlet/greenlet](https://github.com/python-greenlet/greenlet)
1919
* [https://github.com/gevent/gevent](https://github.com/gevent/gevent)
2020
* [https://greenlet.readthedocs.io](https://greenlet.readthedocs.io)
21+
* [https://github.com/dask/dask](https://github.com/dask/dask)
2122
* HTTP [https://github.com/psf/requests](https://github.com/psf/requests)
2223
* [https://github.com/requests](https://github.com/requests)
2324
* [https://github.com/not-kennethreitz](https://github.com/not-kennethreitz)

0 commit comments

Comments
 (0)