E. Coli K-12 MG1655 promoter Updated 2025-07-16
Bitcoin blockchain
j( upload system Updated 2025-07-16This 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. 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
Bitcoin entrepreneur Updated 2025-12-25
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?
Some notable appearances:
- in 2010, it is where Laszlo's pizzas offer was announced
- it was used e.g. on the Mt. Gox investigation: youtu.be/tJ-TsrK6SuY?t=2018
- Jimmy Zhong's investigation: youtu.be/pxvd1YOMGxU?t=1004
Bitcoin hello world Updated 2025-07-16
- buy some at a cryptocurrency exchange. This is the only viable way of obtaining crypto nowadays, since basically all cryptocurrencies require specialized hardware to mine.
- send it to a self hosted Bitcoin wallet without a full node, e.g. Electrum
- then send something out of the wallet back to the exchange wallet!
- convert the crypto back to cash
Bitcoin inscription method Updated 2025-07-16
Bibliography:
- www.reddit.com/r/BitcoinBeginners/comments/9dlo3w/how_to_write_arbitrary_data_on_the_bitcoin/
- bitcoin.stackexchange.com/questions/73165/how-to-store-arbitrary-data-in-the-bitcoin-blockchain-and-how-can-i-differentiat
- bitcoin.stackexchange.com/questions/32575/what-methods-are-currently-used-to-embed-additional-data-into-the-bitcoin-blockc
Bitcoin mining reward Updated 2025-07-16
Bitcoin non-standard transaction Updated 2025-07-16
Bibliography:Monday, January 29, 2024
- bitcoin.stackexchange.com/questions/5883/is-there-a-listing-of-strange-or-unusual-scripts-found-in-transactions/105392#105392
- bitcoin.stackexchange.com/questions/547/useful-alternative-bitcoin-transaction-scripts
- bitcoin.stackexchange.com/questions/35956/non-standard-tx-with-obscure-op-codes-examples/36037#36037 notably provides the amazing www.quantabytes.com/articles/a-survey-of-bitcoin-transaction-types
Bitcoin script that terminates with multiple values on the stack 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.htmlawk 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 *.txtRemove most of the binary crap:
head -n-1 *.txt | grep -e '[. ]' | grep -iv 'mined by' | less Bitcoin varint Updated 2025-07-16
Implementations:
- Python: github.com/alecalve/python-bitcoin-blockchain-parser/blob/c06f420995b345c9a193c8be6e0916eb70335863/blockchain_parser/utils.py#L41. Sample usage to extract 3 values from a
bytesobject:file, off = decode_varint(value) blk_off, off = decode_varint(value[off:]) tx_off, off = decode_varint(value[off:])
Bitcoin wallet Updated 2025-07-16
Bitcoin wallet without a full node Updated 2025-07-16
Bitcoin whitepaper Updated 2025-07-16
Reuploaded into the blockchain itself: bitcoin.stackexchange.com/questions/35959/how-is-the-whitepaper-decoded-from-the-blockchain-tx-with-1000x-m-of-n-multisi/105574#105574 by using the Satoshi uploader.
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
Bitmessage Updated 2025-07-16
TODO evaluate. No
pip install??? bkill all jobs Updated 2025-07-16
By the current user:
bkill 0 Black-body radiation experiment Updated 2025-07-16
- The Quantum Story by Jim Baggott (2011) page 10 mentions:and the footnote comments:
Early examples of such cavities included rather expensive closed cylinders made from porcelain and platinum.
- 1859-60 Gustav Kirchhoff demonstrated that the ratio of emitted to absorbed energy depends only on the frequency of the radiation and the temperature inside the cavity
- 1896 Wien approximation seems to explain existing curves well
- 1900 expriments by Otto Lummer and Ernst Pringsheim show Wien approximation is bad for lower frequencies
- 1900-10-07 Heinrich Rubens visits Planck in Planck's villa in the Berlin suburb of Grünewald and informs him about new experimental he and Ferdinand Kurlbaum obtained, still showing that Wien approximation is bad
- 1900 Planck's law matches Lummer and Pringsheim's experiments well. Planck forced to make the "desperate" postulate that energy is exchanged in quantized lumps. Not clear that light itself is quantized however, he thinks it might be something to do with allowed vibration modes of the atoms of the cavity rather.
- 1900 Rayleigh-Jeans law derived from classical first principles matches Planck's law for low frequencies, but diverges at higher frequencies.
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.