This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# | |
# SHOW ME | |
# Takes X pictures of you via your iSight, animates them, uploads them to CloudApp, and puts | |
# the url in your clipboard | |
# | |
# This uses a bunch of projects to make the magic happen, mostly thanks | |
# to Zach Holman: http://github.com/holman | |
# | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
750ml Meyer's Dark Rum | |
750ml Meyer's Light Rum | |
46oz Pineapple Juice | |
32oz Orange Juice | |
32oz Mango Juice |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
raise "Specify a video file!" unless mkv_file = ARGV.first | |
audio_file = mkv_file.gsub(/\.mkv/, ".ac3") | |
audio_track_file = mkv_file.gsub(/\.mkv/, ".mp4") | |
video_file = mkv_file.gsub(/\.mkv/, ".264") | |
m4v_file = mkv_file.gsub(/\.mkv/, ".m4v") | |
VLC_PATH = "/Applications/VLC.app/Contents/MacOS/VLC" | |
MP4BOX_PATH = "/Users/tekkub/bin/MP4box" |
NewerOlder