Gist is a nice service. We can write code so easily and manage files as repository.
But bad points are β¦
- Many repository
- Gist destributes random hash to perticular gists (repositories).
- So difficult to find or remember contents as repository.
#!/bin/sh | |
print_usage() { | |
echo "usage: compress_video <input_file>" | |
echo "supported formats: mp4, webm, mkv, mov, avi, flv" | |
} | |
get_extension() { | |
f="${1##*/}" | |
case "$f" in |
Gist is a nice service. We can write code so easily and manage files as repository.
But bad points are β¦