- Bait
- The Chronicles of Narnia: The Voyage of the Dawn Trader
- The Darkest Hour
- Dolphin Tale
- Drive Angry
- Edge of Tomorrow
- Ghostbusters (2016)
- Gulliver's Travels
- The Hobbit: An Unexpected Journey
- The Hobbit: The Desolation of Smaug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example docker-compose.yml for plex. | |
version: "2" | |
services: | |
plex: | |
image: plexinc/pms-docker:plexpass | |
runtime: nvidia | |
container_name: "plex" | |
restart: always | |
hostname: "MY-PLEX" | |
volumes: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get-childitem -path cert:\LocalMachine\Root | ForEach-Object { | |
$hash = $_.GetCertHashString() | |
$base64certificate = @" | |
-----BEGIN CERTIFICATE----- | |
$([Convert]::ToBase64String($_.export('Cert'), [System.Base64FormattingOptions]::InsertLineBreaks)) | |
-----END CERTIFICATE----- | |
"@ | |
[System.IO.File]::AppendAllText("$home\windows.pem", $base64certificate) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add this to your .zshrc | |
r-delregion() { | |
if ((REGION_ACTIVE)) then | |
zle kill-region | |
else | |
local widget_name=$1 | |
shift | |
zle $widget_name -- $@ | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DuckDNS] | |
modulepath=/sbin/duckddns | |
queryurl=duckDNS.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A reporter that suppresses logs for passing tests | |
* | |
* There's no direct way to do this at this point other than a custom reporter. Future | |
* changes may give us an option to do this without a custom reporter: | |
* | |
* https://github.com/facebook/jest/issues/4156 | |
* | |
* ts-jest seems to not have registered TypeScript extension at the point the reporters are | |
* registered; this must be JavaScript unless we want to precompile it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add to .zshrc | |
r-delregion() { | |
if ((REGION_ACTIVE)) then | |
zle kill-region | |
else | |
zle $1 | |
fi | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "MacOS -> PC Shortcuts", | |
"rules": [ | |
{ | |
"description": "Top/bottom of document (ctrl+home/ctrl+end)", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": <%= from("home", ["command"], ["any"]) %>, | |
"to": <%= to([["up_arrow", ["left_command"]]]) %>, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
rem usage: transcodemvc input output [-r] [-s] | |
rem -r will re-use a previously extracted elementary stream from the temp file location | |
rem -s will swap eyes | |
set TEMP_DIR=c:\temp\recodemvc | |
set TEMP_FILE=%TEMP_DIR%\temp_mvc.264 | |
set PROFILE=high | |
set SWAP=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!-- | |
*********************************************************************************************** | |
Microsoft.TypeScript.targets | |
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have | |
created a backup copy. Incorrect changes to this file will make it | |
impossible to load or build your web deploy projects from the command-line or the IDE. | |
This file defines the steps in the standard build process for TypeScript files. |
NewerOlder