1 2 3 4
#!/usr/bin/ruby DVD_SIZE=4294967296 CD_SIZE=734003200 ...
Ruby DVD Directory Archiver
by seal-7.blogspot.com,
September 03, 2008 14:26,
No refactoring, tagged with bash, shell, spaghetti, monkey patch
1 2 3
require 'uri' uri=URI.parse("http://www.mydomain.com/search?q=foo&bar=stick&who=you") uri_params=uri.query.inject({}) {|hsh,i| sides=i.split("="); hsh[sides[0]]=sides[1]; hsh}
Ruby Query String to Hash
Probably can't be refactore...
Originally made to move cal...