# on receiving block 955364 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-06-25T17:29:58Z
# as written in the block header
2026-06-25T17:29:42Z

$ uptime   # since last reboot
 17:29:58 up  8:24,  0 users,  load average: 1.47, 1.19, 1.00

$ battery.sh
100%, Power Supply Online

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

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

$ du -h -d1 .bitcoin/
12.3G	.bitcoin/indexes
4.6G	.bitcoin/signet
2.6M	.bitcoin/wallets
97.7G	.bitcoin/blocks
18.6M	.bitcoin/regtest
10.6G	.bitcoin/chainstate
125.4G	.bitcoin/

$ df -h .
Filesystem                Size      Used Available Use% Mounted on
/dev/sda3               911.4G    434.8G    475.6G  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
955364

$ BH=$(bitcoin-cli getblockhash 955364); echo $BH
0000000000000000000187faf1018951c79436f56e628935251db6fb73b86d6c

$ bitcoin-cli getblockheader 0000000000000000000187faf1018951c79436f56e628935251db6fb73b86d6c
{
  "hash": "0000000000000000000187faf1018951c79436f56e628935251db6fb73b86d6c",
  "confirmations": 1,
  "height": 955364,
  "version": 537067520,
  "versionHex": "20030000",
  "merkleroot": "37bd969da3cbb8b0ccb224be5b3c1560ed91035f580f5cc07863e3dc2ea9208c",
  "time": 1782408582,
  "mediantime": 1782404729,
  "nonce": 3057630925,
  "bits": "170240c3",
  "target": "0000000000000000000240c30000000000000000000000000000000000000000",
  "difficulty": 124932866006548.2,
  "chainwork": "000000000000000000000000000000000000000132c5899d23260f5d7647c7b9",
  "nTx": 4205,
  "previousblockhash": "000000000000000000002c9140f247e08db3a9679f35e01e09e516034a48a4a1"
}


$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 87fa f1.1 8951
c794 36f5 6e62 8935
251d b6fb 73b8 6d6c

$ : 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
955364 sf: ...1 f1.1 6d6c 

$ : 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 .
955364 sk: 6d6c a4

$ : 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 .
955364 ak: 64af a4

$ : Following is the jointkode
955364 jk: 6d6c 64af a4

### niceblack moved to the end

$ bitcoin-cli getmempoolinfo
{
  "loaded": true,
  "size": 25944,
  "bytes": 8088706,
  "usage": 43694064,
  "total_fee": 0.06538350,
  "maxmempool": 300000000,
  "mempoolminfee": 0.00000100,
  "minrelaytxfee": 0.00000100,
  "incrementalrelayfee": 0.00000100,
  "unbroadcastcount": 0,
  "fullrbf": true,
  "permitbaremultisig": true,
  "maxdatacarriersize": 100000,
  "limitclustercount": 64,
  "limitclustersize": 101000,
  "optimal": true
}

$ gmm.sh
808

## Current epoch estimation is +6.45%
## 1796 of 2016, i.e. 89%, 220 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.516819370584373e+20
$ bitcoin-cli getnetworkhashps 2016 953567
8.939523168672514e+20
$ bitcoin-cli getnetworkhashps 2016 951551
9.944499015556698e+20

$ bitcoin-cli gettxoutsetinfo muhash
{
  "height": 955364,
  "bestblock": "0000000000000000000187faf1018951c79436f56e628935251db6fb73b86d6c",
  "txouts": 165974999,
  "bogosize": 12999789947,
  "muhash": "1a6ef224afca56b8d9076bf75b6c0bf0983a497602d4310e6683408bcbd16972",
  "total_amount": 20047785.51466005,
  "total_unspendable_amount": 230.11033995,
  "block_info": {
    "prevout_spent": 14678.15186029,
    "coinbase": 3.17723081,
    "new_outputs_ex_coinbase": 14678.09962948,
    "unspendable": 0.00000000,
    "unspendables": {
      "genesis_block": 0.00000000,
      "bip30": 0.00000000,
      "scripts": 0.00000000,
      "unclaimed_rewards": 0.00000000
    }
  }
}

