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:
#!/bin/bash | |
script="myscript" | |
#Declare the number of mandatory args | |
margs=2 | |
# Common functions - BEGIN | |
function example { | |
echo -e "example: $script -m0 VAL -m1 VAL -o1 -o2 VAL" | |
} |
<?php | |
/** | |
* Implements hook_preprocess_views_view_grid(). | |
* | |
* Our own implementation removes the complete.css grid class names from | |
* the views grid and uses different ones instead. | |
* | |
* Specifically: col-N => view-col-N | |
*/ | |
function phptemplate_preprocess_views_view_grid(&$vars) { |