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
/** | |
* PHPUnit Code Coverage Daylight Style | |
* Makes coverage pages more readable | |
*/ | |
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro'); | |
body { | |
padding-top: 10px; | |
background: #f1f1f1; |
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 bash | |
curl -s -D - "$1" -o /dev/null |
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 bash | |
# Example of supporting long (--long) and short (-s) options in bash via getopts | |
# Shorg options are declared at the beginning of the while block, | |
# while their counterparts (long options) are declared in the case block | |
# If the option requires a value, it should be declared as r: (letter followd by colon) | |
# and validated with needs_arg() when parsing. | |
# Alternatively die "Error message" is used to stop when we get an option which has not been declared |
OlderNewer