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
The main interface between the central processing unit and software.
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.
Mnemonic: it gives out the amount of fluid that is going in or out of a given volume per unit of time.
Not in other sections:
- Grant Green: Idle Moments (1963)
- John Abercrombie: Timeless (1975). Just close your eyes, and imagine.
- Paco de Lucía: Almoraima (1976)
- Modern Jazz Quartet: Django (1956)
- Bill Bruford Feels Good to Me (1978). Well, with Allan Holdsworth on the g
- Jean-Luc Ponty
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.
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.