Skip to content

Instantly share code, notes, and snippets.

View dtschust's full-sized avatar

Drew Schuster dtschust

View GitHub Profile
#!/bin/bash
#wget individual video files
wget -O 1.mp4 http://distilleryimage5.s3.amazonaws.com/d871cdf8ab8611e3bae212a54e5f236d_101.mp4
wget -O 2.mp4 http://distilleryimage4.s3.amazonaws.com/bcd15ceeab8611e393f00edbe77163d4_101.mp4
wget -O 3.mp4 http://distilleryimage9.s3.amazonaws.com/9ca0f010ab8611e3b2c112112ffff7c9_101.mp4
wget -O 4.mp4 http://distilleryimage9.s3.amazonaws.com/69cb2430ab8611e380301215423c68e1_101.mp4
wget -O 5.mp4 http://distilleryimage6.s3.amazonaws.com/4b79024aab8611e3b14f0e94fcbcd8ca_101.mp4
wget -O 6.mp4 http://distilleryimage9.s3.amazonaws.com/32e4296cab8611e3b4fb121aff19a5a5_101.mp4
wget -O 7.mp4 http://distilleryimage0.s3.amazonaws.com/0e500a3aab8611e3bed41251e7ed0540_101.mp4
@kelan
kelan / generate_personal_podcast.rb
Created January 22, 2012 23:55
A script for generating a personal podcast feed from mp3 files in a public Dropbox folder.
#!/usr/bin/env ruby -wKU
#
# by Kelan Champagne
# http://yeahrightkeller.com
#
# A script to generate a personal podcast feed, hosted on Dropbox
#
# Inspired by http://hints.macworld.com/article.php?story=20100421153627718
#
# Simply put this, and some .mp3 or .m4a files in a sub-dir under your Dropbox
@demonbane
demonbane / makeapp.sh
Created July 5, 2011 20:05
Create a Fluid-style app launcher for single-window Chrome instances on OSX
#!/bin/sh
echo "What should the Application be called (no spaces allowed e.g. GCal)?"
read inputline
name="$inputline"
echo "What is the url (e.g. https://www.google.com/calendar/render)?"
read inputline
url="$inputline"