JustAnotherArchivist
JustAnotherArchivist
Briefly tested this: ```diff --- a/lib/ultrajsondec.c +++ b/lib/ultrajsondec.c @@ -114,6 +114,10 @@ static FASTCALL_ATTR JSOBJ FASTCALL_MSVC decode_numeric (struct DecoderState *ds { goto DECODE_INF; } + if (UNLIKELY(*(offset) < '0' ||...
For numerical comparisons (e.g. automatic regression tests?), quantiles could be used, which would be insensitive to outliers. E.g. something like the 50th (= median) and 95th quantiles. But plotting the...
Apart from `/alias`, this affects `/eval`, `autosendcmd`, and the `startup` file, as far as I can tell.
As far as I can see, TLS verification is still not enabled by default: https://github.com/irssi/irssi/blob/b38ae68fb544612c8899d1e1196b434f7e7ba70b/src/core/servers-setup.c#L412 Most IRC networks have valid certificates by now. At least one other client (weechat) verifies...
For future reference, the relevant commit is 244a8c72 I believe. https://github.com/irssi/irssi/pull/1170
This would certainly be useful for manual terminal usage with e.g. curl. I've long had a little script that essentially does `curl --upload-file ...; echo` for this reason. However, the...
@stefanbenten Yeah, I'm aware of that. I originally wrote my script to work around percent-encoding bugs (#213 and #215) and still use it to `sed 's,%40,@,g'` because I prefer having...
According to [Can I use...](https://caniuse.com/#feat=referrer-policy), IE and Edge only supports the older `never` & Co. values. So with this change, IE/Edge users would probably start sending the referrer. [This Stack...
Since the January release of Edge 79, the browser is based on Chromium and therefore also supports the new spec. But overall, according to Can I Use, 5.42 % of...
An elegant solution that would simultaneously also get rid of issues like #353, possibly #338, and #207 would be to simply remove the pipeline download entirely and instead do it...