Luiz Ferraz
Luiz Ferraz
Installing a module-aware binary without modules has been blocked since Go 1.13 if I remember correctly. ``` ❯ go install -u github.com/cube2222/octosql flag provided but not defined: -u usage: go...
As stated on the package doc: > The functions provided by this package are not methods of `mo.Option` due to the lack of method type parameters > on methods. This...
Not related to any particular environment Is there any way to have a healthcheck that reports as unhealthy unless the application is actually processing messages? So unhealthy during rebalances and...
Fixes #19
```go package main import ( "fmt" "emperror.dev/errors" "emperror.dev/errors/match" ) type ( myErrorKind string MyError struct { kind myErrorKind cause error } ) func (e MyError) Error() string { return fmt.Sprintf("%s:...
Hey everyone! It would be great if we could extend interface types like we can with object types. Currently we can do this: ```typescript // organization.ts export const Organization =...
Avro schema evolution supports field renaming by setting the old name as an alias of the new name on the new schema. If a field is missing on BigQuery is...
We have one record field that can be of different types depending of the what the message is about. All of they are mapped correctly to BigQuery except this one:...
A `big.Int` value has 32 bytes in size - 1 byte for a bool - 8 bytes for a slice pointer (one word) - 8 bytes for the slice length...