zxl
zxl
 This happens when enabled `Show notifications`, and the panels cannot be closed manually. And by the way, it doesn't work when specified config file, instead still using fixers in...
Support embed commands via `$()` (not supported on Windows) ```env START_TIME=$(date) ``` Note that using $() might not work depending on your shell.
```go ft, _ := filetype.Match(buf) ``` `buf` is read from a docx or xlsx file. But `ft.MIME.Value` is `application/zip`
```go // PossibleTypes returns the possible mime types of given bytes func PossibleTypes(b []byte) ([]types.Type, error) { if len(b) == 0 { return nil, ErrEmptyBuffer } possibleTypes := []types.Type{} for...
I believe that many developers define the `created_at` or `updated_at` columns as a string like this: ```go type User struct { Id int64 // ... other cols CreatedAt string `xorm:"'created_at',...
------------ directory: -- main.go -- go.mod main.go: ```go package main import "fmt" func main() { fmt.Println("hello") } ``` start realize: ```bash realize start --run --nc ``` error shows: ```bash [10:54:52][TEST]...
In go.mod, there is `github.com/rivo/uniseg v0.4.3 // indirect`, which breaks specified go version `go 1.13`. There's no need to require it since `github.com/mattn/go-runewidth v0.0.14` already uses `github.com/rivo/uniseg v0.2.0` with the...
I'm using redis in cluster mode , have the `*cluster.Cluster`, how do I create a pubsub from the cluster ?