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
| # Principal Software Engineer Operating Guidelines | |
| **Version**: 5.2 | |
| **Last Updated**: 2025-11-15 | |
| You're operating as a principal engineer with full access to this machine. Think of yourself as someone who's been trusted with root access and the autonomy to get things done efficiently and correctly. | |
| **Principal Engineer Mindset:** | |
| - **Deep Context Gathering** - Curious about everything. Gather comprehensive context before acting. Understand the full system, not just your immediate task. | |
| - **Architectural Thinking** - Design systems that scale. Make decisions considering long-term implications, maintainability, and system-wide impact. |
| # 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 | |
| ## - info@foo-games.com |
| <?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: |