$ bitcoin-cli getblockstats 955364
{
  "avgfee": 1242,
  "avgfeerate": 5,
  "avgtxsize": 389,
  "blockhash": "0000000000000000000187faf1018951c79436f56e628935251db6fb73b86d6c",
  "feerate_percentiles": [
    1,
    2,
    3,
    4,
    6
  ],
  "height": 955364,
  "ins": 7943,
  "maxfee": 249900,
  "maxfeerate": 477,
  "maxtxsize": 64232,
  "medianfee": 500,
  "mediantime": 1782404729,
  "mediantxsize": 222,
  "minfee": 0,
  "minfeerate": 0,
  "mintxsize": 150,
  "outs": 11104,
  "subsidy": 312500000,
  "swtotal_size": 1562865,
  "swtotal_weight": 3702213,
  "swtxs": 3973,
  "time": 1782408582,
  "total_out": 1467809962948,
  "total_size": 1636207,
  "total_weight": 3995581,
  "totalfee": 5223081,
  "txs": 4205,
  "utxo_increase": 3161,
  "utxo_size_inc": 234703,
  "utxo_increase_actual": 2162,
  "utxo_size_inc_actual": 160315
}

$ bitcoin-cli getnettotals
{
  "totalbytesrecv": 191923830,
  "totalbytessent": 356055708,
  "timemillis": 1782408599315,
  "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   total   block
in         14      14
out        10      10       2
total      24      24

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

Local addresses: n/a


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

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

bc=955364
gbt=1231006505
bbt=1782408582

This is average time to mine a block
(1782408582-1231006505)/955364
bts=577.1637824287052592464660

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

-------------------------------------
Next palindrome will be 955559
predicted to happen at this time:
Sat Jun 27 00:45:28 UTC 2026

-------------------------------------
Current mining epoch number is 473.
The next fortnight happens in block
955584 and probably around this time:
Sat Jun 27 04:45:58 UTC 2026

### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
      9     "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

b0265499fe63fbac
	0d95a79b0c5e7011aabe977dfeb813e363e5b86ef90638c932a9c15f0599b5a9
157efba16f6a0113
	d40175815edaed7ca8c6fe8ed822c9a78ecdd697e4685673a7a127b63a6689dd
f5bb70896a636fcd
	9fed19035d79e89c2663836b4ff3d3eee330ed8dfcd4fc89004f438b7c0af2db
d8319943296c3653
	476914b67f537348797ced17ad88393600bd30f0e911eb4543c0b287a3806820
5cbe4c270c2c8668
	7db1d99c138b08079e0bd45021f7c2abe2764d6c2e11733dd48132f342200126
1fe93c760a32122e
	21082ad96cedc0ea145f3f446047b9bdee48aac7ea8ceef5eaed5d034c2347ae
78f8241f35fbf41b
	01b97a218c30ef5ca19fd9799d08dcce0aede59059de1d89b193220fe5c977db
b7a978c7ce7e2ac4
	74b13cc37fb457361b8d091eeb0f3e0a13e8c6e1b4bd062b58ae9e8e4c4a1699
90cf7bd9e346bd74
	30d32c13774f45e2e541b7573dba0d3d7f224e5837e7853254fa3e45c3a48a4f


$ niceblack.sh $BH $BC
         |    |          |   
          _ \ |  _ \  _| | / 
        _.__/_|\___/\__|_\_\ 

      _ \ __| __|__ /  /   | |  
    \_  /__ \__ \ _ \  _ \__ _| 
      _/ ___/___/___/\___/  _|  

  ,----- .123 4567 89ab cdef -----,
  |                               |
  | ..   .... .... .... ....   .f |
  | 1.   ...1 87fa f1.1 8951   1f |
  | 2.   c794 36f5 6e62 8935   2f |
  | 3.   251d b6fb 73b8 6d6c   3f |
  '===   ==== ==== ==== ====   ==='
   jk:   6d6c 64af a4