Gabriel Magno

Results 54 comments of Gabriel Magno

Any plans to implement "upcase" and "downcase" functions with UTF-8 support, something similar to [awk's "tolower"](https://www.gnu.org/software/gawk/manual/html_node/String-Functions.html). With jq 1.5: `echo '"ÁgUA"' | jq '. | ascii_downcase'` Output: `"Água"` With GNU...

> I found `ascii_downcase` from `builtin.jq` to do just this Yes, but as the name suggests, it works only for ASCII characters. For instance, UTF-8 characters of accented letters (e.g....

Hey @liquidaty . Well, in terms of functionality, it looks good to me. In terms of the implementation itself, I'm afraid I will not be able to judge, because I'm...

I miss exactly this feature/behaviour. I needed to do some queries in Elasticsearch, which uses a GET request with a json body, but I was unable to do it with...

Update regarding ElasticSearch requests: I was able to do the same request using POST.

Unfortunately I have never tested nano-dlna on OpenBSD. I have created a new branch ([bugfix/openbsd](https://github.com/gabrielmagno/nano-dlna/tree/bugfix/openbsd)) to test some fixes. First, let's see if the source of the problem is simply...

Thanks for testing it for us @vext01 ! > I didn't want to write to /usr/local, so I just did pip install --user .. Shouldn't make any difference I think....

Forgot to mention, but `gssdp-discover` is part of the `gupnp-tools` project (https://github.com/GNOME/gupnp-tools), so since you already have `gupnp-av-cp`, I believe you will already have `gssdp-discover` available.

@vext01 I have added a candidate fix into the `bugfix/openbsd`. Can you `git pull` the branch, reinstall nano-dlna, and check if it works now? Thank you.

Hi @vext01. Sorry for the late follow up on this. I have added a new fix into the bugfix/openbsd. Basically, I bind to `0.0.0.0` by default now (instead of empty...