I ~/.bashrc
eller tilsvarende:
export UID
export GID
aspe:keyoxide.org:VEVBQFFXDUKCRZXER4EOBYWD5Y
;;; .gnus.el --- my .gnus file | |
;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, | |
;; 2006 Arne J,Ax(Brgensen | |
;; Author: Arne J,Ax(Brgensen <arne@arnested.dk> | |
;; This file is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published | |
;; by the Free Software Foundation; either version 2 of the License, |
{ | |
"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", |
I installed Font Awesome and uses it to make my Emacs mode line look cool:
auto-fill-mode
.flymake-report-status
to make this happen).gtags-mode
.Requirements: diminish.el - I installed it from MELPA.
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 |
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 |
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) { |
# 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 &) |
#!/bin/bash | |
interval=10 | |
if [ "$1" = "wait" ]; then | |
until "$0" | |
do | |
echo "Not ready yet. Waiting $interval seconds..." | |
sleep $interval | |
done |