Jim Fisher
Jim Fisher
Hey, thanks @codebytere - however when I try using these properties using the modern `getUserMedia` API, they're ignored: I get the default camera video stream instead of a screen capture....
@Thomasdezeeuw @julienschmidt thanks. `:user` certainly _shouldn't_ match `gordon/:profile`, because ["Named parameters only match a single path segment"](https://github.com/julienschmidt/httprouter/blob/master/README.md#named-parameters). So I think this should be considered a bug (or a documentation bug)....
I believe the perceived problem stems from the horrible Electron convention to mix distributable source files (e.g. `main.js`) with non-distributable files (e.g. `my_sensitive_cert.pfx`) in the same root directory, and then...
So here is my awful hacky workaround. It creates a custom `afterPrune` callback, which modifies the `package.json` to only include fields necessary for distribution. I'm going to leave this issue...
[The @types/katex type definitions](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/katex) seem completely broken. Katex as of v0.15 seems to have only a default export, so I have to `import katex from 'katex'`. But the type definitions...
Note that those definitions seemed to work with Katex v0.13, but have been broken somewhere between v0.13 and v0.15.
It appears this was a breaking change in v0.14: https://github.com/KaTeX/KaTeX/blob/main/CHANGELOG.md
Might sound weird, but I suggest using plain characters as shortcuts, e.g. "c" and "Shift-C", [as suggested here](https://stackoverflow.com/a/59010351/229792). You're already doing this with numbers for the toolbar so it would...
I'm guessing this is the same issue: ``` >>> import pydot >>> dot = pydot.Dot() >>> dot.add_node(pydot.Node("x:0")) >>> dot.get_node("x:0") [] ``` Pydot's job is to hide the dot syntax behind...
Duplicate of https://github.com/stripe/stripe-node/issues/758?