-
Firmware-compatible Bluray/SACD player. See threads below:
-
AutoScript files. These will root the player and allow raw read access over a network.
This file contains hidden or 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
from os import listdir | |
from os.path import join, isfile | |
from shlex import quote | |
import argparse | |
import subprocess | |
SH_BREAK = ' \\\n\t' | |
parser = argparse.ArgumentParser(description='Merge/chapterize discrete MKV files') | |
parser.add_argument('source_path') |
- Infuse can play back FLAC and ALAC-encoded multichannel audio wrapped in an MKV container.
- VLC might play multichannel FLAC without a container. But that stopped working for me when I changed my audio setup to use ARC, so YMMV.
This file contains hidden or 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"?> | |
<!-- TODO | |
- Tunnel params | |
- distinct-values() | |
- tokenize() | |
- group-by | |
- handle namespaced modes and param names | |
- Handle space delimited list of template modes? | |
--> | |
<xsl:stylesheet version="2.0" |
This file contains hidden or 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
xquery version "1.0-ml"; | |
let $uris := cts:uris((), 'limit=30000') | |
let $permissions-map := map:new(( | |
$uris ! map:entry(., xdmp:document-get-permissions(.)) | |
)) | |
let $orphaned-map := | |
xdmp:eval(' | |
xquery version "1.0-ml"; | |
import module namespace sec="http://marklogic.com/xdmp/security" at |
This file contains hidden or 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
# | |
# OSX: Flush all the gunk out of your routing tables and DNS. | |
# | |
networksetup -setairportpower airport off; | |
for i in {1..10} | |
do | |
dscacheutil -flushcache; | |
killall -HUP mDNSResponder; |