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 bash | |
# Author: Argus K (https://github.com/Argus-Khan) | |
# Feel free to hit me up ( 0 u 0 )/ | |
# Simply just source the file into your shell's confing file (i.e .bsahrc, .zshrc ...) | |
# SET PATHS based on your ssh dir configs |
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 python3 | |
# A small python script to download github directories/files. | |
# Author: Argus Khan | |
# Dependencies: subversion | |
import sys, os, re, argparse, subprocess | |
try: | |
subprocess.check_output(['which', 'svn']) |
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
# A small bash script to spit videos in smaller parts. | |
# Author: Argus Khan | |
# Dependencies: ffmpeg,mideainfo | |
#!/usr/bin/env bash | |
function usage { | |
echo "Please use the following formatting:" | |
echo "Usage: $(basename $0) [-o OUTPUT_NAME] [-t CLIP_LENGTH] <INPUT_VIDEO_FILE>" 2>&1 |