cloudyi666's recent timeline updates
cloudyi666

cloudyi666

V2EX member #301825, joined on 2018-03-20 18:34:04 +08:00
cloudyi666's recent replies
Jan 13
Replied to a topic by sakurajiayou 推广 [CLAUDE] 送领千万 TOKEN
96rXn9 感谢
wireguard 国内回家一点事都没有,用了快三年了。
Aug 4, 2024
Replied to a topic by zhandouji2023 问与答 光伏发电租屋顶合同。感觉是坑
这个要看你们村子里装的人多不多,如果装的多了,整体发电量大于整个台区的需求,就不会让你并网发电有收益了。
吉利的售后配件和新车的配件很可能不是同一个供应商,不过都是吉利备件中心认可的,也算原厂吧。
Aug 10, 2023
Replied to a topic by Goalonez Apple AirPods Pro 又坏了
@tyhunter 就是对着有孔的地方里面一顿喷喷喷。。。
Aug 4, 2023
Replied to a topic by Goalonez Apple AirPods Pro 又坏了
@bluefountain
和你同样的情况,然后使用 WD-40 精密电路清洗剂 洗了一下好点了。
Jul 5, 2023
Replied to a topic by zhangfa0x11 问与答 求解一个算法,使用 go 程序实现
chatgpt 的答案
package main

import (
"fmt"
"math/rand"
"time"
)

func main() {
rand.Seed(time.Now().UnixNano()) // 设置随机数种子

n := 10 // 给定的正整数 n
m := 4 // 每个随机数必须小于 m

nums := make([]int, 5) // 存储随机数的切片

for i := 0; i < len(nums); i++ {
if i == len(nums)-1 { // 最后一个随机数直接使用剩余的 n
nums[i] = n
} else {
max := n - (len(nums)-i-1)*1 // 计算当前随机数最大值
if max > m { // 如果最大值超过了 m ,则将其设置为 m
max = m
}
nums[i] = rand.Intn(max) + 1 // 随机生成当前随机数
n -= nums[i] // 减去已经生成的随机数
}
}

fmt.Println(nums)
}
May 24, 2023
Replied to a topic by marso OpenAI depay 已废
nobepay 今天刚刚开 API 成功了。
Azure 的 API 有个问题就是 内容过滤比较烦。。
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   5143 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 30ms · UTC 01:09 · PVG 09:09 · LAX 18:09 · JFK 21:09
♥ Do have faith in what you're doing.