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:
| require 'faker' | |
| require 'csv' | |
| CSV.open("output.csv", "wb") do |csv| | |
| i=0 | |
| until i == 25000 | |
| fake = [Faker::Name.name, Faker::Internet.email] | |
| csv << fake | |
| i=i+1 | |
| end |