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:
| /** | |
| * tiger in the snow (HTML5) | |
| */ | |
| figure { | |
| min-width: 178px; | |
| /** outline: solid 1px red; /* uncomment rule to see figure outline */ | |
| position: relative; | |
| } | |
| img { | |
| max-width: 100%; |
| <?php | |
| class Github_Packager { | |
| private static $api_endpoint = 'http://github.com/api/v2/json/'; | |
| private static $temp_path = './temp/'; | |
| public static function list_branches ( $addon_name, $with_commits = false ) { | |
| $url = self::$api_endpoint . 'repos/show/habari-extras/' . $addon_name . '/branches'; |
| /* | |
| * Copyright (c) 2010 Noah Sloan <http://noahsloan.com> | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is | |
| * furnished to do so, subject to the following conditions: | |
| * |