For Free DNS:
- https://gcore.com/dns
- https://dns.he.net/
- https://desec.io/
- https://www.vultr.com/docs/introduction-to-vultr-dns/
Taken from: https://lowendtalk.com/discussion/185804/freedns-afraid-org-down-any-alternatives
| on run {input, parameters} | |
| tell application "System Events" | |
| set textToType to (get the clipboard as text) | |
| delay 1 | |
| repeat with i from 1 to count characters of textToType | |
| set c to character i of textToType | |
| -- use codes to print some chars for compatibility reasons | |
| -- see https://eastmanreference.com/complete-list-of-applescript-key-codes for all key codes | |
| if c = "." then |
| --- | |
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: smtp4dev | |
| spec: | |
| type: NodePort | |
| selector: | |
| app: smtp4dev | |
| ports: |
| #!/usr/bin/env bash | |
| old_kernels=($(dnf repoquery --installonly --latest-limit=-1 -q)) | |
| if [ "${#old_kernels[@]}" -eq 0 ]; then | |
| echo "No old kernels found" | |
| exit 0 | |
| fi | |
| if ! dnf remove "${old_kernels[@]}"; then | |
| echo "Failed to remove old kernels" |
| #!/usr/bin/env sh | |
| # Script to check if app version has been bumped | |
| # To be used with Merge Request CI checks | |
| set -e | |
| VERSION_FILE="ci/build.env" | |
| git fetch origin |
| #!/usr/bin/env bash | |
| # Based on the info from | |
| # - http://elrepo.org/tiki/HomePage | |
| # - https://www.golinuxcloud.com/set-default-boot-kernel-version-old-previous-rhel-linux/ | |
| # - https://www.casesup.com/category/knowledgebase/howtos/how-to-change-the-default-kernel-in-grub-for--rhel-and-centos | |
| ## !!!!!!!!!!!!!!!!!!!! ## | |
| ## ## | |
| ## !!! IMPORTANT: do not run this as-is, read all in-line comments ## |
| --- | |
| global: | |
| resolve_timeout: 3m | |
| slack_api_url: 'https://hooks.slack.com/services/<TOKEN>' | |
| smtp_smarthost: 'mail.example.com:25' | |
| smtp_from: 'alertmanager-dev@example.com' | |
| smtp_require_tls: false | |
| smtp_hello: 'alertmanager-dev' | |
| # The directory from which notification templates are read. |