TSIG needed (DNSSEC?)
RFC2845
https://github.com/redwyvern/ddns-dnssec-nsupdate
https://github.com/jodrell/pnotify
https://github.com/fln/ddnsadmin
-----BEGIN PGP SIGNED MESSAGE----- | |
Hash: SHA256 | |
- -----BEGIN PGP PUBLIC KEY BLOCK----- | |
mQINBFeklegBEACTZjHIVkAHJwq1gfoVb4SwEOg/jiGkZQXoiSav9c7596wHGraf | |
8283Bmm0VQsN53xb96z7HgU8Ytj6N3yhVRBTLCHW3Szf8kHCuH0//8B3NMdo9CNY | |
0/sTIdIGO72vqxJ2oQv2HJ9yHy01D7opVGOAAEGLipgnC+8FotZqtjeVxArMFAcp | |
HoDvXXz/eeFyjf2r4TwWo559eqPLhCSRL9aY1n09QaAo6vfX8Q6RrRNpa7phnfwU | |
W1Y7RV3y+ZIo/AqBit8pFcGqNhyebGl9E7JcprkRwHpyJfoKuD0o+ImisS1EsvH1 |
minhoryang@minhoui-MacBookPro-2 friend-tunnel2 % dig @168.126.63.1 ipfs.io | |
; <<>> DiG 9.10.6 <<>> @168.126.63.1 ipfs.io | |
; (1 server found) | |
;; global options: +cmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 50999 | |
;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1 | |
;; WARNING: recursion requested but not available |
def sortkey_natural(s): | |
return tuple( | |
int(part) if re.match(r'[0-9]+$', part) else part | |
for part in re.split(r'([0-9]+)', s) | |
) |
$argon2id$v=19$m=64,t=512,p=2$+VsBJhNGCtfOs56qfs0qtA$vEIG1tCy2U9s1G3LzZj27w
(@ wanted branch)
$ git format-patch -o patched/ -1
1
$ git log --format=oneline --decorate=short -10 patches/git.log
FROM ubuntu:latest | |
RUN apt-get update | |
RUN apt-get install -y --no-install-recommends apt-utils build-essential sudo git | |
RUN useradd -m docker && echo "docker:docker" | chpasswd && adduser docker sudo | |
USER docker |
Warn! from here, weird thingy happened :)
Disable the sound effects on boot
Disable transparency in the menu bar and elsewhere on Yosemite
Set highlight color to green
import yaml | |
import click | |
from conda.core.index import get_index | |
from conda.models.channel import Channel | |
from conda.resolve import Resolve | |
from conda_mirror.conda_mirror import DEFAULT_PLATFORMS | |
'Drink Responsibly, Blackmagic lives here.'; | |
/** | |
* Inject custom script to main page's document.head. | |
* Used for bypassing Chrome Extension's Content-Scripts Sandbox. | |
*/ | |
/** | |
* @param {{type?: string, src?: string, text?: string}} content | |
* @see Microsoft/vscode#22980, "JSDoc comments are ignored for destructured parameters". | |
* @see Microsoft/typescript#11597, "Intellisense for object properties defined in multi-line JSDOC comments". |