Patrick Kuijvenhoven

Results 17 comments of Patrick Kuijvenhoven

You can set the signature regex to whatever you like, like this: ``` $parser = new \EmailReplyParser\Parser\EmailParser(); $parser->setSignatureRegex('/your regex here/s'); $content = $parser->parse($string)->getVisibleText(); ```

As a FYI, someone is working to get `buildx` and `compose` (docker compose v2) part of the official docker images. See https://github.com/docker-library/docker/pull/361

Poor mans way to do this: ``` curl -s https://api.github.com/repos/harelba/q/releases/latest \ | grep "browser_download_url.*deb" \ | cut -d '"' -f 4 \ | wget -qi - ``` (Based on https://gist.github.com/steinwaywhw/a4cd19cda655b8249d908261a62687f8)

Hehe, I do, but jq doesn't seem to be installed on most default systems though. In my defense, I told its a poor man's way of doing it. OP will...

It's not that my patch breaks anything. My patch actually makes the issue described in this bug-report work for `$network->count()`. The issue indeed remains if the Countable interface `count($network)` is...

FWIW, libgit2/libgit2#3751 is closed. The feature seems to be implemented.

In most shells, `git add *` doesn't take "dot-files" into account, i.e. a `.gitignore`-file. See https://unix.stackexchange.com/questions/1168/how-to-glob-every-hidden-file-except-current-and-parent-directory

Hi @Alexandre-T, I've seen your work on https://github.com/longitude-one/spatial-writer and you seem almost there. How's it going? Any help needed? Regarding "a lot of work": maybe a task for https://github.com/rectorphp/rector?

Just as a FYI, [DBML - Database Markup Language](https://dbml.dbdiagram.io) seems nice as output format as well.

``` justinrainbow/json-schema 6.0.0 requires icecave/parity (1.0.0) icecave/parity 1.0.0 requires icecave/repr (~1) ``` Both `icecave/*` dependencies were released 10+ years ago. I found out that `icecave/repr` even has a file on...