Skip to content

Instantly share code, notes, and snippets.

View gsxryan's full-sized avatar
🏍️

Ryan Curtis gsxryan

🏍️
  • TurboMyPC
  • Central USA
View GitHub Profile
@gsxryan
gsxryan / VeriBlockPoolList.txt
Last active November 20, 2019 06:37
Public Veriblock Mainnet Pools veriblock.turbomypc.com
Name, Address, Port
VeriBlock GPU, devpool-gpu.veriblock.org, 8500
DabPool, vbk.dabpool.com, 8500
LuckyPool, veriblock.luckypool.io, 8500
SteadyHash, us-vbk.steadyhash.org, 8500
TheDreadPool, vbk.thedreadpool.eu, 8500
@gsxryan
gsxryan / Migrate-Nodecore.ps1
Last active September 19, 2018 22:14
Unofficial - Veriblock Nodecore-all Migration - Upgrade
<#
Veriblock Update Script
Bounty 4002.2
Veriblock Telegram KernelPanick
Managed on Github Gist source:
https://gist.github.com/gsxryan/6da7fab06e038817a400cb09c0e6cdcf
Usage:
powershell.exe -executionpolicy bypass "./Migrate-Nodecore -oldpath 'C:\Old\Install\Folder' -newpath 'C:\New\Install\Folder'"}
@gsxryan
gsxryan / Ping-VBpools.ps1
Last active December 20, 2018 20:22
VeriBlock Public Pool Pinger - PowerShell
<#
Veriblock Public Pools Pinger
Veriblock Telegram KernelPanick
Managed on Github Gist source:
https://gist.github.com/gsxryan/13390725dcadf08b727dc3571743ae0a
Purpose:
Tests each of the current active pools listed on the Dashboard veriblock.turbomypc.com and reports the best ping to your worker
Usage:
@gsxryan
gsxryan / Install-Nodecore.ps1
Last active December 27, 2018 21:25
Windows Automated Install for Veriblock Nodecore
<#
Veriblock Install Script
Veriblock Telegram KernelPanick
Managed on Github gist https://gist.github.com/gsxryan/20795e55d1e8ef079e42062656cc7eea
Usage:
powershell.exe -executionpolicy bypass "./Install-NodeCore.ps1"}
Purpose:
Write a NodeCore Installation Script (windows)
@gsxryan
gsxryan / SuccessRates.sh
Last active July 28, 2019 18:31
StorJ V3 Node Success Rates Calculation
#A StorJ node monitor script by turbostorjdsk / KernelPanick
#Node Success Rates
#count of unrecoverable failed audits
audit_failed_crit=$(sudo docker logs storagenode 2>&1 | grep GET_AUDIT | grep failed | grep open -c)
if [ $audit_failed_crit -ge 1 ]
then echo CRITICAL: Unrecoverable Failed Audits: $audit_failed_crit
fi
#count of recoverable failed audits`
audit_failed_warn=$(sudo docker logs storagenode 2>&1 | grep GET_AUDIT | grep failed | grep -v open -c)