Richard Hagen
Richard Hagen
Hi, I think i have the same issue, pretty sure it has something to do with WSL and the LSP server, I have the exact same issue in vscode ```...
For the record, the fix I posted in the other thread does work nicely for me: - `winget install "Node.js"` - possibly restart your terminal - Install biome on the...
Hi! Very excited about this feature! But I was under the impression that custom React components/extensions required to be saved as HTML (to properly serialize the attributes), and it seems...
Thanks for the quick response! :) Not directly, since custom react extensions would look like ``, so using `dangerouslySetInnerHTML` wont work. _But_ I found yesterday after posting, that `JSON.serialize` retained...
Tekton sub-pipelines are still missing CPU limits, both init containers controlled by Tekton, and user-defined tasks/steps
Hadde det vært en ide (og mulig?) å bruke https://external-secrets.io/latest/api/generator/acr/ ?
Current solution 🧸 ```csharp var conditions = entry.Select(x => $"'{x.Escaped()}'").Join(","); qb = qb.Where(x => x.MatchesJsonPath($"data['VerifiedHealthResults']['{entry.Key.Escaped()}'] ?| array[{conditions}]")); ``` and ```csharp public static class PostgresqlStringEscape { public static string Escaped(this string...
I expect that parameters in a json Path works... I don't think reorganizing the data in a different way would help me in this case (this is already v2 of...
I have gotten back and rewritten my read-model, I know have a list of HealthTests(".") So basically searching for a list of strings, in a list of strings: ```sql select...
Alright, reading the tests, i found this that works great: ```csharp qb = qb.Where(x => x.HealthTest.Any(s => conditions.Contains(s))); ```