/D takes the localized values for yes/no, i.e. on a German system you need to give J or N.
Open a terminal with elevated privileges. Then run:
takeown /R /D J /F .| #!/usr/bin/env bash | |
| set +o errexit | |
| "${@}" | |
| EXIT_CODE=${?} | |
| set -o errexit | |
| SOUNDS_DIR="$HOME/bin/sounds" | |
| SUCCESS_SOUND="yay-6120.mp3" # https://pixabay.com/sound-effects/yay-6120/ | |
| ERROR_SOUND="error-126627.mp3" # https://pixabay.com/sound-effects/error-126627/ |
| package main | |
| import ( | |
| "context" | |
| "log" | |
| "time" | |
| corev1 "k8s.io/api/core/v1" | |
| "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | |
| "k8s.io/apimachinery/pkg/runtime" |
| #!/usr/bin/env bash | |
| # Use this when Github bugs out and refuses to delete your | |
| # head branches after a PR got merged, even though you | |
| # have enabled that behaviour in your fork. | |
| set -euo pipefail | |
| source $(dirname "$0")/src/lib.sh |
| #!/usr/bin/env bash | |
| # | |
| # Drum! | |
| # | |
| # Cause the repeated "docker run --rm -it" always sounds | |
| # like "drumit" in my head. | |
| # | |
| # This script makes it easy to start a container. | |
| # |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # This script should be placed in the root of the cloud-controller-gcp working copy. | |
| cd $(dirname $0) | |
| set -x | |
| # re-generating the bazel output takes foreeeeeeever, so be careful when you |
| module testmodule | |
| go 1.21.0 | |
| require github.com/getkin/kin-openapi v0.120.0 | |
| require ( | |
| github.com/go-openapi/jsonpointer v0.19.6 // indirect | |
| github.com/go-openapi/swag v0.22.4 // indirect | |
| github.com/invopop/yaml v0.2.0 // indirect |
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "regexp" | |
| "strings" |
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "log" | |
| "os" | |
| "os/signal" | |
| "strconv" | |
| "time" |
| /* disable spinning effects */ | |
| .flip-front, .flip-back { | |
| animation: none !important; | |
| } | |
| /* disable constant product update notifications */ | |
| #quick_help_container { | |
| display: none !important; | |
| } |