Closed Tape Language decider Updated 2025-07-16
Described at: www.sligocki.com/2022/06/10/ctl.html
COCO dataset Updated 2025-07-16
From cocodataset.org/:
So they have relatively few object labels, but their focus seems to be putting a bunch of objects on the same image. E.g. they have 13 cat plus pizza photos. Searching for such weird combinations is kind of fun.
Their official dataset explorer is actually good: cocodataset.org/#explore
Also, images have captions describing the relation between objects:Epic.
This dataset is kind of cool.
HTML Updated 2025-07-16
Examples:
- html/min.html: minimal valid HTML document. It is insane however.
- html/min-sane.html: minimal sane HTML document. There are smaller valid ones, but they are insane.
- html/img.html
- html/img-broken.html: stackoverflow.com/questions/22051573/how-to-hide-image-broken-icon-using-only-css-html
- html/img-load-lazy.html: stackoverflow.com/questions/2321907/how-do-you-make-images-load-lazily-only-when-they-are-in-the-viewport/57389607#57389607
- html/iframe.html. Uses: html/iframe2.html, html/hello.txt and html/hello
- forms
- YouTube embeds
Human genome sequencing project Updated 2025-07-16
Human molecular biology Updated 2025-07-16
Human nervous system Updated 2025-07-16
Sexual innuendo Updated 2025-07-16
Stefan Thomas Updated 2025-07-16
www.nytimes.com/2021/01/12/technology/bitcoin-passwords-wallets-fortunes.html
As for his lost password and inaccessible Bitcoin, Mr. Thomas has put the IronKey in a secure facility - he won’t say where - in case cryptographers come up with new ways of cracking complex passwords. Keeping it far away helps him try not to think about it, he said.
“I would just lay in bed and think about it," Mr. Thomas said.
Stellar classification Updated 2025-07-16
Brazillian educational charitable organization Updated 2025-07-16
Ciro Santilli's cooking Updated 2025-07-16
Ciro Santilli's hardware Updated 2025-07-16
One day, someone will invent a way to take the hash of a piece of hardware and see its history log, like software engineers do with version control. Until then, this is as close as you can get.
Divergence Updated 2025-07-16
Mnemonic: it gives out the amount of fluid that is going in or out of a given volume per unit of time.
Earth science Updated 2025-07-16
E. Coli K-12 MG1655 gene thrC Updated 2025-07-16
Hydrogen cyanide Updated 2025-07-16
Non Abelian anyon Updated 2025-07-16
Colony (biology) Updated 2025-07-16
It is hard to distinguish between colonies of unicellular organism and multicellular organism as there is a continuum between both depending on how well integrated they cells are.
Elliptic curve point multiplication Updated 2025-07-16
GNU Privacy Guard Updated 2025-07-16
Generate public private key, test encrypt and test decrypt:
# Create your pubkey.
gpg --gen-key
gpg --armor --output pubkey.gpg --export <myemail>
# Encrypt using someone's pubkey.
gpg --import pubkey2.gpg
echo 'hello world' > hello.txt
gpg --output hello.txt.gpg --encrypt --recipient <other-email> hello.txt
# Double check it is not plaintext in the encrypted message.
grep hello hello.txt.gpg
# Decrypt.
gpg --output hello.decrypt.txt --decrypt --recipient <myemail> hello.txt.gpg
diff -u hello.decrypt.txt hello.txt
There are unlisted articles, also show them or only show them.