Ivan Trubach
Ivan Trubach
### What did you do? Wrote a simple fuzz target using https://blog.golang.org/fuzz-beta. Immediately found first crasher. ``` binary.Unmarshal([]byte("\x00\xff\x80")) ``` https://play.golang.org/p/41B5GBalYFb ### What did you expect to see? An error. ###...
Currently each package has to define its own error `errStop` to stop `Iterate` method. It’d be nice if `document` package exported some common error similar to `filepath.SkipDir`. ```go // document/iterator.go...
We should do something about integer overflows for values retuned by engine `NextSequence` method. E.g. SQLite claims to randomly choose available sequence number on overflow (I’d prefer deterministic solution, although...
I can reproduce mattn/go-sqlite3#204 with [minimal changes](https://gist.github.com/tie/88322c6f880f8515b3b5ac64b2124ba4/revisions#diff-53618cae32e23ae47e1c35f10da92654). main1.go ``` // https://github.com/mattn/go-sqlite3/issues/705 package main import ( "database/sql" _ "github.com/genjidb/genji/sql/driver" ) func main() { db, err := sql.Open("genji", ":memory:") if err !=...
It’d be nice to load avatars from linked GitHub account (e.g. https://github.com/tie.png?size=256 where size stands for max size in pixels). Looks like we’d need to fetch image for self.github_username in...
### What version of Vim/Gvim are you using? Vim/Gvim version $ vim --version VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Dec 17 2021 18:32:08) macOS version - x86_64...
On successful build a sentinel zero-byte file is written, similar to .unpacked-success in internal/version. If this file exists on next gotip download, compare HEADs before and after FETCH_HEAD checkout, and...
This PR adds `billy.Stat` function that returns `os.FileInfo` by calling `Stat` on `billy.File` underlying type using optional interface pattern.
### What version of Go are you using (`go version`)? $ go version go version go1.15.2 linux/amd64 ### Does this issue reproduce with the latest release? Yes, starting with `go1.15rc2`...