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:
; EditorConfig VS add-in required | |
; http://editorconfig.org/ | |
root = true | |
[*] | |
end_of_line = CRLF | |
[*.{config,cs,xml}] | |
indent_style = space |
### Keybase proof | |
I hereby claim: | |
* I am minton on github. | |
* I am michaelcminton (https://keybase.io/michaelcminton) on keybase. | |
* I have a public key ASB_HMZVyzt39Zi3Lqmdedh-HkLEUwbpWIvlFMduViLpuAo | |
To claim this, I am signing this object: |
#Download suitcase.rb from Marsellus's home directory on server named Wallace using Vega's login into current directory as suitcase.rb | |
scp vega@wallace:/home/marsellus/suitcase.rb . | |
#Hint - to download folders user -r flag |
#Upload shrimpz.rb to yum.rb in Curran's home directory on server named Jenny using Forrest's login | |
scp shrimpz.rb forrest@jenny:/home/curran/yum.rb | |
#Hint: If you don't want to rename the file simply omit the target filename. | |
# This upload shrimpz.rb in Curran's home directory | |
scp shrimpz.rb forrest@jenny:/home/curran/ |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/' | |
} | |
function proml { | |
local BLUE="\[\033[0;34m\]" | |
local RED="\[\033[0;31m\]" | |
local LIGHT_RED="\[\033[1;31m\]" | |
local GREEN="\[\033[0;32m\]" | |
local LIGHT_GREEN="\[\033[1;32m\]" |
require 'Win32API' | |
handle = Win32API.new('user32','FindWindow',['P','P'],'I').call(nil,"Skype Home") | |
Win32API.new("user32", "SendMessage", ['L'] * 4, 'L').call(handle, 0x0112, 0xF060, 0) |