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:
$ curl --help | |
Usage: curl [options...] <url> | |
--abstract-unix-socket <path> Connect via abstract Unix domain socket | |
--alt-svc <file name> Enable alt-svc with this cache file | |
--anyauth Pick any authentication method | |
-a, --append Append to target file when uploading | |
--basic Use HTTP Basic Authentication | |
--cacert <file> CA certificate to verify peer against | |
--capath <dir> CA directory to verify peer against | |
-E, --cert <certificate[:password]> Client certificate file and password |
#!/bin/sh | |
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | |
RUN_DIR=${DIR}/.dynamodb | |
DYNAMODB_LOCAL="http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.tar.gz" | |
PORT=8000 | |
ARGS="-inMemory -port ${PORT}" | |
install_dynamo_db(){ | |
mkdir -p $1 | |
curl -L $2 | tar xvz -C $1 |