Andrew Bradley

Results 232 issues of Andrew Bradley

When both operands to the subscripting operator are yield expressions, it does not compile correctly. The latter expression (the index) is erroneously used for both operands.

CLA Signed

On Windows, filenames are delimited by backslashes. Unfortunately the CSV parser from v8-tools-core tries to parse them as \u0000 escapes when I believe it should be interpreting them verbatim. This...

https://repl.it/@AndrewBradley/AlienatedNaturalRuntimelibrary Here's an example that fails to parse: ``` build.title=Build \#71 ``` JSON does not allow arbitrary characters to be escaped, so parsing `\#` fails.

I am requesting an option to exclude nested `` tags from the selected text when translating and generating text-to-speech. `` nested inside `` is an annotation to explain the phonetic...

I have only informally tested this locally, so I can't prove it works, and I haven't had time to write tests. Idea is pretty simple: use `[[ -L` to check...

`realpath ./foo/this-is-a-symlink` fails to resolve the symlink. ``` pwd # assume we're in /home/cspotcode mkdir -p foo ln -s .. ./foo/this-is-a-symlink # ./foo/this-is-a-symlink points to .. (points to /home/cspotcode) realpath...

The concept and usage are explained here: https://github.com/cspotcode/node-code-ide-configs/tree/node-devcontainer/.devcontainer#readme VSCode lets you describe how to run within a dockerized dev environment. VSCode will mount a host directory into the container and...

I came across https://github.com/avajs/ava/issues/1109 which lists several criticisms of ts-node and predates some recent improvements. For example, ts-node has since implemented an ESM loader which I believe can handle #5....

I was nerd-sniped by our discussion on Discord, so I tried to automatically convert the .hbs into .tsx This is as far as I got. `convert.ts` attempts to use a...

### Terraform Version ```shell Terraform v1.5.1 on linux_amd64 ``` ### Terraform Configuration Files ``` ``` ### Debug Output - ### Expected Behavior When using local state with custom `workspace_dir`, `terraform...

bug
new