Jesus Christ Superstar (1973) Updated +Created
Quote by Jesus Updated +Created
Matthew 10:16-23 Coming Persecutions, where Jesus before being persecuted warns his disciples that there is evil in the world and that they must be aware of it, all while being pure at heart:
Behold, I send you out as sheep in the midst of wolves; so be wise as serpents and innocent as doves.
Josephson effect regime Updated +Created
L Updated +Created
O Updated +Created
MySQL Updated +Created
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"
Create test user with password:
sudo mysql -e 'CREATE USER user0 IDENTIFIED WITH mysql_native_password BY "a"'
sudo mysql -e 'GRANT ALL PRIVILEGES ON database_name.* TO "user0"'
and login as that user:
mysql -u user0 -p
Login with password given on the command line:
mysql -u user0 -pmypassword
The 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:
sudo mysql -e 'SHOW TABLES' mydb0
or:
sudo mysql -e 'SHOW TABLES FROM mydb0'
Application-specific integrated circuit Updated +Created
Artificial gene synthesis Updated +Created
Using de novo DNA synthesis to synthesize a genes to later insert somewhere.
Note that this is a specific application of de novo DNA synthesis, e.g. polymerase chain reaction primers is another major application that does not imply creating genes.
Zombie video game Updated +Created
Upside: it is easier to simulate zombies than it is to simulate intelligent humans and make them look convincing.
Downside:
  • if zombies are so dumb, why didn't humans deal with them already? Just build some fucking walls and sleep in isolated rooms in case someone has a heart attack during their sleep! So not as convincing.
  • zombies vioalte the law of conservation of energy. What do they eat when humans run out, since they are so dumb? Previously mentioned at: news.ycombinator.com/item?id=20240895
Return to Forever Updated +Created
Scientology music! So good.
Go (programming language) Updated +Created
Likely a good replacement for Python. If the ecosystem gets there, Ciro Santilli would gladly use it more.
Arrow of time Updated +Created
Browser game Updated +Created
There's a beauty in the portability of browser games.
The fact that the browser is not the main gaming platform as of 2020 shows how crappy web tech is. There is no fundamental reason why it shouldn't be so.
Asset bundler Updated +Created
In order to make websites efficient and portable, a lot of transpilation is needed.
History of the Josephson effect Updated +Created
In 1962 Brian Josephson published his inaugural paper predicting the effect as Section "Possible new effects in superconductive tunnelling".
In 1963 Philip W. Anderson and John M. Rowell published their paper that first observed the effect as Section "Possible new effects in superconductive tunnelling".
Some golden notes can be found at True Genius: The Life and Science of John Bardeen page 224 and around. Philip W. Anderson commented:
We were all - Josephson, Pippard and myself, as well as various other people who also habitually sat at the Mond tea and participated in the discussions of the next few weeks - very much puzzled by the meaning of the fact that the current depends on the phase
As part of the course Anderson had introduced the concept of broken symmetry in superconductors. Josephson "was fascinated by the idea of broken symmetry, and wondered whether there could be any way of observing it experimentally."
Bipedalism Updated +Created

There are unlisted articles, also show them or only show them.