Skip to content

Instantly share code, notes, and snippets.

View siggy's full-sized avatar
💻
codin'

Andrew Seigner siggy

💻
codin'
View GitHub Profile
@dergachev
dergachev / GIF-Screencast-OSX.md
Last active June 5, 2024 22:16
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:

@xchoi
xchoi / gist:1516166
Last active August 30, 2016 20:47
Asian name generator
%w(a e i o u).map {|x|
['', 'a', 'e', 'i', 'o', 'u'].map {|y|
['', 'n', 'ng'].map {|z|
if (x!=y)
%w(l ch).map {|a|
a + x + y + z
}
else
nil
end