This file contains hidden or 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
#!/bin/sh | |
# If you have a lot of Ogg Vorbis files with lengths that are wildly | |
# wrong or have incomplete data at the start, you may be able to fix | |
# them with this script. I invoked this for a whole directory of | |
# files with: | |
# find . -iname '*.ogg' -print0 | xargs -0 -n 1 fix-ogg-length.sh | |
set -e | |
echo Fixing "$1" |
This file contains hidden or 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
/*Version 1.51 15.06.09*/ | |
/* @group Helvetireader */ | |
* {font-family: "Helvetica Neue", Helvetica, "MgOpen Moderna", sans-serif !important;} | |
body {background-color: #fff !important;} | |
/* Anything to to hide? */ |
This file contains hidden or 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/python2.5 | |
import sys | |
import os | |
import stat | |
import re | |
from subprocess import call, check_call, Popen, PIPE | |
from optparse import OptionParser | |
# I've found this script useful for copying my most recently |
This file contains hidden or 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/ruby | |
require 'cgi' | |
unless ARGV.length == 1 | |
STDERR.puts "Usage: tinyurl <URL>" | |
exit(1) | |
end | |
url = ARGV[0] |
NewerOlder