njlr

Results 150 issues of njlr

I would like to parse some Markdown, convert it to HTML, embed that in some other HTML and render it all to an HTML string. Something like this: ```fsharp //...

I was wondering if it possible to run this outside of MSBuild. For example like this: ```bash dotnet tool install FsLexYacc dotnet tool run fsyacc ``` I think this would...

Should we add `queryOne` that requires one row? This could be used for queries like this: ```sql SELECT COUNT(*) AS n FROM products ``` Signature like this: ```fsharp /// Execute...

I propose adding two functions: ```fsharp AsyncSeq.toChannel : ChannelWriter -> Async AsyncSeq.fromChannel : ChannelReader ``` `AsyncSeq.toChannel` would be used to fill a `ChannelWriter` from an `AsyncSeq` `AsyncSeq.fromChannel` would be used...

When I try to use the `pyspark` package, I get this error: > Backend 'setuptools.build_meta:__legacy__' is not available. Here is the `pyproject.toml`: ```yaml [tool.poetry] name = "cowapp" version = "0.1.0"...

In order to build Bazel rules for [Fable](https://github.com/fable-compiler/Fable), we need access to the F# source-files and target dependency graph. This information can be used to generate `fsproj` files that the...

### Checklist - [X] I agree to the terms within the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md). ### Describe the problem you'd like to have solved To import a specific `auth0_tenant` by...

:seedling: feature

### Checklist - [X] I agree to the terms within the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md). ### Describe the problem you'd like to have solved The data source `auth0_tenant` has `management_api_identifier`,...

:seedling: feature

It would be useful to be able to provide simple validations of values given to expand_template to ensure that incorrect information has not been given to Bazel. If the values...

help wanted
funding needed

This works: ```starlark pkg_files( name = "app_files", srcs = [ ":app", ], attributes = pkg_attributes(mode = "0777"), ) ``` but it sets the mode for every file. How can I...