Aoang
Aoang
What is holding me back that the complex interface of no unit tests's [Device](https://github.com/tulir/whatsmeow/blob/main/store/store.go#L102-L129), I don't know where is the error
RFC @erikdubbelboer
> I think you can implement `fs.FS` instead of `embed.FS`. It's more useful for general purpose. LGMT. I'm doing and sharing my thoughts. We first need to implement the `Custom...
I need some help. https://github.com/valyala/fasthttp/blob/v1.40.0/fs.go#L822-L826 I don't quite understand why `byte(0)` needs to be handled separately. Does Linux, other systems or file systems have special handling? If handle exceptions, should...
Thanks. https://en.wikipedia.org/wiki/Null_character
I'm confused, sync.WaitGroup fail in race tests. https://github.com/valyala/fasthttp/actions/runs/3203507569/jobs/5233684491#step:8:6 https://github.com/valyala/fasthttp/pull/1374/commits/bfce8ab92f95bec213ef432bedf389a43ebcf025
# Test 1. New Go File: `wg.go` ```go package testPoj import ( "sync" "time" ) var wg = sync.WaitGroup{} func R() { wg.Add(5) for i := 0; i < 5;...
Hi, in the implementation process, the package in `internal` depends on `compress`, so I copied a copy in `internal/pool/compress`. There are so many exposed methods and variables in compress that...
I don't think it is necessary, but there are too many duplicate names, such as `io.FS` and `embed.FS`. I think it would be a lot easier to add `embed.FS` and...
To be reviewed, I'll add comments.