Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
if [ "$PYENV_VERSION" -ne "" ] | |
then | |
name=`pyenv version-name` | |
python=`pyenv which python` | |
else | |
name=`basename "$VIRTUAL_ENV"` | |
python="$VIRTUALENV/bin/python" | |
fi |
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 | |
export SUBDIRECTORY_OK=1 | |
dashless=$(basename "$0" | sed -e 's/-/ /') | |
OPTIONS_SPEC="$dashless [-p] [branch] | |
$dashless looks through the issue's commit message and code for for referenced | |
issues and opens the configured chili project info for them. Use 'git config | |
chili.url' to configure the root 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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:f="http://thorstenvitt.de/functions" | |
exclude-result-prefixes="xs" | |
xpath-default-namespace="http://xmlcalabash.com/ns/profile" | |
version="2.0"> | |
<xsl:output method="xhtml" include-content-type="yes"/> |
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 | |
# This is a simple script to check every class file that somehow got into a | |
# Eclipse RCP application for its required java version. | |
# | |
# Run it in a RCP or p2 repo directory and it checks every .class file in the | |
# plugins for the required java version using file(1). The results will be | |
# written to two (redundant) reports. | |
# | |
# The script is able to handle standard bundled plugins as well as expanded |
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 | |
help() { | |
cat <<EOF | |
$0 /path/to/target/program ... | |
Creates a simple executable that forwards to the target program in the current | |
directory. | |
EOF |
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
<project xmlns="http://maven.apache.org/POM/4.0.0"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>info.textgrid</groupId> | |
<artifactId>mirrortest</artifactId> | |
<packaging>pom</packaging> | |
<version>1.0-SNAPSHOT</version> | |
<prerequisites> | |
<maven>3.0.0</maven> | |
</prerequisites> |
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/perl | |
# This is a very very simplistic converter that takes a subset of MediaWiki | |
# syntax and converts it to confluence syntax. Currently supported are | |
# headings, simple text formatting, links, and code blocks; lists will work | |
# as-is. I do not guarantee for anything, this will probably need manual | |
# adjustments, but it should help with the tedious task of converting stuff | |
# from our old wiki to the new one. | |
use strict; |
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 | |
if [ -n "$SSH_AUTH_SOCK" -a -S "$SSH_AUTH_SOCK" ] | |
then | |
ln -sf "$SSH_AUTH_SOCK" "$HOME/.ssh/auth-socket" | |
SSH_AUTH_SOCK="$HOME/.ssh/auth-socket" | |
fi | |
exec screen "$@" |