ento

Results 32 comments of ento

@kristianmandrup We're currently using this by git cloning the entire repo to a known path: ```sh elm_tooling_version=3.2.0 if [ -d vendor/tools/elm-ops-tooling ]; then pushd vendor/tools/elm-ops-tooling git fetch git checkout -f...

Terraform data source that lets you provide data to modules that expect JSON or other structured data from a Nickel file. This would be analogous to this [data source for...

> unless someone specifically wants trace data in agentless mode (which we don't support at the moment) Huh, I'd assumed trace data was supposed to be available in agentless mode...

Sorry it took a while to check it out. :white_check_mark: When I tried it against a minimal test that makes an HTTP request, a corresponding span for the request showed...

> Just to clarify, your simple single-file `test.py`test does not hang, only your larger project, correct? That was the case when I wrote the comment, but I've managed to make...

There's a similar issue about mismatched digest in the context of devenv reported in nix2container's repo: https://github.com/nlewo/nix2container/issues/127

In my case, I hadn't told git about my github credentials. From github-gem's readme: > Authentication > > To let GitHub know who you are, just have your git config...

I made [this chart](https://observablehq.com/d/eb336fc983fcdf52) that shows the number of packages that support a particular Python version based on binary wheels' filenames (limited to 3.9-3.11 - I wanted a visual aid...

Left a comment with my findings in #226 - hope that's useful.

I ran into this with a TypeScript project; I made a small PR that modifies a multi-line `const` declaration which looks like this: ```ts const SomeRecord: Record = { Foo:...