List of books Updated 2025-07-16
List of nuclear weapons Updated 2025-07-16
List of version control systems Updated 2025-07-16
LLVM IR hello world Updated 2025-07-16
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:This seems to use
sudo apt install llvm-runtime
lli hello.ll
puts
from the C standard library.Or we can Lower it to assembly of the local machine:which produces:and then we can assemble link and run with gcc:or with clang:
sudo apt install llvm
llc hello.ll
hello.s
gcc -o hello.out hello.s -no-pie
./hello.out
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. LLVM IR vs C Updated 2025-07-16
Local symmetries of the Lagrangian imply conserved currents Updated 2025-07-16
More precisely, each generator of the corresponding Lie algebra leads to one separate conserved current, such that a single symmetry can lead to multiple conserved currents.
This is basically the local symmetry version of Noether's theorem.
Then to maintain charge conservation, we have to maintain local symmetry, which in turn means we have to add a gauge field as shown at Video "Deriving the qED Lagrangian by Dietterich Labs (2018)".
Bibliography:
- photonics101.com/relativistic-electrodynamics/gauge-invariance-action-charge-conservation#show-solution has a good explanation of the Gauge transformation. TODO how does that relate to symmetry?
- physics.stackexchange.com/questions/57901/noether-theorem-gauge-symmetry-and-conservation-of-charge
London Updated 2025-07-16
Yung Professional Move to London by Sans Beanstalk
. Source. The sad thing is that the same author also has another accurate video criticizing British suburbia, so there's no escape basically in the UK: www.youtube.com/watch?v=oIJuZbXLZeY.
Video "Being a Dickhead's Cool by Reuben Dangoor (2010)" also comes to mind.
Loop (topology) Updated 2025-07-16
Lord of the Rings character Updated 2025-07-16
Lorentz covariance Updated 2025-07-16
Same motivation as Galilean invariance, but relativistic version of that: we want the laws of physics to have the same form on all inertial frames, so we really want to write them in a way that is Lorentz covariant.
This is just the relativistic version of that which takes the Lorentz transformation into account instead of just the old Galilean transformation.
Lorentz gauge condition Updated 2025-07-16
E.g. thinking about the electric potential alone, you could set the zero anywhere, and everything would remain be the same.
The Lorentz gauge is just one such choice. It is however a very popular one, because it is also manifestly Lorentz invariant.
Lorentz transformation Updated 2025-07-16
The equation that allows us to calculate stuff in special relativity!
Take two observers with identical rules and stopwatch, and aligned axes, but one is on a car moving at towards the direction at speed .
When both observe an event, if we denote:It is of course arbitrary who is standing and who is moving, we will just use the term "standing" for the one without primes.
- the observation of the standing observer
- the observation of the ending observer on a car
Note that if tends towards zero, then this reduces to the usual Galilean transformations which our intuition expects:
Freedom of speech Updated 2025-07-16
For Ciro Santilli's campaign for freedom of speech in China: Section "github.com/cirosantilli/china-dictatorship".
Ciro has the radical opinion that absolute freedom of speech must be guaranteed by law for anyone to talk about absolutely anything, anonymously if they wish, with the exception only of copyright-related infringement.
And Ciro believes that there should be no age restriction of access to any information.
People should be only be punished for actions that they actually do in the real world. Not even purportedly planning those actions must be punished. Access and ability to publish information must be completely and totally free.
If you don't like someone, you should just block them, or start your own campaign to prepare a counter for whatever it is that they are want to do.
This freedom does not need to apply to citizens and organizations of other countries, only to citizens of the country in question, since foreign governments can create influence campaigns to affect the rights of your citizens. More info at: cirosantilli.com/china-dictatorship/mark-government-controlled-social-media
Limiting foreign influence therefore requires some kind of nationality check, which could harm anonymity. But Ciro believes that almost certainly such checks can be carried out in anonymous blockchain consensus based mechanisms. Governments would issues nationality tokens, and tokens are used for anonymous confirmations of rights in a way that only the token owner, not even the government, can determine who used the token. E.g. something a bit like what Monero does. Rights could be checked on a once per account basis, or yearly basis, so transaction costs should not be a big issue. Maybe expensive proof-of-work systems can be completely bypassed to the existence of this central token authority?
Some people believe that freedom of speech means "freedom of speech that I agree with". Those people should move to China or some other dictatorship.
Free university Updated 2025-07-16
Related projects:
- freeuniversitybrighton.org/
Free University Brighton has been working since 2012 to provide an alternative and for the last five years we’ve been running ‘freegrees’. These are University level courses, open to all regardless of qualification. Our courses range from 4 week long introductory courses aimed at First Years (people who have never been to University before) to 12-week long Humanities, Social Sciences and Philosophy courses that rival anything in a ‘traditional’ University. We do this all with no money exchanged anywhere - no fees, no debt.
Shut up and show us the courses.
Frobenius theorem (real division algebras) Updated 2025-07-16
Notably, the octonions are not associative.
From first principles Updated 2025-07-16
Los Alamos From Below by Richard Feynman (1975) Updated 2025-07-16
Amazing talk by Richard Feynman that describes his experiences at Los Alamos National Laboratory while developing the first nuclear weapons.
Transcript: calteches.library.caltech.edu/34/3/FeynmanLosAlamos.htm Also included full text into Surely You're Joking, Mr. Feynman.
- www.youtube.com/watch?v=uY-u1qyRM5w&t=2881s describes the computing aspects. Particularly interesting is the quote about how they used the typist secretary pool to emulate the IBM machines and debug their programs before the machines had arrived. This is exactly analogous to what is done in 2020 in the semiconductor industry, where slower models are used to estimate how future algorithms will run in future hardware.
GF(4) Updated 2025-07-16
Ciro Santilli tried to add this example to Wikipedia, but it was reverted, so here we are, see also: Section "Deletionism on Wikipedia".
This is a good first example of a field of a finite field of non-prime order, this one is a prime power order instead.
, so one way to represent the elements of the field will be the to use the 4 polynomials of degree 1 over GF(2):
Note that we refer in this definition to anther field, but that is fine, because we only refer to fields of prime order such as GF(2), because we are dealing with prime powers only. And we have already defined fields of prime order easily previously with modular arithmetic.
Without modulo, that would not be one of the elements of the field anymore due to the !
So we take the modulo, we note that:and by the definition of modulo:which is the final result of the multiplication.
Git design rationale Updated 2025-07-16
The fundamental insight of Git design is: a SHA represents not only current state, but also the full history due to the Merkle tree implementation, see notably:
This makes it so that you will always notice if you are overwriting history on the remote, even if you are developing from two separate local computers (or more commonly, two people in two different local computers) and therefore will never lose any work accidentally.
It is very hard to achieve that without the Merkle tree.
Consider for example the most naive approach possible of marking versions with consecutive numbers:
GitHub's replacement of
master
branch with main
(2020) Updated 2025-07-16By GitHub around Black Lives Matter, due to a possible ludicrous relationship with slavery of black people:
For the love of God, the word "master" is much more general than black slavery. If you are going to ban it, you might as well ban the word "evil".
There are unlisted articles, also show them or only show them.