MIT Radiation Laboratory Updated +Created
Made huge advances in radar.
Notably, Isidor Isaac Rabi was a leading figure there, and later he was head at the Columbia University laboratory that carried out the crucial Lamb-Retherford experiment and the anomalous magnetic dipole moment of the electron published at The Magnetic Moment of the Electron by Kusch and Foley (1948) using related techniques.
k-transitive group Updated +Created
TODO why do we care about this?
Note that if a group is k-transitive, then it is also k-1-transitive.
LLVM IR hello world Updated +Created
Example: llvm/hello.ll adapted from: llvm.org/docs/LangRef.html#module-structure but without double newline.
To execute it as mentioned at github.com/dfellis/llvm-hello-world we can either use their crazy assembly interpreter, tested on Ubuntu 22.10:
sudo apt install llvm-runtime
lli hello.ll
This seems to use puts from the C standard library.
Or we can Lower it to assembly of the local machine:
sudo apt install llvm
llc hello.ll
which produces:
hello.s
and then we can assemble link and run with gcc:
gcc -o hello.out hello.s -no-pie
./hello.out
or with clang:
clang -o hello.out hello.s -no-pie
./hello.out
hello.s uses the GNU GAS format, which clang is highly compatible with, so both should work in general.
Minkowski inner product matrix Updated +Created
Since that is a symmetric bilinear form, the associated matrix is a symmetric matrix.
By default, we will use the time negative representation unless stated otherwise:
but another equivalent one is to use a time positive representation:
The matrix is typically denoted by the Greek letter eta.
Rank of an elliptic curve over the rational numbers Updated +Created
Mordell's theorem guarantees that the rank (number of elements in the generating set of the group) is always well defined for an elliptic curve over the rational numbers. But as of 2023 there is no known algorithm which calculates the rank of any curve!
It is not even known if there are elliptic curves of every rank or not: Largest known ranks of an elliptic curve over the rational numbers, and it has proven extremely hard to find new ones over time.
TODO list of known values and algorithms? The Birch and Swinnerton-Dyer conjecture would immediately provide a stupid algorithm for it.
Quartic equation Updated +Created
ncurses program Updated +Created
Neuron (software) Updated +Created
www.frontiersin.org/articles/10.3389/fninf.2019.00063/fullCoreNEURON: An Optimized Compute Engine for the NEURON Simulator (2019) Merged back into mainstream: github.com/BlueBrain/CoreNeuron
Node.js library Updated +Created
Ackermann function Updated +Created
To get an intuition for it, see the sample computation at: en.wikipedia.org/w/index.php?title=Ackermann_function&oldid=1170238965#TRS,_based_on_2-ary_function where in this context. From this, we immediately get the intuition that these functions are recursive somehow.
Onion service search engine Updated +Created
Operon vs transcription unit Updated +Created
That single operon can produce two different mRNA transcription units:
The reason for this appears to be that there is a rho-independent termination region after thrL. But then under certain conditions, that must get innactivated, and then the thrLABC is produced instead.
Alpha Centauri Updated +Created
Sutta Piṭaka Updated +Created
Big Five personality traits Updated +Created
List of personal knowledge base software Updated +Created
TODO look into those more:
Major downsides that most of those personal knowledge databases have:
  • very little/no focus on public publishing, which is the primary focus of OurBigBook.com
  • either limited or no multiuser features, e.g. edit protection and cross user topics
  • graph based instead of tree based. For books we need a single clear ordering of a tree. Graph should come as a secondary thing through tags.
Closed source dump:
Parsitic hypothesis of mitochondrial endosymbiosis Updated +Created
Opposed to the hydrogen hypothesis, in which both cells cooperated from the start.
Hydrogen hypothesis Updated +Created

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