Skip to content

Instantly share code, notes, and snippets.

@steven2358
steven2358 / ffmpeg.md
Last active June 17, 2024 19:00
FFmpeg cheat sheet
@or
or / convert_svg.py
Last active June 17, 2023 14:47
Convert SWF to SVG and PNG
#!/usr/bin/env python2.7
import argparse
import os
import re
import shutil
import sys
import tempfile
from copy import deepcopy
@emreberge
emreberge / Bash-help.sh
Created December 2, 2011 20:25
Bash help function for using with oh-my-zshell
function help(){
bash -c "help $@"
}