Makyen

Results 189 comments of Makyen

This has been implemented for CI testing in https://github.com/Charcoal-SE/SmokeDetector/commit/bb3098d5f6522667aff4527909a721f0076ca6ae. We should also run DNS checks within post scanning in parallel, but that should probably be another Issue.

The text in the `why` data is generated by SmokeDetector, so I've moved this issue to the SD repository. The problem will be in what's recorded as the blacklisting reason...

While not fully resolved, this should be substantially addressed by #7232 and #7231.

I've only ever seen this error on tests which are old (i.e. which are old enough to have had the logs deleted by the retention policy). The [default retention policy](https://docs.github.com/en/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization)...

I agree that it would be nice if a `!!/approve` comment on GitHub did the same job of approving and merging, with resolving merge conflicts, that a `!!/approve PR#` does...

I've forked the `regex` package into [Charcoal-SE/mrabarnett--mrab-regex](https://github.com/Charcoal-SE/mrabarnett--mrab-regex) and added some changes for thread safety. I need to do more review of the code for the package and coordinate with the...

I've taken a deeper look at the `regex` package's C code. It appears that a regex that's actually in use is not thread safe (i.e. two threads can't safely perform...

This looks quite a bit better. Using similar regex101 tests ([first](https://regex101.com/r/fm7wYD/1), [second](https://regex101.com/r/GnhgeK/1), [third](https://regex101.com/r/qT5tp9/1)) produce a much better final regex, `\A(what[\W_]+is[\W_]+your[\W_]+name[\W_]*){10,}`, which doesn't match [just anything](https://regex101.com/r/btA1YK/1). :) I wonder how it...

I need to look at this more closely, but wanted to pose a general question: The prior organization was that there was a function `report_posts()` which took a list of...

Yes, and no. It still makes a single request for each answer, which are a significant percentage of the posts reported. Admittedly, it could reduce that by making one request...