Steven Wichers
Steven Wichers
Another use case: I need to pull a different repository into the worker and take action on it separate from the repository running the worker. I want to put this...
The first example doesn't work. RelationshipsRegistration (and the hasOne/hasMany methods) don't have all of the same functionality as the routes themselves. For your second example, are you suggesting that this...
This library has no way to seamlessly extend it. It hardcodes whitelisting and doesn't provide a way to add additional methods without replacing the `Web3` and `Eth` classes. The simplest...
Also would love to just disable the update prompt.
Actually, I am not going to create a PR unless asked otherwise. I forgot that GitHub will show commits from forked repos inside the issue.
Quick and dirty bash script to sync all packages. Assumes HTTPie and JQ are installed. ```sh #!/bin/env bash # Requires HTTPie and JQ ORG_NAME='example' API_KEY='DEADBEEF12345etc' SLEEP_S=0.5 # End of variables...
MariaDB supports JSON https://mariadb.com/kb/en/json-data-type/ . If your MariaDB version is from before 2017 you can try to update.
Still desired.
Slightly "safer" version of the above script is available here https://gist.github.com/swichers/c167abdb0f9be23305c7a9a22a473188 which pulls the org and key into arguments and checks for jq and http on the system before running.
You can use these commands to setup repman authentication globally ``` composer config --global --auth http-basic..repo.repman.io token composer config --global repo. composer 'https://.repo.repman.io' ``` And there will be no need...