njlr

Results 255 comments of njlr

~~I am unsure why the CI is failing on Windows.~~ This works locally: ```bash # nix develop ./build/sh test ``` Edit: Success! Needed to update the lock files

> Wow! Cool! I’ll review this weekend I need to update a few more things to fix the build first :+1:

> > Wow! Cool! I’ll review this weekend > > I need to update a few more things to fix the build first 👍 Now ready :+1:

Comments addressed :+1:

Bump on this. It would be great to have https://github.com/GoogleContainerTools/container-structure-test/pull/469 available via Bazel registry 🙂

`SqlRowReader` can take a column index instead of a column name. ```fsharp #r "nuget: Fumble, 0.8.1" open Fumble let tryFetchCount db = db |> Sqlite.query "SELECT COUNT(*) FROM Test" |>...

Does your `.bazelrc` have an interpreter version? e.g. ``` common --@aspect_rules_py//py:interpreter_version=3.9.18 ```

I have created a test-case and made a potential fix here: https://github.com/fsprojects/FSharp.Data/pull/1510 However, I'm not sure if the logic is correct for all cases - are `pre` tags special in...

Please can this be reviewed in order to support this? https://github.com/GoogleContainerTools/container-structure-test/pull/509

This would make it possible to write include guards (like in C/C++), which would prevent multiple defines when using scripts. `A.fsx` ```fsharp #if !A_FSX #define A_FSX let a = 123...