Lucas

Results 100 comments of Lucas

This looks like a powerful, efficient suggestion to me. Thanks for contributing! I'd only suggest using a `do while` instead of `while`, as we guarantee that the generation executes at...

@ovidiul would you mind committing the suggestions above, so I can approve this PR and forward this internally to be merged?

Thanks for the change, @ovidiul! Just out of curiosity, a couple of PHP core developers once warned me about doing computation inside a statement, because the inner workings of PHP...

Found the blog article with the dead link: https://coenjacobs.me/2019/07/05/why-i-felt-there-was-a-need-for-mozart/

Awesome, thanks for the reply, @coenjacobs. Please feel free to close this issue.

@BrianHenryIE that looks great, thank you! I've already moved on to another solution, but if I try this out I'll post here the results. Either way, this was a very...

I forgot to share the code snippet used on the results above: https://3v4l.org/OPBFq#v8.0.10

Thanks for asking my input. This package requires PHP 7.1, which seems to use PCRE 8.38 according to 3v4l.org: https://3v4l.org/S1bPl On the PHP versions made available by 3v4l, 8.32 is...

It seems PCRE 8.32 made it's way into PHP core in 2013: https://github.com/php/php-src/commit/357ab3cbada57374075ccf57c9ec25bbbbcb6948 And has been replaced with 8.35 in 2014: https://github.com/php/php-src/commit/dd0e96cca360c5584ec80319ae99fc07c0f2c5f3 I guess it's fine to drop support for...

It seems that PHP 7.1.0 requires PCRE [> 6.6](https://github.com/php/php-src/blob/PHP-7.1.0/ext/pcre/config0.m4#L43) to compile Only on PHP 7.3 the version restriction was increased to PCRE > [10.30](https://github.com/php/php-src/blob/PHP-7.3.0/ext/pcre/config0.m4#L24) These restrictions refer only to compilling...