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
#!/usr/bin/env bash | |
export RUSTDOCFLAGS="-D rustdoc::broken-intra-doc-links -D rustdoc::private_intra_doc_links" | |
# https://github.com/autonomys/subspace/tree/main/.github/workflows | |
cargo -Zgitoxide -Zgit clippy --target-dir target/watch-clippy --locked --release --all-targets --features "runtime-benchmarks" -- -D warnings && \ | |
cargo -Zgitoxide -Zgit doc --target-dir target/watch-doc --locked --all --no-deps --lib && \ | |
cargo -Zgitoxide -Zgit build --target-dir target/watch-build --locked --release --bin subspace-farmer --bin subspace-node && \ | |
cargo -Zgitoxide -Zgit nextest run --target-dir target/watch-test --locked --release && \ | |
cargo fmt --all -- --check |
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": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
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": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
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": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
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
found Zcash-supporting relay VSIFskylab (003D78825E0B9609EECFF5E4E0529717772E53C7) weight 8370 nets: main | |
found Zcash-supporting relay typhoon (00860ED5F318D3DF44B380D6C31D3FA7001BA8F1) weight 7570 nets: main | |
found Zcash-supporting relay motauri (01181B31BE5860C7D66DA88F88AD522C06470FD9) weight 630 nets: main | |
found Zcash-supporting relay CheenaTorExit1 (01729F10A81DDD8A92D770B2133082EB56C75E26) weight 3100 nets: main test | |
found Zcash-supporting relay Overjump (01CB2E297A8F586DBBCF98F028A3D1A49B0AB7BA) weight 50 nets: main | |
found Zcash-supporting relay Ubermensch (01F73DBD9B56C31E3D3AAEB95F8CF1DEB7D9A72F) weight 13900 nets: main | |
found Zcash-supporting relay Ragnarok (02930FFEB87968D518101EB79202F1C3766078DA) weight 24100 nets: main test | |
found Zcash-supporting relay paladin (0325B91D3C32D3A24C863D5DFBED00564FAD5C64) weight 10700 nets: main | |
found Zcash-supporting relay turnt (038C30D2AD053147C91EFB1291527ED621D7D1B1) weight 8970 nets: main | |
found Zcash-supporting relay Shockrealm (03EE7DDD931D92BB57B81B3038AE7C40A |
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
import stem.descriptor.remote | |
try: | |
for desc in stem.descriptor.remote.get_consensus(): | |
exit_mainnet = desc.exit_policy.can_exit_to(port=8233) | |
exit_testnet = desc.exit_policy.can_exit_to(port=18233) | |
if exit_mainnet or exit_testnet: | |
print("found Zcash-supporting relay %s (%s) weight %d nets:%s%s" % | |
(desc.nickname, desc.fingerprint, desc.bandwidth, | |
" main" if exit_mainnet else "", |
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
CryptoParty Tor Relay Workshop | |
============================== | |
This document provides instructions for launching a virtual machine and configuring it as a Tor relay | |
These instructions allow you to set up Linux or FreeBSD relays. They cover both IPv4 and IPv6 configuration. | |
The guide was created for the CryptoParty workshop on the 11/10/2016 in Sydney | |
More: https://www.meetup.com/CryptoParty-Sydney/events/234228287/ |