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
Go (programming language) Updated +Created
Likely a good replacement for Python. If the ecosystem gets there, Ciro Santilli would gladly use it more.
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.
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.
Bipedalism Updated +Created
Association football Updated +Created
Audio feedback Updated +Created

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