GPT6 最近的时间轴更新
GPT6

GPT6

V2EX 第 352252 号会员,加入于 2018-09-26 14:42:28 +08:00
GPT6 最近回复了
https://github.com/bestK/email_worker_parser 我这有个利用 CF woker 支持 api 调用返回邮件结果的工具,利好注册机
30 天前
回复了 KINGWAY 创建的主题 程序员 请教一个 AI 生成 html 格式邮件问题
自己抓下来图片等其他关键信息,通过服务器生成邮件专用的 html 格式再发送就行了 https://emailframe.work/
又不是不能用
40 天前
回复了 dream4ever 创建的主题 程序员 PC 端网站使用微信扫码登录
用 unionid 比较好
57 天前
回复了 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
}
}
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2418 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 12ms · UTC 03:58 · PVG 11:58 · LAX 20:58 · JFK 23:58
Developed with CodeLauncher
♥ Do have faith in what you're doing.