404 error SVG animation page
anime.js
error 404
A Pen by Swarup Kumar Kuila on CodePen.
404 error SVG animation page
anime.js
error 404
A Pen by Swarup Kumar Kuila on CodePen.
| #!/usr/bin/env bash | |
| BIN_DF=$(which "df") | |
| if ! [ -x "$BIN_DF" ]; then | |
| echo "df (coreutils package) not installed." | |
| echo "See the official documentation for more information" | |
| exit 1 | |
| fi | |
| case "$1" in |
The Talk add-on allows returning information when the user invokes a command preceded with a forward-slash. I have created 3 custom commands that help NextCloud admins know certain server information that would otherwise have to come from other tools ie: monitoring/graphing software:
df utilityping utility (install if not exists for you, normally net-utils pkg or similar)mount command| ffmpeg -i "in.avi" -bsf:v mpeg4_unpack_bframes -vcodec copy "out.avi" |
| { | |
| "timeStamp": 1697683899581, | |
| "version": "1.52.2", | |
| "userSettings": { | |
| "cloudStorageEnabled": true, | |
| "uiAccentCustom": true, | |
| "uiAccentCustom0": "#fdfac5", | |
| "uiTheme": "dark", | |
| "importedLists": [] | |
| }, |
| /** TRAVIS CUSTOM OVERRIDES */ | |
| pref("browser.urlbar.trimURLs", false); | |
| pref("browser.aboutConfig.showWarning", false); | |
| defaultPref("identity.fxaccounts.enabled", true); // firefox sync | |
| pref("privacy.clearOnShutdown.history", false); | |
| pref("privacy.clearOnShutdown.downloads", true); | |
| // Resist Fingerprinting RFP | |
| pref("privacy.resistFingerprinting.testGranularityMask", 4); |
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| trap cleanup SIGINT SIGTERM ERR EXIT | |
| script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
| usage() { | |
| cat <<EOF | |
| Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |
| ############################ FFmpeg CLI Examples ############################ | |
| -metadata[:metadata_specifier] key=value (output,per-metadata) | |
| For example, for setting the title in the output file: | |
| ffmpeg -i in.avi -metadata title="my title" out.flv | |
| To set the language of the first audio stream: | |
| ffmpeg -i INPUT -metadata:s:a:0 language=eng OUTPUT |
| ## AUTHOR: Travis Runyard | |
| ## DATE: 06/22/2024 | |
| # The reason for this gist is to allow you to use cronitor.io's | |
| # status page on any custom (sub)domain and/or URI you would like. | |
| # Since sites like cronitor.io make the custom domain option | |
| # for their status page a paid expense, there is usually always | |
| # an easy way to either bypass their bullshit or at least step | |
| # around it. | |
| # To see an example of a full site config incorporating this gist: |