MK
MK
According to the documentation, all versions of PHP support the `usort` callable parameter returning an `integer`. While earlier versions silently accepted a `boolean`, PHP 8.x throws a deprecation notice: ```...
Thanks for the great work on this extension. I have a suggestion for how to make it even better. There should be a way to compare vendor-prefixed CSS with the...
ReCaptcha has a new feature (replacing the old "Secure Token" feature) called [Domain Name Validation](https://developers.google.com/recaptcha/docs/domain_validation). The way it works is that reCaptcha sends you the domain name on which the...
Right now, there is no `focus` event bound. That means that if the user types a few characters and then `blur`s the field, returning to the field does not show...
A useful feature of [go-bindata](https://github.com/kevinburke/go-bindata) is its ability to take an argument with go build tags to add to the generated file. My specific use-case for this is that I...
I often want to set a timestamp field to the current time, and have to do that manually. This PR adds a button next to the `google.protobuf.Timestamp` fields to set...
I have been using ardent for a model which also uses [eloquent-sluggable](https://github.com/cviebrock/eloquent-sluggable). Following the [documentation](https://github.com/cviebrock/eloquent-sluggable/blob/master/README-Ardent.md) from there, I added a `beforeValidate` function that builds the "slug" before the validation happens....
The main reason for adding this is that GitLab uses version 7.1.0 which does not properly handle `classDef` declarations. (It took me four hours to figure out why it wasn't...
The documentation for [Inserting & Updating Related Models](https://laravel.com/docs/8.x/eloquent-relationships#inserting-and-updating-related-models) includes multiple ways to insert related models, including `save`, `saveMany`, `create`, `createMany`, `findOrNew`, `firstOrNew`, `firstOrCreate`, and `updateOrCreate`. It then includes a link...
I can do a PR for this, but first I wanted to gauge interest. The [`preload` spec](https://www.w3.org/TR/preload/) that defines server push lists the valid "request destination" types for the `as`...