Skip to content

Instantly share code, notes, and snippets.

View nquinlan's full-sized avatar

Nick Quinlan nquinlan

View GitHub Profile
@dergachev
dergachev / GIF-Screencast-OSX.md
Last active July 17, 2024 14:20
OS X Screencast to animated GIF

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application:

@brandonmwest
brandonmwest / fake_names.rb
Created September 5, 2012 02:35
Generate a csv of fake names and email addresses
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