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
| --- | |
| - name: Use all IPv6 Addresses in one IPv6 Block (/64, /56) | |
| become: true | |
| gather_facts: true | |
| tasks: | |
| - name: Get default IPv6 interface | |
| ansible.builtin.set_fact: | |
| interface: "{{ ansible_default_ipv6.interface }}" | |
| - name: Get IPv6 prefix | |
| ansible.builtin.set_fact: |
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
| { | |
| "annotations": { | |
| "list": [ | |
| { | |
| "builtIn": 1, | |
| "datasource": { | |
| "type": "grafana", | |
| "uid": "-- Grafana --" | |
| }, | |
| "enable": true, |
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
| # UDP Receive Buffer Size required for quic-go (https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes) | |
| # | |
| net.core.rmem_max=7500000 | |
| net.core.wmem_max=7500000 |
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
| { | |
| "credHelpers": { | |
| "docker.pkg.github.com": "gh", | |
| "ghcr.io": "gh" | |
| } | |
| } |
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
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA256 | |
| Hello, as I promised, I will create a new OpenPGP key and make it my main key at 2nd of June this year. | |
| This key has a expiration date, which will also be applied to my old key. (3 years valid, instead of 1 on the new key) The new one uses ed25519 instead of RSA. The old key will still be valid. | |
| The new key has 3 subkeys, which 2 of them is automatically generated by GnuPG for Signing and Encryption, and the 1 extra subkey, I will use them for Signing in Git Commits, I believe there will be more subkeys in the future, but that's it for now. | |
| This is an authenticated message, so I will sign this with my old key to proof the fact that this new key ownership is 100% the same as the old one. |
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/sh | |
| # GitHub Release Assets downloader | |
| # Source: https://gist.github.com/Hazmi35/58bdaa315c2521589c148bc393d59064 | |
| if [ $# -lt 2 ] ;then | |
| echo "Usage: <org/repo> <version or 'latest'> [filename]" | |
| echo "To use Authenticated request, set the variable GITHUB_TOKEN first" | |
| echo "For example: GITHUB_TOKEN=ghp_xxxxx ./gh-release-download user/privaterepo latest" | |
| exit 1 |
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
| [1A | |
| [0;41m [0m | |
| [0;47m [0;41m [0m [0;41m [0m | |
| [0;47m [0;41m [0m [0;41m [0m | |
| [0;47m [0;41m [0m | |
| [0;47m [0;41m [0m | |
| [0;47m [0;41m [0m | |
| [0;41m [0m [0;41m [0m |
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
| # OpenSSH Bug for SSH_ASKPASS workaround | |
| # REF: https://unix.stackexchange.com/questions/83986/tell-ssh-to-use-a-graphical-prompt-for-key-passphrase/635613#635613 | |
| if [ $XDG_SESSION_TYPE != "tty" ]; then | |
| export SSH_ASKPASS_REQUIRE=prefer | |
| fi |