Florian Verdonck
Florian Verdonck
Hello Dan, After reading https://github.com/facebook/react/issues/16604#issuecomment-528663101, I'm interested in what it would take to get this working without an existing bundler. I'm asking in regards to the https://github.com/AngelMunoz/Perla project. This is...
It would be nice if we could also create a `TableStorage.Configuration` from a storage connection string.
### Description We are currently using Paket in a team where there is a mix of OS'es. In our fsproj, we settled that we would use `/` instead of `\`...
As mentioned in https://github.com/dotnet/fsharp/discussions/13646. I would later like to use this in my test over at https://github.com/safesparrow/fsharp/pull/1.
Hello, Comparing the default mime types of Suave https://github.com/SuaveIO/suave/blob/57d69e39e67a5b1a1c60b7c015c698a1901a9420/src/Suave/Combinators.fs#L90-L114 to the list of ASP.NET Core https://github.com/dotnet/aspnetcore/blob/86e28e7b267579e2999e06b63eeef27e4836384a/src/Middleware/StaticFiles/src/FileExtensionContentTypeProvider.cs#L24-L404 There is quite the delta. Would you be open to having the same list?
- [ ] Bug fix - [ ] New feature - [x] Chore - [ ] Breaking change - [ ] There is an open issue which this change addresses...
Hello, I noticed that the [Router.fs](https://github.com/SaturnFramework/Saturn/blob/01eb4f021161ac8b432ff2cc5e9d384b38fba5f8/src/Saturn/Router.fs#L29) has a concept of `not_found_handler` but `RouterEndpoint.fs` does not. Is this by design? What would the alternative be for `not_found_handler` for endpoint routing?
How would the style guide envision the following `inherit` function calls are formatted? ```fsharp type UnhandledWebException = inherit Exception new(status: WebExceptionStatus, innerException: Exception) = { inherit Exception(SPrintF1 "Backend not prepared...
Hello, The current style guide does not give any guidance on where to put the `when` expression in match clauses. Some examples: ```fsharp match x with | Y y when...
Considering the following code: ```fsharp type T = Provider< @"..."> ``` There needs to be a space before the `@` string in order for this to remain valid code. Should...