alexgit2k

Results 37 comments of alexgit2k

With the JSON-output format the range can be generated by combining the min- and max-temperature fields, e.g. https://wttr.in/London?format=j1 ```json { ... "weather": [ { ... "date": "2023-04-23", "maxtempC" "15", "maxtempF":...

`glob( '.env.*.local' );` would return all files matching configuration-files (see https://www.php.net/manual/en/function.glob.php) So in [recipe/deploy/shared.php](https://github.com/deployphp/deployer/blob/master/recipe/deploy/shared.php) `glob` could be used to expand wildcard patterns.

I forgot that `glob` is not working at the remote host, so the wildcard-files have to be determined yet. So instead of line 61 at [deploy/shared.php](https://github.com/deployphp/deployer/blob/master/recipe/deploy/shared.php#L61) the following should expand...

I was also using Virtual Box 7.0.8. So the 9.1 boxes did not support BIOS & UEFI at the same time? Could this be the cause for an increase of...

Can confirm the massive loss of performance: ``` # time docker run -it --rm perl /usr/local/bin/perl -e 'for($|++,$_++,$a++;;$,+=$a/$_,$_++,$a*=-1,$_++){if($i++>50000000){printf"%.16f\n",$,*4;exit;}}' 3.1415926735902504 real 0m14,809s user 0m0,019s sys 0m0,009s ``` With `--security-opt seccomp:unconfined`: ```...

@goetas: of course the latest release: ``` $ ./vendor/bin/doctrine-migrations -v Doctrine Migrations 3.1.2@1c2780df6b58998f411e64973cfa464ba0a06e00 ```