Roland Lammel

Results 66 comments of Roland Lammel

For flexibility regex matching is a nice addition. Nice work! The current syntax is a little awkward using the "~" separator, so although I'm quite fluent in regex this is...

Based on the suggestion using slash (`/`) instead of `~` tests would look like this: ```go regexGet("/./", true) regexGet("loggy./programmers/", true) regexGet("/last*/./end*/", true) //Get any 3 word length string from the...

> It probably should be documented, but you need to escape the path. > > ``` > #(a\!\=e>15)# -> [{"a!=e": 20}] > ``` Actually it is documented in [(SYNTAX.md)](https://github.com/tidwall/gjson/blob/master/SYNTAX.md#escape-character). Maybe...

I'd say it is a valid use case ;-) We are quite often in the need to cleanup IDs from deeply structured JSON objects. Mixed with maps and arrays. We...

I'll try to provide a short introduction to promises with examples and open a pull request for further discussion soon.

This still seems to be an issue and go-prompt seems to be unmaintained or abandoned. This project is awesome, but there are quite some PRs waiting to be merged (also...

I'm not sure we should complicate the example that much. Might be better to just add a note, that this code requires a proper mechanism in production. Feedback weclome.

Sounds odd... do you have an explaination too for that? It sounds like a bug or limitation of validator. Do you have some example code to verify?

I'd prefer to keep minimal examples as simple as possible, so just using a String seems ok to me for that purpose. It might be better to point to the...

> Yes, this looks like a low-priority issue, which may be addressed in the future for all the fuctions accepting fully qualified metric name with labels. There is no need...