Cheatsheet for image / video metadata manipulation.
Last updated 2019-07-24
until more specific license...
THE CONTENT BELOW IS PROVIDED "AS-IS",
WE DISCLAIM LIABILITY FOR ALL USES TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW.
# This script can help you determine if your PTZ is capable of | |
# working with Frigate NVR's autotracker. | |
# | |
# Cameras with a "YES" printed for each parameter at the end of | |
# the output will likely be supported by Frigate. | |
# | |
# Make sure you're using python3 with the onvif-zeep package | |
# Update the values for your camera below, then run: | |
# pip3 install onvif-zeep | |
# python3 ./fovtest.py |
[ | |
{ | |
"markFlagged": false, | |
"fileIn": "Deliveries", | |
"combinator": "any", | |
"snoozeUntil": null, | |
"discard": false, | |
"created": "2023-07-25T14:15:44Z", | |
"previousFileInName": null, | |
"name": "Useless delivery notifications", |
In file included from /data/firebeetle-061cb8/.piolibdeps/firebeetle-061cb8/ESP Async WebServer/src/AsyncWebSocket.h:32, | |
from /data/firebeetle-061cb8/.piolibdeps/firebeetle-061cb8/ESP Async WebServer/src/AsyncWebSocket.cpp:22: | |
/data/firebeetle-061cb8/.piolibdeps/firebeetle-061cb8/ESP Async WebServer/src/ESPAsyncWebServer.h:27:10: fatal error: FS.h: No such file or directory | |
************************************************************ | |
* Looking for FS.h dependency? Check our library registry! | |
* | |
* CLI > platformio lib search "header:FS.h" | |
* Web > https://registry.platformio.org/search?q=header:FS.h | |
* |
Please remember that your Game Master has put in time and effort (probably more than you realize) into the campaign you asked to participate in. Be respectful and pay attention. If you are playing other games, browsing social media, chatting, etc. it's more obvious than you probably think and it detracts from everyone's experience. A player being absent is less distracting than a player who can be heard typing in the background for long periods or consistently has no idea what is going on in the game. We understand that people have responsibilities such as kids, partners, work calls, etc. that may need your attention suddenly and that's not an issue unless it happens frequently and you are in a [STRICT] campaign (see rule 2).
We have different campaign styles and are pretty relaxed in most of them. However, sometimes we want to take a campaign more seriously, particularly if it's an official adventure module. Loo
# /srv/salt/upgrade_the_app.sls | |
# Example of a complex, multi-host Orchestration state that performs status checks as it goes. | |
# Note, this is untested and is meant to serve as an example. | |
# Run via: salt-run state.orch upgrade_the_app pillar='{nodes: [nodeA, nodeB], version: 123}' | |
{% set nodes = salt.pillar.get('nodes', []) %} | |
{% set all_grains = salt.saltutil.runner('cache.grains', | |
tgt=','.join(nodes), tgt_type='list') %} | |
{# Default version if not given at the CLI. #} |
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.pdf
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.epub
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.mobi
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.pdf
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.epub
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.mobi
#!/usr/bin/python | |
# | |
# getosversionfromdmg.py | |
# | |
# Copyright (c) 2014 The Regents of the University of Michigan | |
# Copyright (c) 2017 Jeremy Reichman | |
# | |
# Retrieves the OS version and build from the InstallESD.dmg contained in | |
# a typical "Install [Mac OS X|OS X|macOS] <Name>.app" bundle. | |
# |
USE_PKGBUILD=1 | |
include /usr/local/share/luggage/luggage.make | |
TITLE=Title\ with\ Spaces | |
REVERSE_DOMAIN=com.pretendco | |
PACKAGE_ID=${REVERSE_DOMAIN}.titlewithoutspaces | |
PACKAGE_NAME=${TITLE} | |
PAYLOAD=\ | |
... |
#!/usr/bin/expect | |
log_user 0 | |
set password s3kr1tp4ssw0rd | |
spawn fdesetup changerecovery -personal -key /path/to/keychain_with_both_private_and_public_keys_inside.keychain -outputplist > /path/to/new_recovery_key.plist | |
expect "keychain: " | |
send "$password\n" | |
log_file -a /path/to/new_recovery_key.plist | |
expect EOF |