# on receiving block 952634 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-06-06T17:31:17Z
# as written in the block header
2026-06-06T17:30:55Z

$ uptime   # since last reboot
 17:31:17 up 79 days,  8:24,  0 users,  load average: 3.18, 2.71, 2.54

$ battery.sh
156%, Power Supply Online

$ uname -smnr
Linux singer 6.18.2-0-lts x86_64

$ grep ^MemAvailable /proc/meminfo
MemAvailable:    1417236 kB

$ du -h -d1 .bitcoin/
12.3G	.bitcoin/indexes
4.6G	.bitcoin/signet
2.7M	.bitcoin/wallets
97.8G	.bitcoin/blocks
18.6M	.bitcoin/regtest
10.6G	.bitcoin/chainstate
125.5G	.bitcoin/

$ df -h .
Filesystem                Size      Used Available Use% Mounted on
/dev/sda3               911.4G    434.8G    475.7G  48% /

$ bitcoind -version
Bitcoin Core daemon version v31.0.0rc4 bitcoind
Copyright (C) 2009-2026 The Bitcoin Core developers

Please contribute if you find Bitcoin Core useful. Visit
<https://bitcoincore.org/> for further information about the software.
The source code is available from <https://github.com/bitcoin/bitcoin>.

This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING
or <https://opensource.org/license/MIT>

$ BC=$(bitcoin-cli getblockcount); echo $BC
952634

$ BH=$(bitcoin-cli getblockhash 952634); echo $BH
000000000000000000013d698d46e50d66dde17b9b53a6258b2191d6527cb0ec

$ bitcoin-cli getblockheader 000000000000000000013d698d46e50d66dde17b9b53a6258b2191d6527cb0ec
{
  "hash": "000000000000000000013d698d46e50d66dde17b9b53a6258b2191d6527cb0ec",
  "confirmations": 1,
  "height": 952634,
  "version": 685563904,
  "versionHex": "28dce000",
  "merkleroot": "c75da459abb378579939d101470b5aada52920d61284693432b4ab95bd28a6e2",
  "time": 1780767055,
  "mediantime": 1780762967,
  "nonce": 1354245431,
  "bits": "1702068f",
  "target": "00000000000000000002068f0000000000000000000000000000000000000000",
  "difficulty": 138955357012247.3,
  "chainwork": "00000000000000000000000000000000000000012ddb536a640d32e9e9fe0f46",
  "nTx": 3505,
  "previousblockhash": "000000000000000000009e54d66de03242c5bba3bdcda9cd97bfeb1442cf5aac"
}


$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 3d69 8d46 e5.d
66dd e17b 9b53 a625
8b21 91d6 527c b.ec

$ : Following was the shortform
$ : from which shortkode came
$ last=${BH: -4}
$ a=$(echo $BH | cut -b-60 \
  | fold -w 4 \
  | grep -Ev '^(0000|[^0]{4})$')
$ R=$(echo $a $last | cut -b-20)
$ printf "%s sf: " $BC
$ { echo $R | grep "$last$" \
  || echo $R M; } | tr "0\n" ". "
  echo
952634 sf: ...1 e5.d b.ec 

$ : Following was the shortkode
$ : from which anecdote came
$ nz=$(echo $BH | fold -w 4 \
  | grep -cE '^[^0]{4}$')
$ z=$(echo $BH | fold -w 4 \
  | grep -c '^0000$')
$ nzzs=$(((${nz}<<4)+${z}))
$ printf "%s sk: " $BC
$ printf "%s %x\n" \
    $last \
    $nzzs \
    | tr 0 .
952634 sk: b.ec 94

$ : Following is an anecdote
$ all=$(echo $BH | fold -w 4 \
    | sed 's/^/0x/' \
    | paste -s | tr '\t' ^)
$ printf "%s ak: " $BC
$ printf "%04x %02x\n" \
    $(($all)) $nzzs \
    | tr 0 .
952634 ak: 1794 94

$ : Following is the jointkode
952634 jk: b0ec 1794 94

### niceblack moved to the end

$ bitcoin-cli getmempoolinfo
{
  "loaded": true,
  "size": 109467,
  "bytes": 45269630,
  "usage": 262910584,
  "total_fee": 0.10523126,
  "maxmempool": 300000000,
  "mempoolminfee": 0.00000100,
  "minrelaytxfee": 0.00000100,
  "incrementalrelayfee": 0.00000100,
  "unbroadcastcount": 57,
  "fullrbf": true,
  "permitbaremultisig": true,
  "maxdatacarriersize": 100000,
  "limitclustercount": 64,
  "limitclustersize": 101000,
  "optimal": true
}

$ gmm.sh
232

## Current epoch estimation is -4.54%
## 1082 of 2016, i.e. 53%, 934 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.492579997192812e+20
$ bitcoin-cli getnetworkhashps 2016 951551
9.944499015556698e+20
$ bitcoin-cli getnetworkhashps 2016 949535
9.770940180508523e+20

$ bitcoin-cli gettxoutsetinfo muhash
{
  "height": 952634,
  "bestblock": "000000000000000000013d698d46e50d66dde17b9b53a6258b2191d6527cb0ec",
  "txouts": 165585464,
  "bogosize": 12971236642,
  "muhash": "226df8d0b8abf3e7810cdd2abff377a0508e4b0a998b2564110e171963efa290",
  "total_amount": 20039254.27672348,
  "total_unspendable_amount": 230.09827652,
  "block_info": {
    "prevout_spent": 3520.82478140,
    "coinbase": 3.15254177,
    "new_outputs_ex_coinbase": 3520.79723963,
    "unspendable": 0.00000000,
    "unspendables": {
      "genesis_block": 0.00000000,
      "bip30": 0.00000000,
      "scripts": 0.00000000,
      "unclaimed_rewards": 0.00000000
    }
  }
}

