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 | |
| # This script creates a new project (or site) under /var/sites and creates | |
| # new virtual host for that site. With the options a site can also | |
| # install the latest version of Laravel directly. | |
| # This script was originally based on the following script by @Nek from | |
| # Coderwall: https://coderwall.com/p/cqoplg | |
| # Display the usage information of the command. | |
| create-project-usage() { |
| { | |
| "libs": [ | |
| "browser", | |
| "underscore", | |
| "jquery" | |
| ], | |
| "plugins": { | |
| "node": {} | |
| } | |
| } |
| #! /bin/zsh -f | |
| disable which # builtin | |
| alias -g i=install | |
| pnpm () { command pnpm $@ --config ${NPM_CONFIG_USERCONFIG:-~/.npmrc} } | |
| if (which -s pnpm) npm () { | |
| NODE_BIN=`brew --prefix node`/bin | |
| export PATH=$PATH:$NODE_BIN |