Skip to content

Instantly share code, notes, and snippets.

@RobertClarke
RobertClarke / block9-supply-450x.json
Last active January 20, 2026 02:43
BITCOIN RARE SAT SUPPLY STATS - 2026-01-19
{
"data": {
"n_total": 100000000,
"n_mined": 100000000,
"n_seq": 14232209,
"n_active_non_seq_1y": 41953958,
"n_active_non_seq_2y": 49690915,
"n_active_non_seq_3y": 54387031,
"n_active_non_seq_4y": 61887820,
"n_active_non_seq_5y": 66901199,
@RobertClarke
RobertClarke / gist:cdf70432a7df63b400d3a4a7b6049a16
Last active August 4, 2020 22:48
Azure Recursively rehydrate files from archive tier in blob storage using Powershell
# Add Auth Credentials
$StorageAccountName="xxx"
$StorageAccountKey="xxx"
$containername = "xxx"
$Ctx = New-AzStorageContext -StorageAccountName $StorageAccountName -StorageAccountKey $StorageAccountKey
#Swap folder1 with your directory of choice. Everything in this directory will be modified to a new BlobTier
$files = Get-AzStorageBlob -Container $ContainerName -Context $ctx -Prefix "folder1"