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
// ==UserScript== | |
// @name JIRA Status Color | |
// @description Script allows you to color Issues by status in JIRA v6.0 | |
// @namespace https://github.com/AntonPalyok | |
// @author Anton Palyok | |
// JMD | |
// @version 3.2.1 | |
// @include http://jira.oodrive.net/issues/* | |
// @include http://jira.oodrive.net/browse/* | |
// @include http://jira.oodrive.net/plugins/servlet/gadgets/ifr* |
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
#!/bin/bash | |
#strace decoder/reader. Written by: Greg Borbonus | |
echo -e "\t\t\tStrace Processor" | |
echo -e "\t This utility will help you to see exactly what a process is doing" | |
echo -e "" | |
echo -e "" | |
echo -e "File processed by this reader should have been run with the following format:" |
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
#!/bin/bash | |
# JMD's bash aliases v3.3.5 | |
echo "-- Setting aliases..." | |
_su(){ | |
if [[ $# == 0 ]]; then | |
PS1=$PS_ROOT sudo -sE | |
else |