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
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
sg_import_assetlist.py | |
Import field descriptions from CSV file | |
Created by Jack James on 2019-10-30. | |
Copyright (c) 2019 Autodesk. All rights reserved. | |
Tasks |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
sg_create_versions_from_files.py | |
Create Versions in Shotgun from a folder of local files | |
• Create a new version with the name based on the filename | |
• Transcode the file and generate thumbnails and web-playable media |
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
cd $SRC; | |
find . -name '*.zip' -exec sh -c 'unzip -j "{}" `basename {} .zip`/`basename {} .zip`.jpg -d "`dirname \"{}\"`"' ';' |
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
ObjC.import('Foundation') | |
var app = Application.currentApplication() | |
app.includeStandardAdditions = true | |
var path = app.pathTo(this); | |
var workflowFolder = $.NSString.alloc.initWithUTF8String(path).stringByDeletingLastPathComponent.js + '/'; | |
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
<?php | |
echo "<pre>"; print_r($wp_query->query_vars); echo "</pre>"; | |
?> |
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
=begin | |
Find pages a field is used on | |
1. Edit the last line in the following script to reference the | |
appropriate field & entity | |
2. Paste the whole thing into the Ruby console for the site in | |
question | |
=end |
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
# using sed | |
sed $'s/\\\r/\\\n/g' $FILE | |
# using tr | |
tr "\r" "\n" < "$FILE" |
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
# 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 * |
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
# 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 ) |
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
// clips | |
"//clip" | |
// shot-take | |
"//clip[" & $clipIndex & "]/logginginfo/shottake" | |
// scene | |
"//clip[" & $clipIndex & "]/logginginfo/scene" | |
// default angle |
NewerOlder