Ivar Nesje
Ivar Nesje
**Environment** - Nuget Package: JsonSchema.Net.Generation - Nuget Version: 3.0.2 - OS: windows - .Net Target: 6.0 **Can this library make doing something simpler?** In `System.Text.Json`, the attribute `[JsonExtensionData]` is used...
Correct changes to the implementations of differentiate() and simpelify() breaks tests if the order of arguements are changed. ``` julia >>> isequal(:(a+b) , :(b+a)) false ``` The test should use...
A common dilemma in Julia, is what to do when the user provides integers to a function where they probably want do do the calculation in floating point. Many users...
Currently Julia performs poorly with anonymous functions, and the sorting system has used a funny trick with types to pass a different comparison function. After reading @mauro3's comment about implicit...
I was thinking about https://github.com/JuliaLang/ODE.jl/issues/11 and just relaised that an iterator version of the ODE solvers might be a viable solution. As this is a different idea than the event...
Simple change to let nginx rewrite the domain name, so that things works as before the domain change. I can't update/fix the domain name, as this config is in `appsettings.json`...
Taking some inspiration from https://github.com/fluentassertions/fluentassertions/issues/2374, I improved the implementation of `IEquivalencyStep` to actually keep the path when recursing into a json structure and added some tests. I'm a little puzzled...
System.Text.Json provides a neat api for parsing Json in a forward only way with `Utf8JsonReader` that just returns tokens, ignoring whitespace and decoding escape sequences in strings. This would make...
### Description of the bug As stated in JsonMetadataToCsharpConverter.cs, the C# xml library does not ([and never will](https://github.com/dotnet/runtime/issues/1412)) support nullable value types for properties that use the `[XmlText]` attribute. https://github.com/Altinn/altinn-studio/blob/6369a7b7af88030729871c6c9a2aa3a8fb4ef685/backend/src/DataModeling/Converter/Csharp/JsonMetadataToCsharpConverter.cs#L161...
If the Location is created without referencing the SourceTree, the previous implementation of GetLocationTrimmed lost the file path resulting in diagnostic messages without clickable file paths. This might not be...