E. Coli K-12 MG1655 promoter Updated 2025-07-16
From this we see that there is a convention of naming promoters as protein name + p, e.g. the first gene in E. Coli K-12 MG1655 promoter thrLp encodes protein thrL.
It is also possible to add numbers after the p, e.g. at biocyc.org/ECOLI/NEW-IMAGE?type=OPERON&object=PM0-45989 we see that the protein zur has two promoters:
  • zurp6
  • zurp7
TODO why 6 and 7? There don't appear to be 1, 2, etc.
Bitcoin blockchain j( upload system Updated 2025-07-16
This is likely a system that uploads text to the blockchain.
One example can be seen on the Marijuana plant.
Messages are uploaded one line per transaction, and thus may be cut up on the blk.txt, and possibly even out of order.
But because each line starts with j( you can generally piece things up regardless.
TODO identify. The first occurrence seems to be in tx e8c61e29c6b829e289f8d0fc95f9eb2eb00c89c85cfa3a9c700b15805451ae6a:
j(DOCPROOF@?pnvf=!;AG
Bitcoin blockchain parser Updated 2025-07-16
This section is about partial implementations that are only able to read the blocks, ususally coming from Bitcoin Core, to interpret the data:
Bitcoin CLI client Updated 2025-07-16
On Bitcoin Core snap 26.0, the executable is called bitcoin-core.cli rather than bitcoin-cli.
Bitcoin Forum Updated 2025-07-16
Founded by Satoshi Nakamoto, making it the earliest and one of the most important Bitcoin communities. TODO official in any way? Who founded it?
Instance of Simple Machines Forum, an open source, PHP-based forum system.
Some notable appearances:
Bitcoin hello world Updated 2025-07-16
BitcoinStrings.com Updated 2025-07-16
bitcoinstrings.com has all strings -n20 strings, we can obtain the whole thing and clean it up a bit with:
wget -O all.html https://bitcoinstrings.com/all
cp all.html all-recode.html
recode html..ascii all-recode.html
awk '!seen[$0]++' all-recode.html > all-uniq.html
awk to skip the gazillion "mined by message" repeats.
A lot of in that website stuff appears to be cut up at the 20 mark. As shown in Force of Will, this is possibly because they didn't use -w in strings -n20, and the text after the newlines was less than 20 characters.
That website can be replicated by downloading the Bitcoin blockchain locally, then:
cd .bitcoin/blocks
for f in blk*.dat; do strings -n20 -w $f | awk '!seen[$0]++' > ${f%.dat}.txt; done
tail +n1 *.txt
Remove most of the binary crap:
head -n-1 *.txt | grep -e '[. ]' | grep -iv 'mined by' | less
Bitcoin varint Updated 2025-07-16
Implementations:
Bitcoin whitepaper Updated 2025-07-16
Released by Satoshi Nakamoto on the early mailing list discussions where Bitcoin was announced.
More conveniently available on bitcoin.org: bitcoin.org/bitcoin.pdf nowadays, except when it was down for a few years due to our master Craig Steven Wright.
bit gold Updated 2025-07-16
bkill all jobs Updated 2025-07-16
By the current user:
bkill 0
Black-body radiation experiment Updated 2025-07-16
Video 1.
Black-body Radiation Experiment by sciencesolution (2008)
Source. A modern version of the experiment with a PASCO scientific EX-9920 setup.

There are unlisted articles, also show them or only show them.