Balázs Dura-Kovács
Balázs Dura-Kovács
The `make_credential` function has an `output` argument, which is supposed to toggle whether the function should print the response or not. However this variable was overwritten inside the function, which...
A bunch of convenience functions provided by AbstractTrees became available by implementing some of their traits. For efficient traversal, an additional `index_within_parent` field has been added to nodes, just as...
**Is your feature request related to a problem? Please describe.** The HDF5 standard contains an `Array` type that is currently not supported by HighFive. See this figure from the User's...
I remember seeing this idea somewhere, but I couldn't find it... It would be great if we could check via the API if the user is member a certain society...
This PR adds the option to use `JxlEncoderSetFrameBitDepth` and `JxlDecoderSetImageOutBitDepth`. This is necessary for lossless reconstruction of images with bit depths other than 8 or 16 bits. I've also added...
Now you can sample from uniform and categorical discrete distributions by calling `rand()`. Examples: ```php $uniform = new Uniform(10, 20); $random = $uniform->rand(); $categorical = new Categorical(3, ['a' => 0.2,...
Previously you could only copy/paste GPS data from one picture to another. This PR makes it possible to manually enter coordinates and apply them to a picture. 