$ bitcoin-cli getblockstats 952634
{
  "avgfee": 786,
  "avgfeerate": 2,
  "avgtxsize": 453,
  "blockhash": "000000000000000000013d698d46e50d66dde17b9b53a6258b2191d6527cb0ec",
  "feerate_percentiles": [
    1,
    2,
    2,
    3,
    4
  ],
  "height": 952634,
  "ins": 7940,
  "maxfee": 118488,
  "maxfeerate": 93,
  "maxtxsize": 59047,
  "medianfee": 339,
  "mediantime": 1780762967,
  "mediantxsize": 222,
  "minfee": 0,
  "minfeerate": 0,
  "mintxsize": 150,
  "outs": 8389,
  "subsidy": 312500000,
  "swtotal_size": 1385901,
  "swtotal_weight": 3173613,
  "swtxs": 3311,
  "time": 1780767055,
  "total_out": 352079723963,
  "total_size": 1590435,
  "total_weight": 3991749,
  "totalfee": 2754177,
  "txs": 3505,
  "utxo_increase": 449,
  "utxo_size_inc": 29074,
  "utxo_increase_actual": -772,
  "utxo_size_inc_actual": -59065
}

$ bitcoin-cli getnettotals
{
  "totalbytesrecv": 13040869352,
  "totalbytessent": 30928303118,
  "timemillis": 1780767078330,
  "uploadtarget": {
    "timeframe": 86400,
    "target": 0,
    "target_reached": false,
    "serve_historical_blocks": true,
    "bytes_left_in_cycle": 0,
    "time_left_in_cycle": 0
  }
}

$ bitcoin-cli -netinfo
Bitcoin Core client v31.0.0rc4 - server 70016/Satoshi:31.0.0/

         ipv4     npr   total   block
in         15       1      16
out        10       0      10       2
total      25       1      26

Local services: witness, compact filters, network limited, p2p v2

Local addresses: n/a


$ bitcoin-cli -addrinfo
{
  "addresses_known": {
    "ipv4": 70453,
    "ipv6": 0,
    "onion": 0,
    "i2p": 0,
    "cjdns": 0,
    "total": 70453
  }
}

$ halving.sh 952634
=====================================
  Bitcoin Block Halving prediction
=====================================

bc=952634
gbt=1231006505
bbt=1780767055

This is average time to mine a block
(1780767055-1231006505)/952634
bts=577.0946375054454224335658

Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Sat Mar 18 01:40:51 UTC 2028

-------------------------------------
Next palindrome will be 953359
predicted to happen at this time:
Thu Jun 11 13:44:08 UTC 2026

-------------------------------------
Current mining epoch number is 472.
The next fortnight happens in block
953568 and probably around this time:
Fri Jun 12 23:14:21 UTC 2026

### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
      8     "transport_protocol_type": "v2",

$ bitcoin-cli getpeerinfo \
    | jq -r '.[]
      | select ( .transport_protocol_type == "v2" )
      | .addr + " " + .session_id' \
    | while read addr sid
      do
        a=$(echo ${addr%\]*} | tr -d '\[' | md5sum | cut -b-16);
        printf "%s\n\t%s\n" "$a" "$sid"
      done

84608400b0618562
	7af1f5e36df042df722c4e6516461e5e0547d35e006641145b12d3f789d981f4
6638298e20abe30a
	dc557bb87cb755b17fa5ab23bb2df72b27a2f63e5e2631fd5ae524ec0ce7ce34
a36e34210a5cc0a3
	81dc8ee6128d747f86eb0d78229414e273d4144cfbdd4b11bcf01333d2748ba5
1aec1bac4b0eebf2
	c7769ee2db44df50a290278b4db982ffa53feefdb2526c7cc24861d052967304
73de5eebc05742a6
	c937a9b2936eef93005a904c4b3967eaf4927361fd9dde6276dbfcd363eff34d
86f6fa06256969ae
	d675402e1cd8f01ed7f6e6607a23eb91e817de9701bbde48bd69fb924677ce06
9b16af95296382dc
	5f5a5519c59dbabd4444631d052eaa1903dcf89f3c3c0f4529ce343601dc2c7b
fa2af8ad07202d1d
	2de8a64aeca5e9c88580518f33b303e320ed9b71a98a8bb0c5d3bf5883535cfa


$ niceblack.sh $BH $BC

     _|_|    _|_|_|_|    _|_|    
   _|    _|  _|        _|    _|  
     _|_|_|  _|_|_|        _|    
         _|        _|    _|      
   _|_|_|    _|_|_|    _|_|_|_|  

     _|_|_|  _|_|_|    _|  _|    
   _|              _|  _|  _|    
   _|_|_|      _|_|    _|_|_|_|  
   _|    _|        _|      _|    
     _|_|    _|_|_|        _|    

  ,----- .123 4567 89ab cdef -----,
  |                               |
  | ..   .... .... .... ....   .f |
  | 1.   ...1 3d69 8d46 e5.d   1f |
  | 2.   66dd e17b 9b53 a625   2f |
  | 3.   8b21 91d6 527c b.ec   3f |
  '===   ==== ==== ==== ====   ==='
   jk:   b.ec 1794 94