Robin Munn
Robin Munn
An extra parameter in `templates.json` seems like the natural place to specify this, which could specify the script file to run, and any command-line parameters to pass to the file....
Or perhaps cross-platform compatibility could be ensured by having the template-creation script be a Javascript file, specified in the `templates.json`, which the generator could `require` and then run a specified...
I've gone through and figured out what sections correlate with each other, which should save someone some time in setting up the redirects. Here's a list of old doc URLs...
What my brief research has turned up about redirects in GitHub Pages is an article at https://help.github.com/en/articles/redirects-on-github-pages that no longer exists — that URL now redirects to https://help.github.com/en/articles/about-github-pages-and-jekyll instead. The...
Probably has a lot to do with requestAnimationFrame. [MDN says](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame) "The frequency of calls to the callback function will generally match the display refresh rate." So on the 120Hz display,...
There's currently a large PR outstanding to refactor rendering and transitions: https://github.com/sveltejs/svelte/pull/10594. It's very likely that a bugfix for the spring code will have to wait untli that PR is...
All uses of makeFakeWidgetWithVariables in the current TW code ensure that the values passed in are strings. For example, here's one where it's expecting indexes (as integers) and converting them...
What's happening here, in essence, is that IE 11 support is biting us. The reason why TiddlyWiki uses `|| ""` in a lot of places is to deal with `undefined`...
First discovered this while trying to create a reproduction for https://github.com/PowerShell/PowerShell/issues/13982, but it turns out that this is a different issue, so I created a new issue rather than ask...
I think I've found the cause of the bug. If you look at this part of the GetResponse method, https://github.com/PowerShell/PowerShell/blob/bd8b0bd42163a9a6f3fc32001662d845b7f7fff0/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/Common/WebRequestPSCmdlet.Common.cs#L1315-L1321 you'll find that if there's a redirect, then the cancellation...