kingIZZZY
kingIZZZY
This seems like a nice levenshtein plugin to have I successfully built & installed on my local windows WSL ubuntu 18 However i cannot seem to build it on my...
Isn't LastName <comma><space> FirstName a very common write-out of a persons full name? `print_r(FullNameParser::parse('LASTNAME, FIRSTNAME'));` ``` Array ( [salutation] => [fname] => Lastname [initials] => [lname] => Firstname [lname_base] =>...
Trying to use `borg import-tar` [Docs](https://borgbackup.readthedocs.io/en/stable/usage/tar.html) say: _a `--tar-filter` program may be explicitly specified. It should read compressed data from **stdin** and output an uncompressed tar stream on **stdout**._ Can...
Full explanation: https://stackoverflow.com/a/71133750 Shippo_Object implements ArrayAccess: https://www.php.net/manual/en/class.arrayaccess.php Warnings getting in PHP log: PHP Deprecated: Return type of Shippo_Object::offsetUnset($k) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute...
When using the default cURL subsystem the response is correctly handled by the SDK Fault Handler for clients to consume as documented. But when using Guzzle subsystem by calling `$dataService->setClientName('guzzle')`...
Is it a good idea to handle all HTTP routes & controller requests AND all WebSocket events & messages from the 1 server config? Or is it better to have...
```console > Namae.parse('BRYANT H DUNIVAN JR, ESQ') => [] > Namae.parse('JAMES W GOVIN, ESQ') => [#] ```
Allow me to drop a bunch of real-world examples of names which failed to parse, in case they may be helpful in further perfecting the parsing logic. Perhaps eventually these...
It would be helpful when trying to compare/match names using `family` and `given` that any middle initials are separated from the `given`. Is it possible to add functionality to parse...
- [x] I've been read all documentation - [x] I've been search all existed issues Is there an official supported way for stopping & shutting down hyperf gracefully within the...