I hereby claim:
- I am alecthegeek on github.
- I am alecthegeek (https://keybase.io/alecthegeek) on keybase.
- I have a public key whose fingerprint is BF8A E8CC 9DA3 C1E3 C5BD 0CDD 3FE7 B98F 9BBB FC7C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# https://developer.mozilla.org/en/docs/Rhino/Debugger | |
java -cp $(brew --prefix)/Cellar/rhino/1.7R4/libexec/js.jar org.mozilla.javascript.tools.debugger.Main "$@" |
#! /usr/bin/env bash | |
if [[ -x /Applications/PaperCut\ MF/server/bin/mac/server-command && | |
-x /Applications/PaperCut\ NG/server/bin/mac/server-command ]] ; then | |
echo copies of both NG and MF installed! | |
exit 1 | |
elif [[ -x /Applications/PaperCut\ MF/server/bin/mac/server-command ]]; then | |
app_root='/Applications/PaperCut MF' | |
elif [[ -x /Applications/PaperCut\ NG/server/bin/mac/server-command ]]; then | |
app_root='/Applications/PaperCut NG' |
#!/usr/bin/env bash | |
# Wrapper script for git | |
if [[ -x /usr/local/bin/git ]] ; then | |
GIT=/usr/local/bin/git #Set for your environment" | |
elif [[ -x /usr/bin/git ]] ; then | |
GIT=/usr/bin/git #Set for your environment" | |
else | |
echo Git not installed correctly? |
# Generate Perl POD (Plain Old Documentation) | |
# | |
.SUFFIXES: | |
.SUFFIXES: .html |
#!/bin/sh | |
# Copyright (C) 2012-15 Alec Clews | |
# This program is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU General Public License | |
# as published by the Free Software Foundation; either version 2 | |
# of the License, or (at your option) any later version. | |
# This program is distributed in the hope that it will be useful, |
#!/bin/ksh | |
# Compare 2 directories for differences (e.g. current release and new release) | |
CURRENT=$1 ; shift | |
NEW=$1; shift | |
CURRENTDIFFFILE=/tmp/$(echo $CURRENT | sed -e 's/[/.][/.]*/_/g') | |
NEWDIFFFILE=/tmp/$(echo $NEW | sed -e 's/[/.][/.]*/_/g') |
#!/usr/bin/env bash | |
# A wrapper for SVN. Designed for | |
# GIt users who need access to command line SVN. Tries to adopt as much information from Git config | |
# Command Line SVN users who are working with people using TortoiseSVN on Windows | |
# People who have use build scripts that depend on the outfrom from svn info when they in a Git checkout |
# Upgraded git using Homebrew and now your __git_ps1() fails. Try something like this | |
# NB Still very fragile as had embedded version no | |
# enable git programmable completion features | |
if [ -f /usr/local/etc/bash_completion.d/git-completion.bash ]; then | |
. /usr/local/etc/bash_completion.d/git-completion.bash | |
fi | |
# enable git prompt |