Skip to content

Instantly share code, notes, and snippets.

View surrealroad's full-sized avatar

Jack James surrealroad

View GitHub Profile
@surrealroad
surrealroad / Plex_package_fix.sh
Last active August 29, 2015 14:15
Reformat Plex package for atom synology
# https://forums.plex.tv/index.php/topic/127360-this-package-does-not-contain-a-digital-signature/#entry763580
mkdir PlexMediaServer-0.9.11.7.803-87d0708-x86
cd PlexMediaServer-0.9.11.7.803-87d0708-x86
tar xvzf ../PlexMediaServer-0.9.11.7.803-87d0708-x86.spk
perl -pi -e 's/evansport/evansport avoton/g' INFO
tar -zcvf ../PlexMediaServer-0.9.11.7.803-87d0708-x86_atom.spk *
@surrealroad
surrealroad / Duplicate files & folders without content
Last active August 29, 2015 14:06
Duplicate files & folders without content
# http://stackoverflow.com/a/25847006/262455
# If there are only directories and regular files, you can do something like this:
cd "$src"
find . -type d -print0 | ( cd "$dst" ; xargs -0 mkdir -p )
find . -type f -print0 | ( cd "$dst" ; xargs -0 touch )
@surrealroad
surrealroad / FCP7XML_queries
Created June 23, 2014 15:32
XPath Queries for Final Cut Pro 7 XML files
// clips
"//clip"
// shot-take
"//clip[" & $clipIndex & "]/logginginfo/shottake"
// scene
"//clip[" & $clipIndex & "]/logginginfo/scene"
// default angle
@surrealroad
surrealroad / FDX_Queries
Created June 23, 2014 15:23
XPath Queries for Final Draft 8+ XML files (.fdx)
// get paragraphs
"/FinalDraft/Content/Paragraph"
// paragraph text
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/Text"
// scene summary
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/SceneProperties/Summary/Paragraph/Text"
// paragraph type