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/env php | |
| <?php | |
| /** | |
| * Usage: | |
| * pdepend --summary-xml=/tmp/summary.xml /path/to/source | |
| * | |
| * ./inspekt.php /tmp/summary.xml --metric0 | |
| */ | |
| class Inspect | |
| { |
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
| # ~/.bashrc | |
| SSH_BIN=$(which ssh) | |
| function set_terminal_theme { | |
| THEME_NAME="$1" | |
| osascript -e "tell application \"Terminal\" to set current settings of front window to settings set \"${THEME_NAME}\"" 2>/dev/null | |
| } | |
| function ssh { |