V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  GPT6  ›  全部回复第 1 页 / 共 1 页
回复总数  6
https://github.com/bestK/email_worker_parser 我这有个利用 CF woker 支持 api 调用返回邮件结果的工具,利好注册机 https://i.imgur.com/zRwC7aD.png
39 天前
回复了 KINGWAY 创建的主题 程序员 请教一个 AI 生成 html 格式邮件问题
自己抓下来图片等其他关键信息,通过服务器生成邮件专用的 html 格式再发送就行了 https://emailframe.work/
49 天前
回复了 dream4ever 创建的主题 程序员 PC 端网站使用微信扫码登录
用 unionid 比较好
66 天前
回复了 huyangq 创建的主题 程序员 大家 code review 是如何做的?
powershell


# 打开当前仓库
Function gopen {
# 获取所有远程仓库的名称和地址
$remoteRepositories = git remote -v | ForEach-Object {
$remote = $_ -split '\s+'
[PSCustomObject]@{
Name = $remote[0]
Url = $remote[1]
}
}

# 去重远程仓库地址
$uniqueRemoteRepositories = $remoteRepositories | Select-Object -Property Url -Unique

# 输出所有远程仓库的名称和地址
$uniqueRemoteRepositories | ForEach-Object {
Write-Host "Remote repository URL: $($_.Url)"
Start-Process $_.Url
}
}https://i.imgur.com/xgNoo8x.png
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   877 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 16ms · UTC 20:33 · PVG 04:33 · LAX 13:33 · JFK 16:33
Developed with CodeLauncher
♥ Do have faith in what you're doing.