https://nostrcheck.girino.org/media/21d3a6098873b872f4d028b309462922e793875d5e5c478f99ad9756e3ef3e9d.jpeg
Sofia Loren and Jayne Mansfield (1957)
Julie Bowen and Sofia Vergara (2014)
Maude Apatow and Sydney Sweeney (2021)
Ana De Armas and Sydney Sweeney (2025)
Source: https://web.facebook.com/photo/?fbid=122182102190542272&set=a.122108484968542272
i made a blockchain in under 20 lines of bash. here it is. you can store arbitratry messages in this blockchain. it adds 4 bit of pow for each message.
# usage ./list.sh "message"
f=list.txt
maxlen=100
hashp=""
while [ "`echo "$hashp" | cut -c -1`" != "0" ]
do
let n++
hashp=`(echo "$(tail -n 1 $f | cut -c -500)$n" ) | shasum -a 256 | grep -Po "^\S+"`
done
hashc=$(echo "$@" | shasum -a 256 | grep -Po "^\S+")
c=$( tail -n $maxlen $f; echo "$hashp $hashc $n $@" )
echo "$c" | tee $f