N. P. O'Donnell, 2020 - 2023
Show rustup
version (not Rust version):
#!/usr/bin/env sh | |
# rename-repo | |
# Renames a named git repo on the server side | |
# N. P. O'Donnell, 2020 | |
REPO_BASE=/git | |
REPO_OLD_NAME=$1 | |
REPO_NEW_NAME=$2 | |
REPO_OLD_DIR=$REPO_BASE/$REPO_OLD_NAME.git | |
REPO_NEW_DIR=$REPO_BASE/$REPO_NEW_NAME.git |
N. P. O'Donnell, 2020
.yaml
filesdocker-compose.yml
but any filename may be used#!/usr/bin/env sh | |
# make-repo | |
# Creates a bare, named git repo on the server side | |
# N. P. O'Donnell, 2020 - 2021 | |
REPO_BASE=/git | |
REPO_NAME=$1 | |
REPO_DIR=$REPO_BASE/$REPO_NAME.git | |
HOSTNAME=$(hostname) |
MutableTransactionSignatureCreator
(src/script/sign.cpp) seems to be where the sighash is created. There is one constructor
which takes a transaction (txToIn
), an input index (nInIn
), and amount, and a sighash type (eg. SIGHASH_ALL
).
https://github.com/bitcoin/bitcoin/blob/master/src/script/sign.cpp#L28
https://github.com/bitcoin/bitcoin/blob/master/src/script/interpreter.cpp#L1234
Monitor outgoing DNS traffic: | |
``` | |
tcpdump -vvAs0 port 53 | |
``` |