aspe:keyoxide.org:VEVBQFFXDUKCRZXER4EOBYWD5Y
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| if ! command -v mycli >/dev/null 2>&1; then | |
| echo "mycli is not installed. Please install it to use this script." >&2 | |
| exit 127 | |
| fi | |
| if ! command -v docker >/dev/null 2>&1; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "lead": { | |
| "firstName": "Arne Test 2", | |
| "lastName": "Jørgensen", | |
| "countryCode": "45", | |
| "description": null, | |
| "commercialLease": false, | |
| "cvrNR": null, | |
| "formReference": "/lejeboliger/triumphbuen-29-2-tv-3060-espergaerde-denmark", | |
| "websiteLanguage": "da", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Delivered-To: arne@arnested.dk | |
| Received: by 2002:a4a:3c46:0:0:0:0:0 with SMTP id p6csp85408oof; | |
| Thu, 17 Feb 2022 12:13:53 -0800 (PST) | |
| X-Google-Smtp-Source: ABdhPJwD2Mty/Lq8oflLGFYsK3rkZPqxWq01cNHKapZfB2NIG9l2rCDWJxLVES2/gSFBEVACz822 | |
| X-Received: by 2002:a5d:5849:0:b0:1e3:1df9:1b1e with SMTP id i9-20020a5d5849000000b001e31df91b1emr3558218wrf.640.1645128833795; | |
| Thu, 17 Feb 2022 12:13:53 -0800 (PST) | |
| ARC-Seal: i=2; a=rsa-sha256; t=1645128833; cv=pass; | |
| d=google.com; s=arc-20160816; | |
| b=FeXc/Pb4APqbcqqmqk4OAwCnQ8dWp9w7wW0yb8qKyo1A/3Ur0jre8fkMLpg5z0A7Z0 | |
| UyDY3Gd84lE3uUBftq8CNJ76lgXcMABr7AHjSKp9ROxar5Qsk/hO6+FApBxOQYSMstCP |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/core/lib/Drupal/Core/TypedData/ComputedItemListTrait.php b/core/lib/Drupal/Core/TypedData/ComputedItemListTrait.php | |
| index 7a823a4742..934b18df15 100644 | |
| --- a/core/lib/Drupal/Core/TypedData/ComputedItemListTrait.php | |
| +++ b/core/lib/Drupal/Core/TypedData/ComputedItemListTrait.php | |
| @@ -43,7 +43,7 @@ protected function ensureComputedValue() { | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| - public function getValue() { | |
| + public function getValue($include_computed = FALSE) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Uses `alerter` from https://github.com/vjeantet/alerter | |
| # Uses `healthy` from https://github.com/arnested/go-healthy | |
| # Uses `mapfile` bash builtin introduced in bash4 | |
| docker-compose () { | |
| show_success_message () { | |
| message="'${COMPOSER_PROJECT_NAME:-$(basename "$(git root)")}' is healthy." | |
| # Run in sub shell to get rid of info about background job. | |
| (nohup alerter -message "${message}" -title 'Docker Compose' -appIcon /Applications/Docker.app/Contents/Resources/AppIcon.icns -sound Glass < /dev/null &> /dev/null &) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| interval=10 | |
| if [ "$1" = "wait" ]; then | |
| until "$0" | |
| do | |
| echo "Not ready yet. Waiting $interval seconds..." | |
| sleep $interval | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| JsonPatch: | |
| description: A JSON Schema describing a JSON Patch | |
| type: array | |
| items: | |
| $ref: '#/definitions/JsonPatchOperation' | |
| JsonPatchOperation: | |
| type: object | |
| description: A JSON patch document as defined by RFC 6902 | |
| required: | |
| - op |
NewerOlder