Emil Nikolov

Results 21 issues of Emil Nikolov

**Describe the PR** I am working on https://github.com/go-chai/chai - an extension for the chi router that provides support for type safe http handlers via generics. This allows it to also...

Currently if a path to a file rather than a directory is specified to be ignored in the config, the rest of the files in its parent directory that come...

For example ``` type Multi struct { Word Word } type Word struct { String string } type Config struct { Multi *Multi MultiWord *Word } ``` This sort of...

I didn't find anything official on the history of project wyvern. Is this repository an official continuation of the original https://github.com/ProjectWyvern/wyvern-ethereum made by the same team? Or is it an...

Dynamically linked Go applications compiled with CGO_ENABLED=1 on a system with glibc (default on debian based distros) instead of musl (default on alpine) can now run inside an iron/go container.

Is it possible when printing an error to only print the Callstack that is generated from this position onward, but ignore the Callstack that happened prior to the method that...

I want to use this package, but be able to use the -config flag for my own things, without it interfering in any way. Right now the only way to...

Bulk upsert seems to only have Exec() but no Save() functions generated, so we have to make a separate call for getting the results of the upsert. https://github.com/ent/ent/blob/9e809635b2e5815e259b4ab1ca08357341576a38/entc/gen/template/dialect/sql/feature/upsert.tmpl#L385 Looking at...

enhancement
Question

```go package test import ( "testing" "github.com/mattbaird/jsonpatch" "github.com/stretchr/testify/require" ) func TestJSONPatchCreate(t *testing.T) { cases := map[string]struct { a string b string }{ "object": { `{"asdf": "qwerty"}`, `{"asdf": "zzz"}`, }, "array":...