Cody A. Taylor
Cody A. Taylor
# What I wonder how beneficial delivering a [vscode devcontainer](https://containers.dev/) with every exercise would be. ## Possible Gains The primary goal here is that `exercism download` could create a full...
## What problem does this feature solve?: Ease of contributing. A fully configured IDE and tools as a single configuration file. ## Provide an example: I would like to suggest...
# Questions * What causes the configuration file to be read? * What causes the configuration file to be written? * Where does the file exist? ## Current Documentation In...
## Example - [ ] Foo task - [ ] Bar task - [x] Completed
I love that the preview follows my cursor while editing `slides.md`. Please add the same for `` elements.
## Scenario The rust image currently has `umask 022` set. ```shell $ docker run -it --rm --user root mcr.microsoft.com/devcontainers/rust:1-1-bullseye root ➜ / $ umask 0022 root ➜ / $ grep...
Writing a feature that uses `curl` is not exactly straight forward. I copied some snippets from the [aws-cli](https://github.com/devcontainers/features/blob/baf47e22b0c3dc5b418ac57aae2e750d14bbc9a3/src/aws-cli/install.sh#L68-L87) feature. However, a well documented example in this repository would be awesome....
I am currently building a new supporting tool and just wondering if this is correct. ```shell $ oras pull ghcr.io/devcontainers/features/git:latest Downloading ebd18821c6cc devcontainer-feature-git.tgz Downloaded ebd18821c6cc devcontainer-feature-git.tgz Pulled [registry] ghcr.io/devcontainers/features/git:latest Digest:...
In your [readme example](https://github.com/kevva/gulp-decompress/blob/3e881dc0f39f4d9f67a926789f663a9998f52f0f/readme.md#usage) I believe there is potentially an UnhandledPromiseRejection. The Transform stream has no error handler so I suspect the [synchronous call to the flush callback](https://github.com/kevva/gulp-decompress/blob/1af310982ac152f1cfccf74dde47732c8508a1d9/index.js#L46) will cause...
Am I missing something or is there no way to reverse `--items`? Say something like ```bash $ cat object.json | json --items -c 'this.value.battles > 2' | json --to-object ```...