Mårten Rånge

Results 38 comments of Mårten Rånge

Hi. We use spark `2.4.4` which uses JSON DSL `3.5.3`. An internal library uses JSON4S `3.6.7`. The class path then resolves to JSON4S `3.6.7` as that is the newest version...

In order to add some "gravitas" to this issue I recently ran into this when using VB + ImageSharp and was stopped right in my tracks. IMHO the problem is...

I personally think for symmetry `elif` should be supported. I would be deeply confused if it wasn't. Also it allows things like this (which is good or bad depending on...

A bit off-topic but as string interpolation was mentioned as better than `sprintf`. Personally I don't want to switch to string interpolation over `sprintf` because string interpolation is using CurrentCulture...

Hi. First of I really like the idea behind Ooui. For fun (and potentially useful) I am implementing so called Formlets on top of Ooui. It's a way to create...

The need for local properties is that when I need to hook on data on an object. With object properties that is defined in the class I have no flexibility....

This was my PR: https://github.com/praeclarum/Ooui/pull/154

In case you have an interest in what I am tinkering with https://github.com/mrange/Ooui.Formlet ``` git submodule init git submodule update cd src dotnet run # Open a browser to: http://localhost:8800/formlet...

The purpose is to define reactive forms using relative little code ``` let address lbl = Formlet.value Address.New any "C/O" notEmpty "Address" notEmpty "Zip" notEmpty "City" any "County" any "Country"...