Public Gists by robolson

gist: 212563 Catalog TV show downloads
Gravatar
Sat Oct 17 22:36:07 -0700 2009
1
2
3
#!/usr/bin/env ruby
#
# Cataloger watches the directory where completed torrents are placed.
gist: 137183 Bash script to download all...
Gravatar
Sat Jun 27 18:26:51 -0700 2009
1
2
3
#!/bin/sh
# Downloads all of Jonathan Coulton's free songs
# from http://www.jonathancoulton.com/store/downloads/
gist: 137147 Shell command to fix escape...
Gravatar
Sat Jun 27 15:54:53 -0700 2009
1
2
# Finds all the files with "%20" in their filename and replaces it with a plain space
find . -name "*%20*" -exec sh -c 'mv ${0} "${0//\%20/ }"' {} \;
gist: 75456 Shell script to check multi...
Gravatar
Sat Mar 07 13:39:33 -0800 2009
1
2
3
#!/bin/bash
 
repos=(
Gravatar
Mon Feb 23 23:26:40 -0800 2009
1
2
3
require 'test/unit'
 
class Set
Gravatar
Tue Jul 22 00:05:20 -0700 2008
1
2
3
# Calculate all the primes between 0 and the value specified
def primes(up_to)
  prev = []
Gravatar
Mon Jul 21 20:05:50 -0700 2008
1
2
3
<html>
<head>
<title>Getting the gist of Gist</title>