Ian Kerins
Ian Kerins
Perhaps related to #274. ```javascript const ivm = require("isolated-vm"); const isolate = new ivm.Isolate(); const script = isolate.compileScriptSync('console.log("buh")'); const context = isolate.createContextSync(); context.evalClosureSync( ` globalThis.console = { log: function(...args) {...
The default arrays like https://github.com/reactjs/react-docgen/blob/e05219b08c8b17899be812a521b4985f2b66fae2/bin/react-docgen.js#L34 can only be appended to, not replaced, by passing values on the CLI. This is most consequential for the one that I linked, as it's...
The underlying node-dir library that consumes the --exclude pattern takes a regex or an array of string literals to match against: https://github.com/fshost/node-dir/blob/a57c3b1b571dd91f464ae398090ba40f64ba38a2/lib/readfiles.js#L22-L31 When passing that arg multiple times, I had...
Hi. Thanks for this nice theme. After trying it out for a while, I don't understand why so much is being highlighted in yellow. Here's an example with a random...
Relevant code: https://github.com/haslersn/any-nix-shell/blob/c8536fa43f0e8b506e9dd1a91e2f01ceccca0251/bin/any-nix-shell#L61-L65 Here's a copy-pasted terminal session involving different `fish_right_prompt`s' effects on text selection. Highlight the entire code block and observe that the prompt line has a ton of...
### Expected Behavior `Configuration#withDependencies` should always run before the configuration is no longer valid to mutate. See its [javadoc](https://docs.gradle.org/current/javadoc/org/gradle/api/artifacts/Configuration.html#withDependencies-org.gradle.api.Action-). ### Current Behavior In rare cases on our CI (less than...
Commit Message: The property on Router is deprecated and points at `spawn_upstream_span`. Use that instead. Additional Description: Risk Level: Low Testing: N/A Docs Changes: Yes Release Notes: N/A Platform Specific...
``` λ docker image ls REPOSITORY TAG IMAGE ID CREATED SIZE quay.io/buildah/stable latest 26b3a6ab9362 14 hours ago 723MB moby/buildkit latest 5946db68d29a 4 days ago 168MB gcr.io/kaniko-project/executor latest 967a3ff3beaa 2 weeks...
Here are some input query strings and the results of parsing them, including the error, if any. Some of them should result in parse errors but do not. ``` (...
Right now, [`SearchResult`](https://github.com/sourcegraph/zoekt/blob/52664b7dfdeb0ae3c198a393c9187f99fb3f8828/api.go#L469-L483) [provides URL templates](https://github.com/sourcegraph/zoekt/blob/52664b7dfdeb0ae3c198a393c9187f99fb3f8828/eval.go#L447-L457) for linking to individual files and line numbers within a repository, but not a URL for linking to the repository itself. If you want...