A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| # Just place this file in your repo under the .github/workflows folder. | |
| # You set all of the secrets in the setting of the repo | |
| name: Deploy to Testflight | |
| # When a pull request is closed... | |
| # This is because this action commits back to the repository | |
| # so setting this on a push would cause an infinite loop of commits | |
| # unless you pragmatically check the contents of the repo or something |
| #!/bin/bash | |
| # A bash script to update a Cloudflare DNS A record with the external IP of the source machine | |
| # Used to provide DDNS service for my home | |
| # Needs the DNS record pre-creating on Cloudflare | |
| ## Based on https://gist.github.com/Tras2/cba88201b17d765ec065ccbedfb16d9a with updates to use | |
| ## per-zone configurable access tokens available in the API sections of your Cloudflare profile | |
| ## - [email protected] |
| <?php | |
| /** | |
| * Validates the format of a CIDR notation string | |
| * | |
| * @param string $cidr | |
| * @return bool | |
| */ | |
| function validateCidr($cidr) | |
| { |
| --- | |
| AWSTemplateFormatVersion: "2010-09-09" | |
| Parameters: | |
| DBPassword: | |
| Type: String | |
| NoEcho: true # Specifies that this string should never be printed on the interface or through the API. | |
| AllowedPattern: ^[a-zA-Z0-9_]*$ # Provided strings must match this regex. | |
| MinLength: 8 |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| version: '2.1' | |
| services: | |
| transmission: | |
| container_name: transmission | |
| image: dperson/transmission | |
| restart: unless-stopped | |
| depends_on: | |
| - plex | |
| network_mode: host | |
| environment: |
| /* eslint import/no-extraneous-dependencies: ["off"] */ | |
| /* eslint func-names: ["off"] */ | |
| /* global browser */ | |
| /** | |
| * Jasmine reporter used to take screenshots every time a test fails | |
| * on your 'protractor.conf.js' (Protractor configuration file) | |
| * include a reference to this file `const ScreenshotReporter = require('./screenshotReporter.js');` | |
| * and hook it up inside 'onPrepare()' `jasmine.getEnv().addReporter(new ScreenshotReporter('reports/e2e-failures'));` | |
| */ |