Vadim Markovtsev

Results 110 issues of Vadim Markovtsev

Given the following spec: ``` directive @date on INPUT_FIELD_DEFINITION input MetricParams { expiresAt String! @date } type Query { metrics(params: MetricParams!): Boolean } ``` the following directive implementation ```python class...

help wanted

The following code: ``` rune('!') ``` fails with ``` ng: typecheck: cannot convert untyped rune to rune ```

The following code: ``` str := "123" str[0] == '1' ``` panics with ``` ng eval panic: reflect: call of reflect.Value.SetInt on uint8 Value goroutine 1 [running]: runtime/debug.Stack(0x44, 0x0, 0x0)...

The following code ``` import "strings" const goosListStr = "android darwin dragonfly freebsd linux nacl netbsd openbsd plan9 solaris windows zos " goosList := strings.Fields(goosListStr) cooccurrence := make([][]int, len(goosList)) ```...

I run the following code: ``` #!ng import "encoding/csv" import "os" csv.NewReader(os.Stdin) ``` and press "Ctrl-C" having launched the script and before it prints ``` &csv.Reader{ Comma: int32(44), r: unexported,...

This is a really cool list! I wonder what is the license of the content in this repo?

This proposes to add a UDF based on [go-license-detector](https://github.com/src-d/go-license-detector) to classify licenses of repositories to gitbase core. That UDF requires all the files in HEAD belonging to a repository. cc...

feature

Hi! First of all, let me disclaim: I have no idea what are all these Bayesian things and I work as a regular maximum likelihood ML software engineer. I have...

This is to mirror the [upstream issue in SQLAlchemy 1.4](https://github.com/sqlalchemy/sqlalchemy/issues/7504). Those folks happily discarded our problem because we were using the private API at first, but later showed a humane...