BioCyc promoter database Updated 2025-07-16
E.g. for E. Coli K-12 MG1655: biocyc.org/group?id=:ALL-PROMOTERS&orgid=ECOLI For some context see e. Coli K-12 MG1655 gene thrL + e. Coli K-12 MG1655 gene thrA + thrB + thrC all of which are in the same transcription unit.
Bisection (software engineering) Updated 2025-07-16
One of the Holiest age old debugging techniques!
Git has some helpers to help you achieve bisection Nirvana: stackoverflow.com/questions/4713088/how-to-use-git-bisect/22592593#22592593
Obviously not restricted to software engineering alone, and used in all areas of engineering, e.g. Video "Air-tight vs. Vacuum-tight by AlphaPhoenix (2020)" uses it in vacuum engineering.
for loop Updated 2025-07-16
One theoretical motivation for its existence is that it has the fundamental property that we are immediately certain it will terminate, unlike while loops with arbitrary conditions.
Primitive recursive functions are the complexity class that divides those two.
Real coordinate space of dimension four Updated 2025-07-16
RE (complexity) Updated 2025-07-16
Condensed matter university course Updated 2025-07-16
Multiplication Updated 2025-07-16
Quantum mechanics experiment Updated 2025-07-16
Atoms exist and last for a long time, while in classical electromagnetic theory punctual orbiting electrons should emit radiation quickly and fall into the nucleus: physics.stackexchange.com/questions/20003/why-dont-electrons-crash-into-the-nuclei-they-orbit
In other sections:
Bibliography:
Regulate the fuck out of advertising Updated 2025-07-16
It should be illegal to give someone money to advertise your product.
We should just use tags and upvote-based algorithms.
TODO find Sergey Brin quote bout advertising being a form of perverting search engine ranking neutrality. In other words, there are neutral metrics to what people find good, like links and upvotes. And then advertising is a way to pervert that to someone's profit.
Sometimes Ciro Santilli thinks advertising should be on-subscription only, but that is too restrictive, e.g. imagine the local business owner who wears a t-shirt of their business.
Replacement of master and slave terminology from technology Updated 2025-07-16
The IETF was a notable one: www.nytimes.com/2021/04/13/technology/racist-computer-engineering-terms-ietf.html
- developers.google.com/style/word-list (archive) Google's avoid word list is a masterclass in 2020's political correctness
HIV Updated 2025-07-16
Messenger RNA Updated 2025-07-16
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.
Ridiculous cases of political correctness censorship Updated 2025-07-16
- Stack Exchange's censorship of "I think Trump is disgusting as a person" from Ciro Santilli's profile: cirosantilli.com/china-dictatorship/sstack-overflow-forbids-criticizing-the-character-of-genocidal-political-leaders-like-xi-jinping
Four-momentum Updated 2025-07-16
Fundamental theorem on homomorphisms Updated 2025-07-16
Pretty Much Physics Updated 2025-07-16
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.
List of facilities: en.wikipedia.org/wiki/List_of_synchrotron_radiation_facilities
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 Unlisted articles are being shown, click here to show only listed articles.
