These scripts are to compliment the DocPad Continuous Deployment Guide.
#!/bin/bash | |
#set -x | |
#DEBUG=echo | |
# Runs via cron to shut down the instance if it's not in use for 5 minutes | |
# Starts checks after it's been up more than 500secs | |
# Won't kick you out if you're ssh'ed in and it's idle. | |
# crontab -l|grep idle | |
# */6 * * * * /root/bin/idle.sh >/dev/null 2>&1 | |
until $(awk '$1>500{exit 1}' /proc/uptime) |
This guide will demonstrate the steps required to encrypt and decrypt files using OpenSSL on Mac OS X. The working assumption is that by demonstrating how to encrypt a file with your own public key, you'll also be able to encrypt a file you plan to send to somebody else using their private key, though you may wish to use this approach to keep archived data safe from prying eyes.
Assuming you've already done the setup described later in this document, that id_rsa.pub.pcks8 is the public key you want to use, that id_rsa is the private key the recipient will use, and secret.txt is the data you want to transmit…
$ openssl rand 192 -out key
$ openssl aes-256-cbc -in secret.txt -out secret.txt.enc -pass file:key
aws s3 sync s3://oldbucket s3://newbucket --source-region us-west-1 --region us-west-2 |
module.exports = { | |
plugins: [ | |
// es2015 - based off of v6.3.13 | |
// https://github.com/babel/babel/blob/master/packages/babel-preset-es2015/index.js | |
[require('babel-plugin-transform-es2015-template-literals'), { loose: true }], | |
require('babel-plugin-transform-es2015-literals'), | |
require('babel-plugin-transform-es2015-function-name'), | |
require('babel-plugin-transform-es2015-arrow-functions'), | |
require('babel-plugin-transform-es2015-block-scoped-functions'), | |
[require('babel-plugin-transform-es2015-classes'), { loose: true }], |
This is a collection of basic "recipes", many using twurl (the Swiss Army Knife for the Twitter API!) and jq to query the Twitter API and format the results. Also, some scripts to test or automate common actions.
This content from this markdown file has moved a new, happier home where it can serve more people. Please check it out : https://docs.microsoft.com/azure/azure-cache-for-redis/cache-best-practices.
package main | |
import ( | |
"io/ioutil" | |
"log" | |
"os" | |
"os/user" | |
"strconv" | |
) |
ℹ️ There is a newer alternative project that does similar things and more, check it out at https://github.com/stevenilsen123/mac-keyboard-behavior-in-windows
Make Windows PC's shortcut act like macOS (Mac OS X) (using AutoHotkey (ahk) script)
With this AutoHotKey script, you can use most macOS style shortcuts (eg, cmd+c, cmd+v, ...) on Windows with a standard PC keyboard.
Last updated: April 2021
Also known as itag or format codes and way back they could be specified with the fmt parameter (e.g. &fmt=22
).
Depending on the age and/or popularity of the video, not all formats will be available.
Resolution | AV1 HFR High | AV1 HFR | AV1 | VP9.2 HDR HFR | VP9 HFR | VP9 | H.264 HFR | H.264 |
---|---|---|---|---|---|---|---|---|
MP4 | MP4 | MP4 | WebM | WebM | WebM | MP4 | MP4 |