Fish and Bird - 4x06 - 21:38
The Zoot Cat - 1940x13 - 4:44
| Start a new blockchain (colloquially the Bitcoin protocol) to store public keys and revocation certificates/notices. | |
| - One single blockchain for the whole of the web ensures it is obvious when others attempt to impersonate you | |
| - Revocation certificates cannot be missed as there is only a single place they should be found | |
| - No more dealing with multiple out-of-sync public key servers, a single secure store of all PGP keys can be used | |
| - The blockchain protocol based on scrypt() to help ensure a more balanced hashing/securing of the network, as it is an ASIC resistant algorithm |
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <h1>Hello Meon!</h1> | |
| <img src="https://i.imgur.com/RlcwAiy.png" /> | |
| </body> | |
| </html> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <h1>Things I Like</h1> | |
| <ol> | |
| <li>Kittens</li> |
| body { | |
| font-family: arial; | |
| cursor: crosshair; | |
| } | |
| h1 { | |
| color: #00FF00; | |
| text-align: center; | |
| } | |
| h2 { | |
| border: thin dotted green; |
| Function Global:Send-Email { | |
| [cmdletbinding()] | |
| Param ( | |
| [Parameter(Mandatory=$True,Position=0)] | |
| [String]$Address, | |
| [Parameter(Mandatory=$True,Position=1)] | |
| [String]$Subject, | |
| [Parameter(ValueFromPipeline=$True)] | |
| [String[]]$BodyLine | |
| ) |
| openssl req -new -sha256 -nodes -out \*.your-new-domain.com.csr -newkey rsa:2048 -keyout \*.your-new-domain.com.key -config <( | |
| cat <<-EOF | |
| [req] | |
| default_bits = 2048 | |
| prompt = no | |
| default_md = sha256 | |
| req_extensions = req_ext | |
| distinguished_name = dn | |
| [ dn ] |
| # send the request to pushover | |
| try: | |
| req = urllib2.Request(API_URL) | |
| handle = urllib2.urlopen(req, data) | |
| handle.close() | |
| except urllib2.HTTPError as e: | |
| logger.log(u'PUSHOVER: HTTPError: %s' % e.args, logger.ERROR) | |
| except urllib2.URLError as e: | |
| # HTTP status 404 if the provided email address isn't a Pushover user. | |
| logger.log(u'PUSHOVER: URLError: %s' % e.reason, logger.ER |
| If you want to digitally sign your e-mail but not provide a password to unlock your keychain every time (for example, because you want to send Automator e-mails) you can do this in a few easy steps. | |
| 1. Open Keychain Access | |
| 2. Under the Keys category, find the private key associated with your e-mail certificate | |
| 3. Double click on it to open its info | |
| 4. Open the Access Control tab, providing credentials if asked | |
| 5. Select the Allow all applications to access this item radio button and then click Save Changes | |
| Your mail client will no longer need to elevate privileges to access the private key and will therefore be able to sign and decrypt your mail messages without password. |
match with replace for all files in the cwd, and create a soft link to the new file name using the old file name.$ find . -name '*.mkv' -type f -exec bash -c 'mv "$1" "${1/match/replace.}" && ln -s "${1/match/replace.}" "$1"' -- {} \;
So:
ls -l
total 27477872
-rw-r--r--. 1 george media_ 3517838477 Jan 9 20:04 match04e01.mkv