The mandatory xkcd: xkcd 927: Standards.
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/78f0e6de0ce007f4dd4a09085e649d7e354f70bc7da06d697b167f353f115b8eSee Section "Nelson-Mandela.jpg" for a detailed reverse engineering of the format, and Section "AtomSea & EMBII data format" for a summary of it.
Holy crap, they actually support:
- multipage setups:
The Mahabharata
bitfossil.com/0618f12af65a4e82f8e7b41f8578721dfeb109e9a73ff71aebdbc982696e3720/ - image galleries: bitfossil.org/ae8d3b46b934bedc363e11abe8c8607171994470957c286274f699a0b3a9bbd7/index.htm
- audio:
Spock_Live_Long_And_Prosper.mp3
bitfossil.org/1bc87dbff1ff5831287f62ac7cf95579794e4386688479bab66174963f9a4a0c/index.htm - author photo below post via signture!!! bitfossil.org/738ab32bf82e3e0d4d2b29e40ad194cbbef6685d0116e94371e3cef4992349c8/index.htm (testnet) See the
SIGNED BY
with EMBII's photo!
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
- AtomSea:
- EMBII
- HugPuddle
Somewhat related projects:
At twitter.com/EMBII4U/status/1762501350997233976 (2024) EMBII mentions that he was inspired by the Satoshi uploader.
A Quantitative Analysis of the Impact of Arbitrary Blockchain Content on Bitcoin by Matzutt et al. (2018) by Ciro Santilli 34 Updated 2024-12-15 +Created 1970-01-01
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.
Closed access academic journals are evil by Ciro Santilli 34 Updated 2024-12-15 +Created 1970-01-01
You are nothing but useless leeches in the Internet age.
You must go bankrupt all of you, ASAP.
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.
Long live the Guerilla Open Access Manifesto by Aaron Swartz (2008).
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.
"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
Unlisted articles are being shown, click here to show only listed articles.