This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| import requests | |
| import logging | |
| import httplib | |
| # Debug logging | |
| httplib.HTTPConnection.debuglevel = 1 | |
| logging.basicConfig() | |
| logging.getLogger().setLevel(logging.DEBUG) | |
| req_log = logging.getLogger('requests.packages.urllib3') | |
| req_log.setLevel(logging.DEBUG) |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| #!/usr/bin/env python | |
| USAGE = ''' | |
| Incremental backup program | |
| Usage: python "prog_name" destination_dir path1/source1 ... pathN/sourceN' | |
| Copied result will be in the destination_dir/DATE_TIME/source1 ... destination_dir/DATE_TIME/sourceN' | |
| Also there will be created files pathN/sourceN/hash_dir_info.txt (write access to source is needed now)' | |
| When backup is complete, destination_dir/DATE_TIME/backup.complete is created, with timestamp info. |