Isaac Abraham

Results 166 issues of Isaac Abraham

This updates Fantomas to v5 (had to change global.json to use .NET 6 for this) and also applies formatting to the project.

With the imminent release of Fantomas 5, we should upgrade the `dotnet-tools.json`: ```diff -"fantomas-tool": { +"fantomas": { - "version": "4.7.1", + "version": "5.0.0", "commands": [ "fantomas" ] }, ``` We...

[This PR](https://github.com/SAFE-Stack/SAFE-template/pull/466) could act as the basis for this. The article should *not* explain the costs / benefits of DI - link to other places for that.

I propose we add the ability to bind within the context of an assignment to e.g. a record. Given functions `validateCustomerId`, `validateName` and `validateCountry`, all of which take in a...

area: syntax
area: computation-expressions

if you enter e.g. `let x = 5` and then try doing a `x.`, if you didn't "select" `x` from the pop-up that appears, but simply typed `x.`, you get...

There are no XML comments on any functions etc.; I know that there are lots of good examples on the website, but adding this would mean that many use cases...

You can currently expose a chart via a static PNG or by taking the HTML generated from a chart. It would be good if you could take the HTML directly...

The section that discusses the `printByte` function mentions (correctly) that F# will infer the input type based on usage, or will fall back to e.g. `int`. > This time it...

I'm not sure (warning: I'm not a Rust dev so might be completely wrong here) that the two examples (map.filter vs addOne |> addOne) are really equivalent. Isn't the map....