Luis Ferrao
Luis Ferrao
My schema passes validation I suppose because I see this:  But from the browser I never get beyond this point:  Is there any way for me to check...
I don't use this library (yet), but one thing that struck me when reading the readme is that this library isn't about validation, it's about parsing. See [Parse, don't validate](https://lexi-lambda.github.io/blog/2019/11/05/parse-don-t-validate/)....
After having worked around most limitations, it appears I cannot make [FSharp.Domain.Validation](/lfr/FSharp.Domain.Validation) compatible with Fable which is a shame as it's a match made in heaven for web dev for...
This is an example from the doc: ```fsharp let person = { Name = "John"; Age = 34 } let serialized = [ "name", JString person.Name "age", JNumber (float person.Age)...
Upon upgrading to .NET 5 I suddenly start getting a nullref exception that I didn't get before. Turns out one of my records was expecting an int for which the...
Currently yaml files with member names using kebab-case, the type provider exposes these as-is using `` as follows: ``` my-attribute1: abcd my-attribute2: 1234 ``` becomes ``` conf.``my-attribute1`` conf.``my-attribute2`` ``` Using...
These days many of us have different browsers, in keeping with Signal's privacy DNA, it would be nice to be able pick the browser that opens links that we receive...