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/sh | |
# | |
# Shell script to open files or folders with Coda.app | |
# Based on a script by Wout Mertens and suggestions from Laurent Bihanic. | |
# The original version is the fault of Benji Fisher, 16 May 2005 (with | |
# modifications by Nico Weber and Bjorn Winckler, Aug 13 2007). Originally | |
# released as the "mvim" shell script of MacVim.app. | |
# First, check "All the Usual Suspects" for the location of the Coda.app |
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/sh | |
# create by using git svn clone -s --prefix=svn/ <URL-TO-REPO> | |
for i in ~/public_html/* | |
do | |
( cd $i ; echo $i ; git svn rebase ; git gc --auto ; git-update-server-info ) | |
done | |
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
This was retrieved from Google cache | |
Original: http://www.dcl.hpi.uni-potsdam.de/home/loewis/versions | |
.000001 | |
.012 | |
.020 | |
.022 | |
.1 | |
.94 | |
.98 |
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
/* Single words */ | |
"Action" = "Aktion"; | |
"All" = "Alles"; | |
"Cancel" = "Abbrechen"; | |
"Close" = "Schließen"; | |
"Connect" = "Verbinden"; | |
"Continue" = "Fortsetzen"; | |
"Delete" = "Löschen"; | |
"Edit" = "Bearbeiten"; | |
"Eject" = "Auswerfen"; |
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
from mimetypes import guess_type | |
from django.core.exceptions import ImproperlyConfigured | |
from django.core.files.storage import Storage | |
from django.utils.encoding import iri_to_uri | |
import re | |
try: | |
import S3 | |
except ImportError: | |
raise ImproperlyConfigured, "Could not load amazon's S3 bindings.\ |
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
For the Birds - http://nycbirdlist.org/ | |
Code monkeys - http://djapp.org/ | |
Freelancer - http://tnycnt.com/ | |
Sword of Truth - http://leafychat.com/ | |
Devcult - http://coda.fm/ | |
wwswd - http://wwswd.com/ | |
East meets West - http://whohasmy.net/ | |
crunkd - http://getcrunkd.com:88/ | |
Ra - http://www.ntrie.com/ | |
arctangent - http://rudestword.com/ |
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
# Bash snippet to open new shells in most recently visited dir. | |
# Useful if you want to open a new terminal tab at the present | |
# tab's location. | |
# | |
# Put this in your .bashrc or whatever. | |
pathed_cd () { | |
if [ "$1" == "" ]; then | |
cd | |
else |
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/sh | |
# | |
# Shell script to open files or folders with Murky.app | |
# Based on a script by Wout Mertens and suggestions from Laurent Bihanic. | |
# The original version is the fault of Benji Fisher, 16 May 2005 (with | |
# modifications by Nico Weber and Bjorn Winckler, Aug 13 2007). Originally | |
# released as the "mvim" shell script of MacVim.app. | |
# First, check "All the Usual Suspects" for the location of the Murky.app |
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 | |
import os | |
import os.path | |
for root, dirs, files in os.walk("."): | |
for filename in files: | |
path = os.path.join(root, filename) | |
if any(filename.endswith(ending) for ending in [".py", ".html", ".txt", ".css"]): | |
tabs = False |
OlderNewer