Yet another by Ciro Santilli 34 Updated +Created
Nitrogen-vacancy center by Ciro Santilli 34 Updated +Created
AtomSea & EMBII by Ciro Santilli 34 Updated +Created
A text/file upload system.
bitfossil.org/ an indexer website which interprets the format. Each page has an "abuse report" button to unindex presumably. TODO website source? Local indexer/extraction script? Ciro's indexer and its generated index can be found at:
Each AtomSea payload has a toplevel transaction which links to other transactions. All the linked transactions together make up the payload. The most common payload type is a text plus image, as is the case of Nelson-Mandela.jpg, which can be seen at bitfossil.com/78f0e6de0ce007f4dd4a09085e649d7e354f70bc7da06d697b167f353f115b8e/ where 78f0e6de0ce007f4dd4a09085e649d7e354f70bc7da06d697b167f353f115b8e is the toplevel transaction ID: www.blockchain.com/btc/tx/78f0e6de0ce007f4dd4a09085e649d7e354f70bc7da06d697b167f353f115b8e
See Section "Nelson-Mandela.jpg" for a detailed reverse engineering of the format, and Section "AtomSea & EMBII data format" for a summary of it.
apertus.io/ is the system to upload/index locally, and therefore likely part of the backend of bitfossil: github.com/HugPuddle/Apertus
The system shows the messages and the images on a single page: bitfossil.org/4cbb32cd27b5b5edc12d3559bdffc1355ac2a210463d5cfaadc7ce9b06675b2b/index.htm It is basically a blockchain-based Twitter.
Hidden surprises in the Bitcoin blockchain by Ken Shirriff (2014) suggests that AtomSea & EMBII are the creator's aliases. The following online profiles of the creators feel authentic:Tried saying hi to them at: twitter.com/cirosantilli/status/1382080760774033415 and they replied: twitter.com/AllenVandever/status/1563964396656812034
Somewhat related projects:
At twitter.com/EMBII4U/status/1762501350997233976 (2024) EMBII mentions that he was inspired by the Satoshi uploader.
Semi-boring academic overview, but without reproducibility, or in a way that is too hidden for Ciro to have the patience to find it out.
Claims 1600 files found.
Mentions some upload mechanisms, notably AtomSea & EMBII and Satoshi uploader.
Probability current by Ciro Santilli 34 Updated +Created
Closed access academic journals are evil by Ciro Santilli 34 Updated +Created
You are nothing but useless leeches in the Internet age.
You must go bankrupt all of you, ASAP.
Fuck Elsevier, fuck Springer, and fuck all the like.
Research paid with taxpayer money must be made available for free.
Researchers and reviewers all work for peanuts, while academic publishers get money for doing the work that an algorithm could do. OurBigBook.com.
When Ciro learned URLs such as www.nature.com/articles/181662a0 log you in automatically by IP, his mind blew! The level of institutionalization of this theft is off the charts! The institutionalization of theft is also clear from article prices, e.g. 32 dollars for a 5 page article.
Key physics papers from the 50's are still copyright encumbered as of 2020, see e.g. Lamb-Retherford experiment. Authors and reviewers got nothing for it. Something is wrong.
Infinite list of other people:
  • blog.machinezoo.com/public-domain-theft by Robert Važan:
    Scientific journals are perhaps one of the most damaging IP rackets. Scientists are funded by governments to do research and publish papers. Reviews of these papers are done by other publicly funded scientists. Even paper selection and formatting for publication is done by scientists. So what do journals actually do? Nearly nothing.
Video 1.
Academic Publishing by Dr. Glaucomflecken (2022)
Source.
Adenosine diphosphate by Ciro Santilli 34 Updated +Created
Aragonite by Ciro Santilli 34 Updated +Created
Baryon vs meson vs lepton by Ciro Santilli 34 Updated +Created
"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".
Fungibility by Ciro Santilli 34 Updated +Created
Arthropod by Ciro Santilli 34 Updated +Created
Cloaca by Ciro Santilli 34 Updated +Created
A single hole that is used for shit, pee and fucking. Amazing.
Lisa Su by Ciro Santilli 34 Updated +Created
Geiger-Nuttall law by Ciro Santilli 34 Updated +Created
Hashcash by Ciro Santilli 34 Updated +Created
Stern-Zartman experiment by Ciro Santilli 34 Updated +Created
Sex determination system by Ciro Santilli 34 Updated +Created
MySQL by Ciro Santilli 34 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'
Spin valve by Ciro Santilli 34 Updated +Created
Basic component in spintronics, used in both giant magnetoresistance

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