Bojan Zivanovic
Bojan Zivanovic
The current data is 6 CLDR releases behind, so let's track the update here.
#35 has landed, so v0.14 has CLDR v36.1. The update to v38.1 still requires additional fixes, as documented in #33. Looks like we have an easy step before that though,...
This is going to be tough to review. Perhaps it would be easier to do the update in jumps (e.g. v32 -> v34 -> v36 -> v38). With the newline...
I use a non-customized zsh + [Pure](https://github.com/sindresorhus/pure) terminal. Pure has a dark background color, making the ConsoleWriter's timestamp color hard to read: https://www.dropbox.com/s/qdj9t1plv977s4g/zerolog%20terminal.png?dl=0 This was introduced in #131. Could I...
The standard license for SDKs is MIT. This SDK is under a proprietary license, which means it can't be used inside Drupal for example (drupal.org has strict rules against packaging...
This might be a problem with the way I define the index. I have the following database: ```go func testDatabase() *memory.Database { ctx := sql.NewEmptyContext() db := memory.NewDatabase("users") tableName :=...
We need a way to recognize whether a Composer process completed successfully or not. Users ignoring the Composer output is a real problem. If we can detect an error, we...
Thank you for Baton, loving it so far. I have only one annoyance so far, and I wanted to get your feedback. My listening is oriented around albums. Which is...
Same reasoning as in #132.
Current implementation: ``` // add key if err := encoder.Encode(k); err != nil { return nil, err } buf.WriteByte(':') // add value if err := encoder.Encode(o.values[k]); err != nil {...