Jeroen Versteeg
Jeroen Versteeg
[Contiuous.php:39](https://github.com/markrogoyski/math-php/blob/4dab1f0efe96b547bd21b17b66a5b7efec5902b3/src/Probability/Distribution/Continuous/Continuous.php#L39) can trigger a division by zero Warning. Specifically, this happens in our project with the following call `(new MathPHP\Statistics\Regression\Linear($points))->ci($x, 0.05);`. Call stack: ``` #8 /vendor/markrogoyski/math-php/src/Probability/Distribution/Continuous/Continuous.php(39): MathPHP\Probability\Distribution\Continuous\Continuous::inverse #7 /vendor/markrogoyski/math-php/src/Probability/Distribution/Continuous/StudentT.php(130): MathPHP\Probability\Distribution\Continuous\StudentT::inverse2Tails...
I've started developing using the stand-alone module from `https://unpkg.com/htm/preact/standalone.module.js` but realize that I really need the debugging tools. The [documentation](https://preactjs.com/guide/v10/debugging#installation) says to `import "preact/debug"`, but that's not a valid module...
Looks like a copy-paste bug (the previous line uses `getTimeType()` correctly.
I originally described this issue in https://github.com/twigphp/Twig/issues/3568#issuecomment-931382860 but have created this PR to keep the discussion focussed.
In the `lamp` recipe, there's a tooling command `db-import`. While it does provide a `--host|-h` option, it unfortunately doesn't have a `--database|-d` option to specify which database to use for...
I'm trying to run [`grunt watch`](https://github.com/gruntjs/grunt-contrib-watch) in the background using ```yaml services: appserver: type: whatever:13.37 build: - npm install run: - grunt watch & ``` But that doesn't work. 😞...
I'm running Lando ~~3.1.4~~ 3.6.4 on Windows WSL 2 with Docker Desktop ~~1.29.1~~ 4.5.1. # Setup My Lando config boils down to ```yaml name: mos-eisley-scum services: greedo: type: php:7.4 via:...
`\Twig\Extra\Intl\IntlExtension`'s constructor takes an optional `IntlDateFormatter` prototype. That works great for settings various defaults (`dateType, timeType, pattern`), but it doesn't enable automatic timezone conversion. # IntlDateFormatter Consider this plain PHP...
Surely I must be doing something wrong, but it seems like `scrubFields` doesn't properly deal with paths (e.g. `request.session.myKey`). I'm using v1.8.1 and have checked what happens in [`Scrubber::scrubArray:114`](https://github.com/rollbar/rollbar-php/blob/master/src/Scrubber.php#L114). `$fields`...
`SessionHandlerPHP` does a neat job of detecting existing sessions, starting its own, and then restoring the previous session when `cleanup` is called (what a sweet feature!). There is one issue...