├── .gitignore ├── README.md ├── ae ├── ck_Batch1080toD1_v1.0.jsx ├── ck_BatchAddCompLength_v1.0.jsx ├── ck_BatchDuration_v1.0.jsx ├── ck_BatchExtendLayersToCompLength.jsx ├── ck_BatchFramerates_v1.0.jsx ├── ck_BatchNameReplace_v1.0.jsx ├── ck_BatchPrecompAndTrim.jsx ├── ck_BatchResizeAndRescale_AUTO-HD_v1.0.jsx ├── ck_BatchResizeAndRescale_v1.0.jsx ├── ck_BatchResize_v1.0.jsx ├── ck_FixUnMult.jsx ├── ck_SearchDrivePath_v1.0.jsx ├── ck_UnsortDeepFolders.jsx ├── ck_add360expression.jsx ├── ck_addOneFramePerSecond.jsx ├── ck_lightsToNulls.jsx ├── ck_random3dDistributionOnZ.jsx ├── ck_selectAllUnparented.jsx └── ck_shyAllInvisible.jsx ├── bash └── kill_after_effects │ ├── bin │ └── kill_after_effects.app │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── Application Stub │ │ ├── PkgInfo │ │ ├── Resources │ │ ├── AutomatorApplet.icns │ │ └── English.lproj │ │ │ └── ApplicationStub.nib │ │ │ └── keyedobjects.nib │ │ ├── document.wflow │ │ └── version.plist │ └── src │ └── kill_after_effects.sh └── c4d ├── ck_BatchRenameSelected_v1.py └── ck_ShowFilepath_v1.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/README.md -------------------------------------------------------------------------------- /ae/ck_Batch1080toD1_v1.0.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_Batch1080toD1_v1.0.jsx -------------------------------------------------------------------------------- /ae/ck_BatchAddCompLength_v1.0.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_BatchAddCompLength_v1.0.jsx -------------------------------------------------------------------------------- /ae/ck_BatchDuration_v1.0.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_BatchDuration_v1.0.jsx -------------------------------------------------------------------------------- /ae/ck_BatchExtendLayersToCompLength.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_BatchExtendLayersToCompLength.jsx -------------------------------------------------------------------------------- /ae/ck_BatchFramerates_v1.0.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_BatchFramerates_v1.0.jsx -------------------------------------------------------------------------------- /ae/ck_BatchNameReplace_v1.0.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_BatchNameReplace_v1.0.jsx -------------------------------------------------------------------------------- /ae/ck_BatchPrecompAndTrim.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_BatchPrecompAndTrim.jsx -------------------------------------------------------------------------------- /ae/ck_BatchResizeAndRescale_AUTO-HD_v1.0.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_BatchResizeAndRescale_AUTO-HD_v1.0.jsx -------------------------------------------------------------------------------- /ae/ck_BatchResizeAndRescale_v1.0.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_BatchResizeAndRescale_v1.0.jsx -------------------------------------------------------------------------------- /ae/ck_BatchResize_v1.0.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_BatchResize_v1.0.jsx -------------------------------------------------------------------------------- /ae/ck_FixUnMult.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_FixUnMult.jsx -------------------------------------------------------------------------------- /ae/ck_SearchDrivePath_v1.0.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_SearchDrivePath_v1.0.jsx -------------------------------------------------------------------------------- /ae/ck_UnsortDeepFolders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_UnsortDeepFolders.jsx -------------------------------------------------------------------------------- /ae/ck_add360expression.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_add360expression.jsx -------------------------------------------------------------------------------- /ae/ck_addOneFramePerSecond.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_addOneFramePerSecond.jsx -------------------------------------------------------------------------------- /ae/ck_lightsToNulls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_lightsToNulls.jsx -------------------------------------------------------------------------------- /ae/ck_random3dDistributionOnZ.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_random3dDistributionOnZ.jsx -------------------------------------------------------------------------------- /ae/ck_selectAllUnparented.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_selectAllUnparented.jsx -------------------------------------------------------------------------------- /ae/ck_shyAllInvisible.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/ae/ck_shyAllInvisible.jsx -------------------------------------------------------------------------------- /bash/kill_after_effects/bin/kill_after_effects.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/bash/kill_after_effects/bin/kill_after_effects.app/Contents/Info.plist -------------------------------------------------------------------------------- /bash/kill_after_effects/bin/kill_after_effects.app/Contents/MacOS/Application Stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/bash/kill_after_effects/bin/kill_after_effects.app/Contents/MacOS/Application Stub -------------------------------------------------------------------------------- /bash/kill_after_effects/bin/kill_after_effects.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /bash/kill_after_effects/bin/kill_after_effects.app/Contents/Resources/AutomatorApplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/bash/kill_after_effects/bin/kill_after_effects.app/Contents/Resources/AutomatorApplet.icns -------------------------------------------------------------------------------- /bash/kill_after_effects/bin/kill_after_effects.app/Contents/Resources/English.lproj/ApplicationStub.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/bash/kill_after_effects/bin/kill_after_effects.app/Contents/Resources/English.lproj/ApplicationStub.nib/keyedobjects.nib -------------------------------------------------------------------------------- /bash/kill_after_effects/bin/kill_after_effects.app/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/bash/kill_after_effects/bin/kill_after_effects.app/Contents/document.wflow -------------------------------------------------------------------------------- /bash/kill_after_effects/bin/kill_after_effects.app/Contents/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/bash/kill_after_effects/bin/kill_after_effects.app/Contents/version.plist -------------------------------------------------------------------------------- /bash/kill_after_effects/src/kill_after_effects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/bash/kill_after_effects/src/kill_after_effects.sh -------------------------------------------------------------------------------- /c4d/ck_BatchRenameSelected_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/c4d/ck_BatchRenameSelected_v1.py -------------------------------------------------------------------------------- /c4d/ck_ShowFilepath_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriskelley/work-scripts/HEAD/c4d/ck_ShowFilepath_v1.py --------------------------------------------------------------------------------