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
#!/usr/bin/env python3 | |
import sys | |
import os | |
import glob | |
from pathlib import Path | |
import shutil | |
import tempfile | |
def fix_file(fpath): |
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
class RelationalClasses extends Object; | |
Struct T_RawClassTreeRecord | |
{ | |
var int level; | |
var string ClassName; | |
var string PackageName; | |
var class<RelationalClasses> TClass; | |
}; |
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
#!/usr/bin/env bash | |
############################################################## | |
# Demo script to make a any-fps movie to 60fps | |
# | |
# Usage: > ./smoothify.sh <FilePath> (<tmpdir>) | |
# | |
# Output file will be the input one _SMOOTHED, at the same dir | |
# |