Robin Munn
Robin Munn
> Built-in Windows 10 SSH Agent uses a named pipe for communication instead of a socket as seen in Unix. I wasn't able to find any node package that implementa...
Besides the [two lines](https://github.com/StackExchange/blackbox/blob/60e782a09e291a15da426b32ef36fdab9d2196d7/bin/_blackbox_common.sh#L21-L22) that @aymericbeaumet mentions and the documentation, there are a couple of other places that would need to be touched: 1. In [`blackbox_initialize.sh`](https://github.com/StackExchange/blackbox/blob/60e782a09e291a15da426b32ef36fdab9d2196d7/bin/blackbox_initialize#L61), the word `keyrings` is...
One more change needed, as I discovered in testing: `blackbox_initialize.sh` should also add the line `vcs_add "$FILE"` at the end of the `if [[ $VCS_TYPE = "git" ]]` block (i.e.,...
Running this under Svelte-Kit will probably involve calling `setCDN()` with an appropriate location (to load the WASM regex code Shiki uses) before calling `getHighlighter`, slightly complicated by the fact that...
Nearly five years after the original request, I've discovered a use case where this might be important. https://stackoverflow.com/a/41094189/ has all the details, but here's a short example. What's the difference...
I like the suggestion of aliases, but I don't like the syntax `open MyModule MyModule_Alias`. I would want the keyword `as` in there to mark an alias: `open MyModule as...
@vzarytovskii - Ugh, `with-` is ugly. That's about the worst choice possible. I understand not wanting to introduce new keywords, as I was bending over backwards not to do so...
I'd rather not use the name "vector" for this, since that's already got a meaning (PersistentVector from FSharpx.Collections, inspired by Clojure) that is NOT an array. If F#'s immutable arrays...
A list-like structure that's array-based already exists; it's called `ResizeArray`. The difference is indeed performance: the existing `List`, based on a linked list, is extremely efficient for operations at the...
Are the collections in `System.Collections.Immutable` really performant, compared to the collections in `FSharpx.Collections` (ported over from Clojure)? The `ImmutableList` implementation is an AVL tree, whereas `PersistentVector` is a 32-way B-tree...