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
#!/bin/bash | |
### MonetDB Installer for RHEL5 ### | |
# Script needs to be run as root if any any packages need installing. | |
# For more info, see: | |
# - http://monetdb.cwi.nl/MonetDB/Documentation/Linux-Installation.html#Linux-Installation | |
# MonetDB RPM's for RHEL5: |
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 python | |
# encoding: utf-8 | |
""" A simple URI Encoding/Decoding commandline tool. | |
""" | |
__author__ = 'David Schoonover <[email protected]>' | |
__date__ = '2009-06-05' | |
__version__ = (0, 0, 1) | |
import sys, select, urllib |
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
#!/bin/bash | |
# @author [email protected] | |
if test "$1"; then | |
LONG_URL="$1" | |
else | |
read LONG_URL | |
fi | |
BITLY="http://bit.ly/?s=&keyword=&url=" |
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
""" BitString - A file-like object for reading/writing bits. | |
""" | |
try: | |
from cStringIO import StringIO | |
except: | |
from StringIO import StringIO | |
def binlen(n): |
NewerOlder