"Barys" means "heavy" in Greek, because protons and neutrons was what made most of the mass of known ordinary matter, as opposed notably to electrons.
Baryons can be contrasted with:
- mesons, which have an even number of elementary particles. The name meson comes from "medium" since their most common examples have two quarks rather than three as the most common baryons such as protons. So they have less mass than a proton, but more than an electron, this medium mass.
- leptons, which are much lighter particles such as the electron. "Leptos" means "fine, small, thin".
Is it the same as Zartman Ko experiment? TODO find the relevant papers.
Login without password: askubuntu.com/questions/915585/how-to-login-mysql-shell-when-mysql-have-no-passwordworks on Ubuntu 20.10.
sudo mysql
Create user for further logins without
sudo
askubuntu.com/questions/915585/how-to-login-mysql-shell-when-mysql-have-no-password/1325689#1325689:sudo mysql -e "CREATE USER $USER"
Run command from CLI stackoverflow.com/questions/1602904/how-do-you-run-a-single-query-through-mysql-from-the-command-line
mysql -e 'SHOW DATABASES'
Create test user with password:and login as that user:Login with password given on the command line:The
sudo mysql -e 'CREATE USER user0 IDENTIFIED WITH mysql_native_password BY "a"'
sudo mysql -e 'GRANT ALL PRIVILEGES ON database_name.* TO "user0"'
mysql -u user0 -p
mysql -u user0 -pmypassword
IDENTIFIED WITH mysql_native_password
part is to overcome "Client does not support authentication protocol requested by server" when connecting from Node.js.List users:
sudo mysql -e 'SELECT * FROM mysql.user'
View permissions for each user on each DB: serverfault.com/questions/263868/how-to-know-all-the-users-that-can-access-a-database-mysql
sudo mysql -e 'SELECT * FROM mysql.db'
List databases:
sudo mysql -e 'SHOW DATABASES'
Create database:
sudo mysql -e 'CREATE DATABASE mydb0'
Destroy database:
sudo mysql -e 'DROP DATABASE mydb0'
Show tables in database:or:
sudo mysql -e 'SHOW TABLES' mydb0
sudo mysql -e 'SHOW TABLES FROM mydb0'
Basic component in spintronics, used in both giant magnetoresistance
Bibliography:
- en.wikipedia.org/wiki/Speed_of_light#First_measurement_attempts Rømer and Christiaan Huygens reached 26% accuracy by the observation of Jupiter's moon!
Schrödinger equation solution for the hydrogen molecule by Ciro Santilli 34 Updated 2024-12-15 +Created 1970-01-01
Can we make any ab initio predictions about it all?
A 2016 paper: aip.scitation.org/doi/abs/10.1063/1.4948309
These are also required for test tube replication.
Quantum Mechanical View of Reality by Richard Feynman (1983) by Ciro Santilli 34 Updated 2024-12-15 +Created 1970-01-01
Sample playlist: www.youtube.com/playlist?list=PLW_HsOU6YZRkdhFFznHNEfua9NK3deBQy
Basically the same content as: Richard Feynman Quantum Electrodynamics Lecture at University of Auckland (1979), but maybe there is some merit to this talk, as it is a bit more direct in some points. This is consistent with what is mentioned at www.feynman.com/science/qed-lectures-in-new-zealand/ that the Auckland lecture was the first attempt.
Some more information at: iucat.iu.edu/iub/5327621
By Mill Valley, CA based producer "Sound Photosynthesis", some info on their website: sound.photosynthesis.com/Richard_Feynman.html
They are mostly a New Age production company it seems, which highlights Feynman's absolute cult status. E.g. on the last video, he's not wearing shoes, like a proper guru.
Feynman liked to meet all kinds of weird people, and at some point he got interested in the New Age Esalen Institute. Surely You're Joking, Mr. Feynman this kind of experience a bit, there was nude bathing on a pool that oversaw the sea, and a guy offered to give a massage to the he nude girl and the accepted.
youtu.be/rZvgGekvHest=5105 actually talks about spin, notably that the endpoint events also have a spin, and that the transition rules take spin into account by rotating thing, and that the transition rules take spin into account by rotating things.
Fixed quantum angular momentum in a given direction.
Can range between .
E.g. consider gallium which is 1s2 2s2 2p6 3s2 3p6 4s2 3d10 4p1:
- the electrons in s-orbitals such as 1s, 2d, and 3d are , and so the only value for is 0
- the electrons in p-orbitals such as 2p, 3p and 4p are , and so the possible values for are -1, 0 and 1
- the electrons in d-orbitals such as 2d are , and so the possible values for are -2, -1, 0 and 1 and 2
The z component of the quantum angular momentum is simply:so e.g. again for gallium:
- s-orbitals: necessarily have 0 z angular momentum
- p-orbitals: have either 0, or z angular momentum
Note that this direction is arbitrary, since for a fixed azimuthal quantum number (and therefore fixed total angular momentum), we can only know one direction for sure. is normally used by convention.
There are unlisted articles, also show them or only show them.