This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
by the time you're reading this, this probably no longer works since the policy has been removed. I reccomend you to check out https://github.com/r58Playz/uBlock-mv3 instead
webRequestBlocking API, which is neccesary for (effective) adblockers to workExtensionManifestV2Availability key was added and will presumably stay forever after enterprises complain enoughYou can use this as a regular user, which will let you keep your mv2 extensions even after they're supposed to stop working
This is a cheat sheet for how to perform various actions to ZSH, which can be tricky to find on the web as the syntax is not intuitive and it is generally not very well-documented.
| Description | Syntax |
|---|---|
| Get the length of a string | ${#VARNAME} |
| Get a single character | ${VARNAME[index]} |
| https://apple.stackexchange.com/questions/332769/macos-disable-popup-showing-accented-characters-when-holding-down-a-key | |
| # In macOS, when a key is held down while entering text, a popup is shown which lets one choose between various accented | |
| # forms of the character. To disable this execute the following command-line in the Terminal.app: | |
| defaults write -g ApplePressAndHoldEnabled -bool false | |
| # Now, you'll need to log-out and log back in. This should disable the display of the popup and character typed should | |
| # start repeating when the key is held down. |
| default['sshd']['sshd_config']['AuthenticationMethods'] = 'publickey,keyboard-interactive:pam' | |
| default['sshd']['sshd_config']['ChallengeResponseAuthentication'] = 'yes' | |
| default['sshd']['sshd_config']['PasswordAuthentication'] = 'no' |
These are just some articles that i came across while researching the issues with the core network on staging swarm running out of IPs.
https://success.docker.com/article/networking
| // Ensure we enroll ecs with long resource IDs | |
| // Delete after April 1st as all new accounts will be enrolled by default | |
| resource "null_resource" "enable_long_ecs_resource_ids" { | |
| provisioner "local-exec" { | |
| command = <<EOF | |
| # $1=account_id, $2=region | |
| source ${path.root}/../scripts/assume_role.sh \ | |
| ${var.workload_account_id} \ | |
| ${var.workload_provider_region} |
| AbortDocumentVersionUpload | |
| AbortEnvironmentUpdate | |
| AbortMultipartUpload | |
| AbortVaultLock | |
| AcceptAccountMapping | |
| AcceptCertificateTransfer | |
| AcceptDelegate | |
| AcceptDirectConnectGatewayAssociationProposal | |
| AcceptFxPaymentCurrencyTermsAndConditions | |
| AcceptHandshake |
| version: "3" | |
| services: | |
| apache: &apacheConfig | |
| build: . | |
| volumes: | |
| - ./:/var/www/html:cached | |
| - ./docker/php-apache/php.ini:/usr/local/etc/php/php.ini | |
| - ./docker/php-apache/ssl-local:/etc/httpd/ssl | |
| working_dir: /var/www/html | |
| ports: |
| #!/usr/bin/env bash | |
| set -e | |
| aws_retry() { | |
| last_aws_call="" | |
| local max_attempts=${ATTEMPTS-8} | |
| local timeout=${TIMEOUT-2} | |
| local attempt=0 | |
| local exitCode=0 |