Reverse transcriptase Updated 2025-07-16
Converts RNA to DNA, i.e. the inverse of transcription. Found in viruses such as Retrovirus, which includes e.g. HIV.
Square Updated 2025-07-16
Synchrotron Updated 2025-07-16
Most important application: produce X-rays for X-ray crystallography.
Note however that the big experiments at CERN, like the Large Hadron Collider, are also synchrotrons.
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
Cartesian product Updated 2025-07-16
A function that maps two sets to a third set.
GenBank Updated 2025-07-16
Currently, none of the crucial cross file features like \x, \Include and table of contents are working. I was waiting until the above mentioned features were done, and now I'm going to get to that.
Cross polytope Updated 2025-07-16
Examples: square, octahedron.
Take and flip one of 0's to . Therefore has vertices.
Each edge E is linked to every other edge, except it's opposite -E.
And do 5 big queries instead of hundreds of smaller ones.
For example, a README.ciro document that references another document saying:
The \x[speed-of-light] is fast.
needs to fetch "speed-of-light" from the ID database (previously populated e.g. by preparsing light.ciro:
= Light

== Speed of light
to decide that it should display as "Speed of light" (the title rather than the ID).
Previously, I was doing a separate fetch for each \x[] as they were needed, leading to hundreds of them at different times.
Now I refactored things so that I do very few database queries, but large ones that fetch everything during parsing. And then at render time they are all ready in cache.
This will be fundamental for the live preview on the browser, where the roundtrip to server would make it impossible
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.
RNA secondary structure Updated 2025-07-16
Analogous problem to the secondary structure of proteins. Likely a bit simpler due to the strong tendency for complementary pairs to bind.
Unit circle Updated 2025-07-16
The unitary group is one very over-generalized way of looking at it :-)

Unlisted articles are being shown, click here to show only listed articles.