Skip to content

Instantly share code, notes, and snippets.

View nickhough's full-sized avatar

Nick Hough nickhough

  • Boise, Idaho
View GitHub Profile
@nickhough
nickhough / helium-validator-chain-restart.sh
Last active March 18, 2021 22:10
Helium Validator Chain Restart - For validators built from source
#!/bin/bash
# Validator Restart
echo "\nValidator Restart\n"
cd ~/miner &&
echo "Git Pull.\n" &&
git pull &&
@nickhough
nickhough / helium-validator-update.sh
Last active March 16, 2021 15:25
Helium Validator Update - For validators built from source
#!/bin/bash
echo "\nRunning git pull on helium/miner\n"
cd ~/miner &&
ALREADY_UP_TO_DATE="Already up to date."
GIT_STATUS=$(git pull)
echo "Git Status: $ALREADY_UP_TO_DATE\n"
@nickhough
nickhough / au-states.json
Last active October 20, 2021 19:20
JSON Australian States with Abbreviations
[
{
"name":"New South Wales",
"abbreviation":"NSW"
},
{
"name":"Victoria",
"abbreviation":"VIC"
},
{
@nickhough
nickhough / uk-counties.json
Last active September 18, 2023 15:56
JSON United Kingdom Counties with Abbreviation and Country
[
{
"name":"Avon",
"abbreviation":"AVN",
"country":"England"
},
{
"name":"Bedfordshire",
"abbreviation":"BDF",
"country":"England"