1
0
mirror of https://github.com/FloatTech/zbpdata.git synced 2025-04-21 11:53:12 +09:00

Merge branch 'FloatTech:main' into main

This commit is contained in:
莫思潋 2022-06-17 18:47:52 +08:00 committed by GitHub
commit 2c787501f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 22 deletions

BIN
Fortune/ASoul.zip Normal file

Binary file not shown.

BIN
MockingBird/wj.wav Normal file

Binary file not shown.

18
main.go
View File

@ -10,11 +10,9 @@ import (
"io/fs"
"os"
"strings"
"sync"
"unicode"
"unsafe"
"github.com/FloatTech/zbputils/process"
"github.com/fumiama/go-registry"
"github.com/wdvxdr1123/ZeroBot/utils/helper"
)
@ -41,17 +39,12 @@ func main() {
*(*unsafe.Pointer)(unsafe.Pointer(&md5s[i])) = unsafe.Pointer(&buf)
*(*uintptr)(unsafe.Add(unsafe.Pointer(&md5s[i]), unsafe.Sizeof(uintptr(0)))) = uintptr(16)
}
r := registry.NewRegedit("reilia.westeurope.cloudapp.azure.com:32664", "fumiama", os.Getenv("REILIA_SPS"))
r := registry.NewRegedit("reilia.fumiama.top:32664", "fumiama", os.Getenv("REILIA_SPS"))
err := r.Connect()
if err != nil {
panic(err)
}
defer r.Close()
var wg sync.WaitGroup
wg.Add(len(files))
for i, fn := range files {
go func(i int, fn string) {
defer wg.Done()
for c := 0; c < 5; c++ {
err = r.Set("data/"+fn, md5s[i])
fmt.Println("set", "data/"+fn, "=", hex.EncodeToString(helper.StringToBytes(md5s[i])))
@ -63,9 +56,12 @@ func main() {
} else {
fmt.Println("ERROR:", err, ", retry times:", c)
}
process.SleepAbout1sTo2s()
_ = r.Close()
err = r.Connect()
if err != nil {
panic(err)
}
}(i, fn)
}
wg.Wait()
}
_ = r.Close()
}