Pierre-Yves Landuré
Pierre-Yves Landuré
I'd use impala on Ubuntu as an alternative to nmtui. But for simplicity sake, maybe a fork dedicated to network manager would be the best path forward. Another way is...
@pythops thank you for your work. Supporting network manager Wifi in impala would be great. I don't see a great need for VPN support. nm-tui (or cli) is sufficient to...
would adding hooks on network up and down, and "healthcheck" actions be a way to add VPN support without adding complexity to Impala by allowing to start and shutdown vpn...
Additionally, mapping the amount as `STRING` instead of `BIGINT` prevent using SQL aggregation (sum, averages, …) when the currency is the same across all database lines. Some databases provide native...
GitHub Copilot proposed me to use the `:robot:` icon for "Add or update a code generator.". With the predominance of LLM, This icon would be a good fit for "Add...
Hi, thank you for your reply. I've three remarks on your reply: - creating a transformer that does nothing is an answer, and it's the origin of this NoOp proposal,...
I've tried using the transformer option. It works. I have some remarks. 1. It requires to explicitly use the getter in the expression (`#[MapFrom(transformer: 'source.getCategory()')]`) when the source property is...
Yes but no, since `curl` isn't available in the default image anymore. It was present until recently. Adding a `HEALTHCHECK` intruction to the `Dockerfile` would be nice. Thank you for...
I used mitmproxy to capture the queries issued by KOReader. Only one query is made before the crash occurs. According to https://jsonlint.com/, the response JSON is valid. Here is the...
After investigation, the issue is caused by the table sink. A solution is, on line 41, use `table.concat`: ```lua local response = json.decode(table.concat(sink)) ``` I've tested it. It works. It...