These queries were tested using DB Browser for SQLite,
with the Overseerr database as the primary database, and the Ombi database attached as Ombi.
Run the SQL files in order:
movies.sqltv.sqlseasons.sql
These queries were tested using DB Browser for SQLite,
with the Overseerr database as the primary database, and the Ombi database attached as Ombi.
Run the SQL files in order:
movies.sqltv.sqlseasons.sql| #!/bin/bash | |
| # Enable display of executed commands | |
| # set -x | |
| JAIL_NAME=$1 | |
| BASE_DATASET="${2:-vault}" | |
| echo "Preparing to migrate fstab entries from warden to iocage for the" \ | |
| "${JAIL_NAME} jail under the ${BASE_DATASET} dataset:" |
| #!/usr/local/bin/python2.7 | |
| import os | |
| import sys | |
| import json | |
| import requests | |
| webhook_id = "foo" | |
| webhook_token = "bar" |
| Param( | |
| [Parameter(Position=0, Mandatory)] | |
| [String] | |
| $version = "" | |
| ) | |
| Function Exec | |
| { | |
| [CmdletBinding()] | |
| param ( |
| function Exec | |
| { | |
| [CmdletBinding()] | |
| param ( | |
| [Parameter(Position=0, Mandatory=1)] | |
| [scriptblock]$Command, | |
| [Parameter(Position=1, Mandatory=0)] | |
| [string]$ErrorMessage = "Execution of command failed.`n$Command" | |
| ) | |
| & $Command |
| Some notes on remote debugging mac builds on Travisci. It's hard to tell when something hangs what the cause it. Trial and error via commits is tedious. And on Mac , sometimes it's the gui asking for input. So I worked my around to get the access I needed for faster debugging a build. | |
| ################################################# | |
| # Enable remote ssh access to travisci build for debugging | |
| ################################################# | |
| # Add a key so we can login to travisci vm | |
| - cat ssh/travisci.pub >> ~/.ssh/authorized_keys | |
| - chmod 600 ssh/travisci | |
| # Install netcat |
| # | |
| # STL GDB evaluators/views/utilities - 1.03 | |
| # | |
| # The new GDB commands: | |
| # are entirely non instrumental | |
| # do not depend on any "inline"(s) - e.g. size(), [], etc | |
| # are extremely tolerant to debugger settings | |
| # | |
| # This file should be "included" in .gdbinit as following: | |
| # source stl-views.gdb or just paste it into your .gdbinit file |