JustAnotherArchivist
JustAnotherArchivist
Duplicate of #412 Some implementations of `xargs` (e.g. GNU's) have a `-P` option to specify the concurrency. There's also GNU Parallel and others.
Example of a linting crash on the mypy step from : ``` Installing missing stub packages: /opt/hostedtoolcache/Python/3.12.2/x64/bin/python -m pip install types-requests Traceback (most recent call last): File "/opt/hostedtoolcache/Python/3.12.2/x64/bin/mypy", line 8,...
@cclauss Would you mind verifying whether I'm understanding things correctly here?
Yeah, that was next on my list. Looks like the fix is to bump `actions/checkout` to version 4. But as you say, separate PR.
Yeah, it's the correct solution – *if* we don't migrate away from `pkg_resources`. But the plan (#621) is to do so, and once that is merged, nothing here will depend...
Looks like this got obsoleted by e84edd1c although that did not remove the old PyPy versions. I'll create a new PR for that instead.
Having used Redirector for years, I came across this issue for the first time today as I wanted to have one rule remove a certain query parameter from URLs and...
Also linking to what appears to be a duplicate: #204
Here's a more solid approach that handles fragments and other query parameters (e.g. `action=history` pages): Regex pattern: `^(https?://(?:[^/]*\.)?wikipedia\.org/[^?#]*)(?:\?([^#]*))?(#.*)?$` Target: `$1?$2&useskin=vector$3` Exclude: `^[^#]*[?&]useskin=`
Enter an awful workaround: `@​github` → @​github (or `​`). It's awful in particular because copying the resulting text will of course also include the zero-width space. And here's another version...