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:
| 'use strict'; | |
| const moment = require('moment') | |
| const jsdom = require('jsdom'); | |
| const fs = require('fs'); | |
| const FILE_NAME = process.argv[2] || './May-Jun.html'; | |
| jsdom.env( | |
| fs.readFileSync(FILE_NAME).toString(), |
| <?php | |
| /** | |
| * Basic URL Signing functions for WordPress. | |
| * | |
| * @author Brady Vercher (twitter.com/bradyvercher) | |
| * @link http://www.blazersix.com/blog/protect-your-products-and-improve-your-systems-with-signed-urls/ | |
| */ | |
| /** | |
| * Sign a URL to ensure it hasn't been tampered with. |