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:
| <?php | |
| /** | |
| * Read in a CSV file as taken from the command line arg | |
| * CSV file needs to be in the same directory as this | |
| * script for the time being | |
| * | |
| * Output is expected to be text representing an ACL | |
| * declaration that can be copypasta'd into a VCL file. | |
| * |
| #!/usr/bin/php | |
| <?php | |
| /** | |
| * @license http://www.wtfpl.net/txt/copying/ WTFPL | |
| */ | |
| date_default_timezone_set( 'UTC' ); | |
| $sitemaps = array( |
| #!/usr/bin/env python3 | |
| import subprocess | |
| import json | |
| import time | |
| import sys | |
| import argparse | |
| baseurl = 'https://cloudapi.acquia.com/v1/sites/devcloud:MYSITE' | |
| parser = argparse.ArgumentParser(description='Get username and password.') |
| <?php | |
| // current table prefix to be removed | |
| $prefix = "drup_"; | |
| // echo generated statments rather then run them | |
| $pretend = FALSE; | |
| ///////////////////////////////////////////////////////////////////// | |
| $table_list = db_query("SHOW TABLES"); |