Maxime Mangel

Results 1077 comments of Maxime Mangel

Thoth.Json(.Net) decoder are forcing the date to be converted into UTC time. https://github.com/thoth-org/Thoth.Json/blob/9b24792ef99ada96aff4dd5eb57c11d98397396e/src/Decode.fs#L295-L302 My ideas for that was because Thoth.Json encode the date as UTC it makes sense to keep...

In the next version of Thoth.Json I already have a lot of breaking changes planned I will make the `datetime` not touch the date. For now, if you are using...

**Comment by [MangelMaxime](https://github.com/MangelMaxime)** _Thursday May 02, 2019 at 13:05 GMT_ ---- Hello, this is an error in the documentation. You should use: ```fs open Thoth.Json Decode.fromString (Decode.array Decode.int) "[1, 2,...

You are right, I think I didn't release the `custom coders feature` because it is a big change and I don't understand it yet. And problem is that I will...

> I have the feeling that most people using Thoth.Json rely on the Auto module though I may be wrong "Unfortunately" ^^, yes. > If you're working on a restructure...

Fable can't do that you no because it doesn't know about React. However, it's possible to create an [Fsharp Analyzer](https://github.com/ionide/FSharp.Analyzers.SDK) which can analyze the code for you and generate warning/errors....

Components should avoid at most being related to each other. In fact, if they need to interact with each others, it should be throught `Msg` or `externalMsg`. ```fs /// Child...

Indeed it's similar, for the access to the token. You still "break" the components independency because even if the `Post` doesn't pick directly into `Admin.State` the parent is. From my...

Hello @alexander-akait, I am facing a similar issue because I am using Haxe to transpile to JavaScript. I tried adding the directory with the source code to the ignored list...

@alexander-akait Sure, I made a reproduction available here: https://github.com/MangelMaxime/SourceMapLoaderProblemReproductionHaxe The instruction are in the README. If you need more information don't hesitate :)